Skip to main content

Abstraction layer for filesystem events

Project description

Eventloop uses any of: pyuv or PySide2 or PyQt5 installed in the system to provide callback interface for filesystem events. And also timers.

Package intended to be a building block for utility scripts for recompiling or pushing files or restarting tests.

pyuv is used preferably as it’s most efficient. uv is a library that powers nodejs event loop.

Installing

eventloop can be installed via pip as follows:

pip install eventloop

Author

Stanislav Doronin <mugisbrows@gmail.com>

Usage

In simple case you can use on_file_changed decorator. It creates event loop, system watch and schedule, then connects them, then starts the loop and calls decorated function on filesystem events.

from eventloop import on_file_changed

if __name__ == "__main__":
    @on_file_changed("/path/to/dir")
    def your_handler(file_path):
        print(file_path)

Decorator accepts include and exclude args (list of globs or names to include or exclude files from watch) and timeout arg (read about timeout below) and loop arg.

If you need to watch more than one path you need to create and start EventLoop explicitly and pass it to decorators.

from eventloop import EventLoop, on_file_changed

if __name__ == "__main__":

    loop = EventLoop()

    @on_file_changed("/path/to/first/dir", loop=loop)
    def first_handler(file_path):
        print(file_path)

    @on_file_changed("/path/to/second/dir", loop=loop)
    def second_handler(file_path):
        print(file_path)

    loop.start()

For finer control over things you can use classes, first example can be rewriten as

from eventloop import EventLoop, FileSystemWatch, Schedule, base

class Executor(base.Executor):
    def execute(self, file_path):
        print(file_path)

if __name__ == "__main__":

    loop = EventLoop()
    executor = Executor()
    schedule = Schedule(executor)

    def on_change(file_path, event):
        schedule.append(file_path, timeout=1)

    watch = FileSystemWatch(loop)
    watch.start("/path/to/dir", on_change)
    loop.start()

Schedule caches (deduplicates) tasks appended within timeout interval, so for example three immediate consecutive changed events on same file end up in just one Executor.execute(task) call. on_file_changed decorator also uses Schedule to cache events.

Cli

You can use onchange script in command line to execute commands

python -m eventloop.onchange D:\dev\app -- echo FILE
onchange D:\dev\app -- echo FILE
onchange D:\dev\app -i *.cpp *.ui --cwd D:\dev\app\build -- ninja "&&" ctest
onchange . -i "*.pyx" --beep -- python setup.py build_ext --inplace
onchange http-server.py --server -- python -u http-server.py

License

Eventloop is distributed under the terms of MIT license, check LICENSE file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eventloop-0.0.26.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eventloop-0.0.26-py3-none-any.whl (15.0 kB view details)

Uploaded Python 3

File details

Details for the file eventloop-0.0.26.tar.gz.

File metadata

  • Download URL: eventloop-0.0.26.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for eventloop-0.0.26.tar.gz
Algorithm Hash digest
SHA256 25f9d4fc8fe30df912597c9768cdb61fca11a85f1e0b78f0118132f412352a83
MD5 55217eb35857dae6afdb7c7edbe9eac5
BLAKE2b-256 ba89d1a22f5d4cf8bf7dbb7cbf91f1be563246679a7a6033d66b41baabf97b6b

See more details on using hashes here.

File details

Details for the file eventloop-0.0.26-py3-none-any.whl.

File metadata

  • Download URL: eventloop-0.0.26-py3-none-any.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for eventloop-0.0.26-py3-none-any.whl
Algorithm Hash digest
SHA256 3b64b1d88ddb5579ded9f6188e17747ca0b57d540a4336e3b925d27f7b0af3d9
MD5 8a95ae3ee76960073da55604c94da9f4
BLAKE2b-256 a812c037f96fb45ab2b2d563f717780f9f88ba5092cc51ca4b43e7c571ae978a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page