Yury Selivanov

Results 403 comments of Yury Selivanov

We have plans to start working on a proper Python query builder soon.

Potentially yes, but this will be a post 1.0 feature.

> Is there an asyncio-compatible watching library we can use instead of spawning threads? No popular and trusted one afaik. Maybe we spawn a thread and just check mtime in...

> Threads mean GIL. If it can't be in the event loop, then a monitoring subprocess sending SIGHUP to the main process seems better to me. That's too complicated. @fantix...

> There is https://github.com/samuelcolvin/watchfiles which is mostly an interface to https://github.com/notify-rs/notify but its not 1.0 yet. It also uses threads for its async API.

@fantix can you pick this one up given that we have the necessary new API in uvloop?

I'm not a big fan of using such hooks as they can get pretty annoying when you just develop locally and make WIP commits all the time.

> Sync is probably the only reliable way Yeah.