Advanced Hot Reloading & Profiling
Examples above are run in debug mode with added breakpoint.
Details
Reloadium adds hot reloading, profiling and ChatGPT chat to your IDE
Installing
If you are a PyCharm user please check out Reloadium plugin
Plugins for other IDEs are coming soon.
Reloadium can be also used as a standalone library by installing it manually with pip:
pip install reloadium
Using
Running python files:
reloadium run example.py
Running modules:
reloadium run -m my_module
To apply your changes simply save a file
AI
Reloadium integrates with ChatGpt seamlessly providing additional context to your conversations resulting in much better replies.
General Python Features
When altered, Reloadium will execute the current function again, providing developers with immediate feedback on the functionality of their code.
Reloadium manages errors that occur while reloading functions, allowing you to correct any mistakes seamlessly.
Reloadium has the ability to refresh files throughout the entire project by tracking dependencies.
Django
Upon saving, Reloadium performs hot reloading of views and automatically refreshes the page.
To avoid generating undesired objects after reloading the current function, Reloadium reverts any database modifications.
Flask
Reloadium hot reloads Flask apps and automatically refreshes the page upon saving.
This enables real-time content updates, significantly streamlining web development.
SqlAlchemy
Reloadium will rollback database changes to prevent creating unwanted objects after reloading current function.
Pandas
Reloadium facilitates hot reloading of Pandas objects, making the manipulation of intricate dataframes for data science remarkably simple.