Python dict with stacked context data
Project description
Python dict with stacked context data
Free software: MIT license
Installing
You can install py-context using pip:
$ pip install py-context
Example
>>> context = Context({'user': 'Fred', 'city': 'Bedrock'}) >>> context['user'] 'Fred' >>> context['city'] 'Bedrock' >>> context.push({'user': 'Barney'}) >>> context['user'] 'Barney' >>> context['city'] 'Bedrock' >>> context.pop() {'user': 'Barney'} >>> context['user'] 'Fred'
Context also supports signals. Signal handler can be attached globally:
>>> @context_key_changed.connect ... def handler(sender, context, key, new, old): ... print(key, new, old) >>> context = Context() >>> context['hello'] = 'world' hello world <Missing>
Or to individual context instances:
>>> def handler(sender, context, key, new, old): ... print(key, new, old) >>> context = Context() >>> context_key_changed.connect(handler, sender=context)
Supported signals:
>>> @context_initialized.connect ... def handler(sender, context): ... pass >>> @pre_context_changed.connect ... def handler(sender, context): ... pass >>> @post_context_changed.connect ... def handler(sender, context): ... pass >>> @context_key_changed.connect ... def handler(sender, context, key, new, old): ... pass
Additionally, ClassSignallingContext can be used to subscribe signals by sender classes, not instances:
>>> class TestContext(ClassSignallingContext): ... pass >>> def context_key_changed_handler(sender, context, key, new, old): ... print(key, new, old) >>> _ = context_key_changed.connect(context_key_changed_handler, sender=TestContext) >>> context = Context() >>> class_context = TestContext() >>> context['foo'] = 'bar' >>> class_context['foo'] = 'bar' foo bar <Missing>
Testing
To run the tests you need to install testing requirements first:
$ make install
Then to run tests, you can use nosetests or simply use Makefile command:
$ nosetests -sv # or $ make test
History
0.3.1 (2018-04-11)
Added support for *args, **kwargs in Context.push().
Added __dir__ support.
0.3.0 (2018-02-16)
Added signals support - context_initialized, pre_context_changed, post_context_changed and context_key_changed. See README for examples.
0.2.1 (2017-07-28)
Excluding tests from being installed
0.2.0 (2017-05-11)
Add attribute support
Add make watch target
0.1.0 (2017-03-22)
First release on PyPI.
Credits
Originally Context was taken from Genshi project. See LICENSE for copyright notices.
Development Lead
Miroslav Shubernetskiy - https://github.com/miki725
Contributors
Serkan Hosca - https://github.com/shosca
Copyright (C) 2006-2010 Edgewall Software
Copyright (C) 2017 Dealertrack Technologies, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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
Built Distribution
File details
Details for the file py-context-0.3.1.tar.gz
.
File metadata
- Download URL: py-context-0.3.1.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 124070aead63fb91b2e95920be1fe0bdcd49b6fb1cd89971e8ecc3b5530cc20d |
|
MD5 | 139e98ac14f51eaa75230c09c320d975 |
|
BLAKE2b-256 | 55f291bca75b7a89a28cb8c0c7db0404be0ab28f660ac848c91f0753b516b37d |
File details
Details for the file py_context-0.3.1-py2.py3-none-any.whl
.
File metadata
- Download URL: py_context-0.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4ab31a6e8aff4ff5318da9891e68d4dc691b7952327fd5d4b8a7668fb709cad |
|
MD5 | 17acb21fb1e0c4f9e5233132904ec3c4 |
|
BLAKE2b-256 | 41ed424393adc1e43c8810c1fce8108b59914255cb27d26ec15d4199b225b2aa |