https://github.com/lekma/mood.event
Python libev interface
https://github.com/lekma/mood.event
event libev mood
Last synced: 26 days ago
JSON representation
Python libev interface
- Host: GitHub
- URL: https://github.com/lekma/mood.event
- Owner: lekma
- License: unlicense
- Created: 2017-11-22T06:39:53.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2026-01-13T13:39:15.000Z (30 days ago)
- Last Synced: 2026-01-13T15:29:08.063Z (30 days ago)
- Topics: event, libev, mood
- Language: Python
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
mood.event
==========
Python libev interface
libev is an event loop: you register interest in certain events (such as a file
descriptor being readable or a timeout occurring), and it will manage these
event sources and provide your program with events.
To do this, it must take more or less complete control over your process (or
thread) by executing the event loop handler, and will then communicate events
via a callback mechanism.
You register interest in certain events by registering so-called event watchers,
which you initialise with the details of the event, and then hand over to libev
by starting the watcher.
See `mood.event documentation `_
for more info.
-----