Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/moisutsu/auto-reloader
- Owner: moisutsu
- License: mit
- Created: 2020-11-09T03:18:51.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-09T04:52:41.000Z (almost 4 years ago)
- Last Synced: 2024-09-23T09:16:39.822Z (about 2 months ago)
- Topics: jupyter, python
- Language: Python
- Homepage: https://pypi.org/project/auto-reloader/
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Welcome to auto-reloader 👋
> Automatic reloading library for Jupyter
## Install
```sh
pip install auto-reloader
```## Usage
```python
import module as _module
from auto_reloader import AutoReloadermodule = 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)_