Generates a persistent sequence
Project description
This project is a fork of gocept.sequence (http://pypi.python.org/pypi/gocept.sequence/) originally created by Daniel Havlik and Sebastian Wehrmann.
cykooz.sequence
Generates a persistent sequence.
Sequences
>>> import persistent >>> import zope.annotation.interfaces >>> from zope.interface import implements
We need a testobject, where the SequenceGenerator stores his data:
>>> class Dummy(persistent.Persistent): ... implements(zope.annotation.interfaces.IAttributeAnnotatable)
>>> test_object = Dummy()
You get a SequenceGenerator by adapting to ISequenceGenerator:
>>> from cykooz.sequence.interfaces import ISequenceGenerator >>> seq_gen = ISequenceGenerator(test_object)
You get a sequence like this:
>>> seq_gen.getNextValue() 1 >>> seq_gen.getNextValue() 2 >>> seq_gen.getNextValue() 3
You can also set the generator to a value:
>>> seq_gen.setNextValue(1) >>> seq_gen.getNextValue() 1
>>> seq_gen.setNextValue(5) >>> seq_gen.getNextValue() 5 >>> seq_gen.getNextValue() 6 >>> seq_gen.getNextValue() 7 >>> seq_gen.getNextValue() 8
But setNextValue only accepts integer arguments:
>>> seq_gen.setNextValue('1') Traceback (most recent call last): ... ValueError: setNextValue expected Integer, <type 'str'> found.
>>> seq_gen.setNextValue(3.14) Traceback (most recent call last): ... ValueError: setNextValue expected Integer, <type 'float'> found.
Changes
1.0.2 (2011-05-17)
Fix tests.
1.0.1 (2011-05-16)
Fix interface name for getting annotations.
1.0.0 (2011-04-14)
Removed old migration code.
Removed the dependency from Persistence.
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 cykooz.sequence-1.0.2.tar.gz
.
File metadata
- Download URL: cykooz.sequence-1.0.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9464bfbe402fddcc8f905da039f1edd63518c61350bc2eb7499667911c649446 |
|
MD5 | 7780df5826965852fb8d90fc1c395b92 |
|
BLAKE2b-256 | 03014d84b2e5eea508480327796a9cfb130ac54ab584bf1421ac37ae2592d859 |