Skip to main content

Hot code reloading tool for Python

Project description

Reloadr

Python hot code reloading tool.

pip install reloadr

Usage

You can simply decorate your functions / classes with @reloadr and you are ready to go.

from reloadr import reloadr

@reloadr
def do_something(a, b):
    return a + b

@reloadr
class SomeThing:
    def do_stuff(self):
        pass

Then, to reload the code, you can use of the following:

# Manual reload
SomeThing._reload()

# Automatic reload using system (requires library 'watchdog')
SomeThing._start_watch_reload()

# Automatic reload in a thread every 1 second
SomeThing._start_timer_reload(1)

Examples

Launch an example (they each contain an infinite loop), then change the source code of the decorated class or function.

git clone https://github.com/hoh/reloadr.git

python examples/01_manual_reload.py

How it works

Instead of importing your source file again, which can lead to undesired side effects, Reloadr fetches the new code of your function within the Python source file, and executes that code in the environment of your already loaded module.

This allows it to reload code that is followed by blocking instructions such as the infinite loops you can find in the examples.

To achieve this, Reloadr relies on RedBaron , an great tool for manipulating Python source code.

Future plans

This project is still in its early stages. All ideas for improvement are welcome.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Reloadr-0.3.0.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

Reloadr-0.3.0-py2.py3-none-any.whl (7.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file Reloadr-0.3.0.tar.gz.

File metadata

  • Download URL: Reloadr-0.3.0.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Reloadr-0.3.0.tar.gz
Algorithm Hash digest
SHA256 c0f918e9cd8471e229efe322979b835d6530ff29b4db8d593ec4e0b4515b0bc8
MD5 f52832b58e4ad2d525b051c5db7ae3b4
BLAKE2b-256 5cd7f68f828efc49d90239ffe6622ad35470a630ae623b8fedb03e813ab3d13d

See more details on using hashes here.

Provenance

File details

Details for the file Reloadr-0.3.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for Reloadr-0.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5b55f88bd165194d14793117b661286152ac81403600ba2401d048dde9bb70a7
MD5 340dc441921dd2803a8e3c19a5914dd9
BLAKE2b-256 d35e92991349b127893bfa2465dfe45a4fa4cddc1205afa57fa92fc6ffaca79a

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page