Track changes to mutable data types.
Project description
Spectate
A library for Python 3.6 and above that can track changes to mutable data types.
With spectate
, complicated protocols for managing updates don't need to be the outward responsibility of a user and can instead be done automagically in the background. For instance, syncing the state between a server and client can controlled by spectate
, so users don't have to.
Documentation
https://python-spectate.readthedocs.io/en/latest/
Install
- stable
pip install spectate
- pre-release
pip install spectate --pre
- master
pip install git+https://github.com/rmorshea/spectate.git#egg=spectate
- developer
git clone https://github.com/rmorshea/spectate && cd spectate/ && pip install -e . -r requirements.txt
At A Glance
If you're using Python 3.6 and above, create a model object
from spectate import mvc
l = mvc.List()
Register a view function to it that observes changes
@mvc.view(l)
def printer(l, events):
for e in events:
print(e)
Then modify your object and watch the view function react
l.append(0)
l[0] = 1
l.extend([2, 3])
{'index': 0, 'old': Undefined, 'new': 0}
{'index': 0, 'old': 0, 'new': 1}
{'index': 1, 'old': Undefined, 'new': 2}
{'index': 2, 'old': Undefined, 'new': 3}
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
spectate-1.0.1.tar.gz
(14.6 kB
view hashes)
Built Distribution
Close
Hashes for spectate-1.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4585194c238979f953fbf2ecf9f94c84d9d0a929432c7104e39984f52c9e718 |
|
MD5 | c759d7f9616f3611ddf3ee7dca229772 |
|
BLAKE2b-256 | 81ec8bdccea3ff7d557601183581340c3768b7bb7b1e32c8991f1130f0c1e2c4 |