reloadr icon indicating copy to clipboard operation
reloadr copied to clipboard

Hot code reloading tool for Python

Results 10 reloadr issues
Sort by recently updated
recently updated
newest added

建议把minsdk改到19,不然集成过程中会报错 虽然主项目可以把minSDK改到19以上 但是为了依赖这个库而降低兼容性 感觉不太好

I want to auto reload all the involved modules when the source is changed. How can I do this?

I run 01_manual_reload.py in the examples directory,error is as follows: TypeError: class must be set to a class, not 'ClassReloadr' object python-BaseException. I am using python3.9 on the win10 platform,What...

bug

Hello, I encounter the following error "TypeError: __init__() takes 2 positional arguments but 4 were given" whenever I import the classes in a package I'm coding. I get the previous...

enhancement

It seems reloadr doesnt work with gevent patching? Is this a known limitation? Is there possibly a workaround? ``` from reloadr import reloadr from gevent import monkey monkey.patch_all() @reloadr class...

I'd like a way of triggering the reloader from somewhere else, and when the code isn't necessarily in a file. In Shoebot we execute code once per frame that may...

[wrapt](https://wrapt.readthedocs.io/en/latest/wrappers.html) has a convenient object proxy class that can be extended to correctly and transparently wrap any objects

Environment : Linux os Hi am trying to reload the function which is present within another function like this: ```python3 async def run(): print("RUN Component") @reloadr async def function2(): print("Function...

enhancement

Seeing as this is a super early stage project, I assume you just haven't got to this yet and this exception will demonstrate the issue. I was trying to use...

enhancement

- Prevent file reloads on any directory change - Prevent multiple watchers to reduce redundant reloads - This is done by removing the decorator before code execution - Significant performance...