-
zope-zc.dict-1.3b1-2.lbn13.noarch
BTree-based persistent dict-like objects (regular dict and ordered) that can be used as base
classes. This is a bit of a heavyweight solution, as every zc.dict.Dict (and
zc.dict.OrderedDict) is at least 3 persistent objects. Keep this in mind if you intend to
create lots and lots of these. To build, run ``python bootstrap/bootstrap.py`` and then
``bin/buildout`` from this directory. A clean, non-system Python is strongly recommended.
An efficient, persistent and subclassable dict
PersistentDict is very inefficient if it contains more than a couple of values, and BTrees
are not recommended to inherit from.
This class is a simple wrapper over a BTree. It retains the efficiency of BTrees and is safe
to use as a base class. Also, it implements the full Python dict interface.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.dict-1.3b1-2.lbn19.noarch
BTree-based persistent dict-like objects (regular dict and ordered) that can be used as base
classes. This is a bit of a heavyweight solution, as every zc.dict.Dict (and
zc.dict.OrderedDict) is at least 3 persistent objects. Keep this in mind if you intend to
create lots and lots of these. To build, run ``python bootstrap/bootstrap.py`` and then
``bin/buildout`` from this directory. A clean, non-system Python is strongly recommended.
An efficient, persistent and subclassable dict
PersistentDict is very inefficient if it contains more than a couple of values, and BTrees
are not recommended to inherit from.
This class is a simple wrapper over a BTree. It retains the efficiency of BTrees and is safe
to use as a base class. Also, it implements the full Python dict interface.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.dict-1.3b1-2.lbn25.noarch
BTree-based persistent dict-like objects (regular dict and ordered) that can be used as base
classes. This is a bit of a heavyweight solution, as every zc.dict.Dict (and
zc.dict.OrderedDict) is at least 3 persistent objects. Keep this in mind if you intend to
create lots and lots of these. To build, run ``python bootstrap/bootstrap.py`` and then
``bin/buildout`` from this directory. A clean, non-system Python is strongly recommended.
An efficient, persistent and subclassable dict
PersistentDict is very inefficient if it contains more than a couple of values, and BTrees
are not recommended to inherit from.
This class is a simple wrapper over a BTree. It retains the efficiency of BTrees and is safe
to use as a base class. Also, it implements the full Python dict interface.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.lockfile-1.0.2-1.lbn13.noarch
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives. Of course, these locks could be
used to mediate access to other files. For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files. The database files and lock file files
are separate files.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.lockfile-1.2.1-1.lbn19.noarch
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives. Of course, these locks could be
used to mediate access to other files. For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files. The database files and lock file files
are separate files.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.lockfile-1.2.1-1.lbn25.py37.noarch
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives. Of course, these locks could be
used to mediate access to other files. For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files. The database files and lock file files
are separate files.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.mappingobject-1.0.0-1.lbn13.noarch
zc.mappingobject provides a wrapper for a mapping objects that provides both attribute and item access.
>>> import zc.mappingobject
>>> mapping = dict(a=1)
>>> ob = zc.mappingobject.mappingobject(mapping)
>>> ob.a
1
>>> ob.a = 2
>>> ob.a
2
>>> mapping
{'a': 2}
>>> list(ob)
['a']
>>> len(ob)
1
>>> ob['a'] = 3
>>> ob.a
3
>>> mapping
{'a': 3}
>>> del ob.a
>>> mapping
{}
>>> ob.a
Traceback (most recent call last):
...
AttributeError: a
>>> ob.b = 1
>>> mapping
{'b': 1}
>>> del ob['b']
>>> mapping
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.mappingobject-1.0.0-1.lbn19.noarch
zc.mappingobject provides a wrapper for a mapping objects that provides both attribute and item access.
>>> import zc.mappingobject
>>> mapping = dict(a=1)
>>> ob = zc.mappingobject.mappingobject(mapping)
>>> ob.a
1
>>> ob.a = 2
>>> ob.a
2
>>> mapping
{'a': 2}
>>> list(ob)
['a']
>>> len(ob)
1
>>> ob['a'] = 3
>>> ob.a
3
>>> mapping
{'a': 3}
>>> del ob.a
>>> mapping
{}
>>> ob.a
Traceback (most recent call last):
...
AttributeError: a
>>> ob.b = 1
>>> mapping
{'b': 1}
>>> del ob['b']
>>> mapping
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.mappingobject-1.0.0-1.lbn25.noarch
zc.mappingobject provides a wrapper for a mapping objects that provides both attribute and item access.
>>> import zc.mappingobject
>>> mapping = dict(a=1)
>>> ob = zc.mappingobject.mappingobject(mapping)
>>> ob.a
1
>>> ob.a = 2
>>> ob.a
2
>>> mapping
{'a': 2}
>>> list(ob)
['a']
>>> len(ob)
1
>>> ob['a'] = 3
>>> ob.a
3
>>> mapping
{'a': 3}
>>> del ob.a
>>> mapping
{}
>>> ob.a
Traceback (most recent call last):
...
AttributeError: a
>>> ob.b = 1
>>> mapping
{'b': 1}
>>> del ob['b']
>>> mapping
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.monitor-0.3.1-1.lbn13.noarch
The monitor server is a server that provides a command-line interface to request various
bits of information. The server is zc.ngi based, so we can use the zc.ngi testing
infrastructure to demonstrate it.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13