Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/moisutsu/auto-reloader

Automatic reloading library for Jupyter
https://github.com/moisutsu/auto-reloader

jupyter python

Last synced: 27 days ago
JSON representation

Automatic reloading library for Jupyter

Awesome Lists containing this project

README

        

Welcome to auto-reloader 👋



Version

License: MIT


Twitter: moisutsu

> Automatic reloading library for Jupyter

## Install

```sh
pip install auto-reloader
```

## Usage

```python
import module as _module
from auto_reloader import AutoReloader

module = AutoReloader(_module)

instance = module.Class()
```

The module is reloaded when an instance is created with `instance = module.Class()`.

Besides this, the module is reloaded every time you access the `module` attribute.

## Run tests

```sh
poetry run pytest tests
```

## Author

👤 **moisutsu**

* Twitter: [@moisutsu](https://twitter.com/moisutsu)
* Github: [@moisutsu](https://github.com/moisutsu)

## Show your support

Give a ⭐️ if this project helped you!

## 📝 License

Copyright © 2020 [moisutsu](https://github.com/moisutsu).

This project is [MIT](https://github.com/moisutsu/auto-reloader/blob/master/LICENSE) licensed.

***
_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_