Metadata-Version: 2.1
Name: hot-import
Version: 2.0.0
Summary: hot-reload for python packages 
Home-page: https://github.com/ThePhoenix78/hot-import
Download-URL: https://github.com/ThePhoenix78/hot-import/tarball/master
Author: ThePhoenix78
Author-email: thephoenix788@gmail.com
License: MIT
Keywords: hot-reload,live reload,live update,hot reload
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# **HOW TO USE?**

## STEP 1

Import `hot_import` into your python file with `import hot_import` or `from hot_import import HotImport`

## STEP 2

Import the desired module as following `import module_name` or `from module_name import function`

## STEP 3


Create an object HotImport that you will use to manage your modules


```py
# main.py
from hot_import import HotImport

import module
from module2 import function


mods = HotImport([module, function], auto_update=True)
module = mods.get_module(module)
```


### STEP 4

Check if it's working, to proceed, you have to edit `module.py` while your code is running

```py
# module.py
def hello():
    return "Hello world!"
```
```py
# module2.py
def function():
    return "This is a function!"
```
```py
# main.py
from hot_import import HotImport
import time

import module
from module2 import function


mods = EasyImport([module, function], auto_update=True)
module = mods.get_module(module)

while True:
    print(module.hello())
    print(function2())
    time.sleep(1)
```


### STEP 5 (optional)


You can add an event on_update to help you debugging

```py
# main.py
from hot_import import EasyImport
import time

import module


mods = EasyImport([module], auto_update=True)

module = mods.get_module(module)


@mods.on_update()
def on_update(module):
    print(f"The module {module.__name__} has been updated!")


while True:
    print(module.hello())
    time.sleep(1)
```


## DISCLAIMER

This library is new and may contain some errors

Otherwise, have fun with it as long as you declare my work
