Live data from Hacker News

Watchfiles: Simple, modern and fast file watching for Python, written in Rust

github.com

1–5 of 5 posts

Re: Watchfiles: Simple, modern and fast file watching for Python, written in Rust

#4
There are some big caveats to this approach. Note “Known Problems” for the library. Particularly, you need to use a polling backend for network / VM filesystems. I didn’t see any notes for the Python library and the fact that notify is still telling you this makes me suspect it will just fail to work in those cases.

https://docs.rs/notify/latest/notify

Re: Watchfiles: Simple, modern and fast file watching for Python, written in Rust

#5
post #3

There is also watchexec[1]. I like the fact that is it shipped as a sinle binary, so it's pretty easy to distribute [1] https://github.com/watchexec/watchexec

Thanks for posting watchexec. Exactly what I needed for my gunicorn +gevent app. gevent does not support the --reload gunicorn flag.