zope.interface compliant ordered dictionary.
Project description
zodict
Ordered dictionary which implements the corresponding zope.interface.common.mapping interface.:
>>> from zope.interface.common.mapping import IFullMapping >>> from zodict import zodict >>> zod = zodict() >>> IFullMapping.providedBy(zod) True
Node
This is a zodict which provides a location. Location the zope way means each item in the node-tree knows its parent and its own name.:
>>> from zope.location.interface import ILocation >>> from zodict.node import Node >>> root = Node('root') >>> ILocation.providedBy(Node) True >>> root['child'] = Node() >>> root['child'].path ['root', 'child'] >>> child = root['child'] >>> child.__name__ 'child' >>> child.__parent__ <Node object 'root' at ...>
The filtereditems function.:
>>> from zope.interface import Interface >>> from zope.interface import alsoProvides >>> class IMarker(Interface): pass >>> alsoProvides(root['child']['subchild'], IMarker) >>> IMarker.providedBy(root['child']['subchild']) True >>> for item in root['child'].filtereditems(IMarker): ... print item.path ['root', 'child', 'subchild']
UUID related operations on Node.:
>>> uuid = root['child']['subchild'].uuid >>> uuid UUID('...') >>> root.node(uuid).path ['root', 'child', 'subchild'] >>> root.uuid = uuid Traceback (most recent call last): ... ValueError: Given uuid was already used for another Node >>> import uuid >>> newuuid = uuid.uuid4() >>> root.uuid = newuuid >>> root['child'].node(newuuid).path ['root'] >>> root.uuid = object() Traceback (most recent call last): ... AssertionError: arg <object object at ...> does not match <class 'uuid.UUID'>
Changes
Version 1.4.0
- -Don’t allow classes as values of a Node. Attribute __name__ conflicts.
jensens, 2009-05-06
- -repr(nodeobj) now returns the real classname and not fixed <Node object
this helps a lot while testing and using classes inheriting from Node! jensens, 2009-05-06
- -Make tests run with python setup.py test.
Removed superflous dependency on zope.testing. jensens, 2009-05-06
Version 1.3.2
- -Add root property to Node.
thet, 2009-04-24
Version 1.3.1
- -Add __delitem__ function to Node.
rnix, 2009-04-16
Version 1.3
- -Add uuid Attribute and node function to Node.
rnix, 2009-03-23
Version 1.2
- -Add filtereditems function to Node.
rnix, 2009-03-22
Version 1.1
- -Add INode interface and implementation.
rnix, 2009-03-18
Credits
-Written by Robert Niederreiter <rnix@squarewave.at> (2009-03-17)
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
File details
Details for the file zodict-1.4.0.tar.gz
.
File metadata
- Download URL: zodict-1.4.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6229aa07dc4a477d8d1772013b9ca67575e6168321911475631a6e4dda7fa27e |
|
MD5 | 6d3f6d443c83187f828655711d656848 |
|
BLAKE2b-256 | 97597c30a3e279bbe4b1a979679f46046a28291bdc279e64b5c9c81d1a25d872 |