py-mon icon indicating copy to clipboard operation
py-mon copied to clipboard

🔁 Automatically restart application when file changes are detected; made for development

Results 9 py-mon issues
Sort by recently updated
recently updated
newest added

``` ❯ pymon main.py Traceback (most recent call last): File "/home/nacreousdawn596/.local/bin/pymon", line 5, in from pymon.main import main File "/home/nacreousdawn596/.local/lib/python3.10/site-packages/pymon/main.py", line 7, in from watchdog.events import PatternMatchingEventHandler ModuleNotFoundError: No module...

Changes in this pull request: - Add requirements to setup.py - Remove not working terminating system (Ctrl+C combination) - Rewrite CLI on click framework - Separating main logic with OOP...

When using the python socketIO get started example [ Get it here: https://python-socketio.readthedocs.io/en/latest/intro.html#server-examples ]: The first boot works and the server is reachable on port:5000 On save i get the...

Hi! I am receiving this error ![image](https://user-images.githubusercontent.com/69630565/152482711-f841b3d0-1061-49cd-9522-c5e5308e7e1f.png) ![image](https://user-images.githubusercontent.com/69630565/152482725-1ca0d39e-1fe7-4bfd-bb56-1aa95c02da81.png)

hi ![image](https://user-images.githubusercontent.com/51446566/130900805-0b8baedd-ff2c-4dd7-83d3-f2dac74d06a1.png) i got an error " no module names watch dog " in python 3.8.10

Add --ignore-patterns parameter. Some editor like emacs create temporary files while editing called `.#{filename}.py` which triggers pymon to reload a few times before even saving the file. This PR adds...

Wait for a process to be terminated after stopping to wait async processes to be finished

Hi, I found a strange behavior using py-mon when I want to use match statements. Running the same script with `python match.py` works as expected. I checked the python docs...