Add events to object methods and attributes
Project description
Eventize permits to listen to “before” and “after” methods events and “on_get”, “on_change”, “on_set”, “on_del” attributes events.
- Features:
Can be used as a simple subject/observer pattern
Conditional events
Use descriptors to lazily and unobstrusively listen to “on_get”, “on_change”,”on_set”, “on_del” events on attributes and “before” and “after” events on methods.
Precise callbacks inheritance (see Subject)
Statically and dynamically customizable (via inheritance, pattern visitor over a “modifier” protocol, decorators…)
Fine grained event dispatcher
- It can listen to events at 3 levels (by order of execution):
Descriptor Class: for all classes which use the given Attribute or Method descriptor class
Descriptor Instance: for all objects of a given class
Object instance: for the given object attribute value or method
Table of Contents
Installation
Install it from pypi:
pip install eventize
or from sources:
git clone git@github.com:apieum/eventize.git cd eventize python setup.py install
Usage
Development
Contributions are greatly appreciated.
Please use github (issue tracker, pull requests…) or contact me at apieum [at] gmail [dot] com
Testing
Tests are my specs so code (except refactorings) without tests won’t probably be accepted. If you want to contribute please add tests.
Test recommended requirements:
pip install -r dev-requirements.txt
Sometimes –spec-color doesn’t function. You should uninstall nosecolor and nosespec then reinstall nosecolor and nosespec separatly (nosecolor first).
You can fix it like this:
pip uninstall nosespec nosecolor pip install nosecolor && pip install nosespec
In order to have fast feedback with TDD loops, I develop with two virtualenvs (2.7 and 3.x python versions) launched in a splited shell (tmux) which runs tests each time a file changes. Use the code below with option –with-watch to launch tests this way.
Launching tests:
git clone git@github.com:apieum/eventize.git cd eventize nosetests --with-spec --spec-color ./eventize # or with watch # nosetests --with-spec --spec-color --with-watch ./eventize
Documentation
Documentation is generated by sphinx from restructured text localized in doc/source. It is build by make (see doc/Makefile).
Except to explain implementation choices (why), please avoid comments in code. It aims at keeping focus on coding and avoiding outdated comments. Keep long names (vars, functions, classes…) and explicit tests names (complete sentences) to have understandable code.
Building doc:
git clone git@github.com:apieum/eventize.git cd eventize/eventize/doc make all # or make *target* (see in Makefile for *target* or type make)
Continuous Integration
CI is made by travis for different python versions (trying to maintain compatibility with v2 python).
- It checks:
test suites (nosetest)
rst-lint this README
doc building
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eventize-0.4.4.tar.gz
.
File metadata
- Download URL: eventize-0.4.4.tar.gz
- Upload date:
- Size: 29.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfd58a877f21f24f1eac6bad363bdb88495133cfef82aa5965cdcd06201879c7 |
|
MD5 | 6d17146dc85da6a0428648d5294a2571 |
|
BLAKE2b-256 | 5a4facba42d16684407fac7f8e58a152322197bfc712feb613ff8c3952da8604 |
File details
Details for the file eventize-0.4.4-py3-none-any.whl
.
File metadata
- Download URL: eventize-0.4.4-py3-none-any.whl
- Upload date:
- Size: 38.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70fee87b8c6f136dd39a72482cd81642cd07f449885de47408b4fe26a815812e |
|
MD5 | 925207f58c625627bbed7a1033a3d48e |
|
BLAKE2b-256 | 3a98a4209aba1e7a0e9b70e7663c44ae8d0df32db8eb22a8d00de5ad10823724 |