Skip to main content

Package frozentype provide some frozen python types (frozendict (C based) and frozenmap (Cython based))

Project description

=========
frozentype
=========

**frozentype** is `MIT Licensed <http://opensource.org/licenses/MIT>`_ python library.
It implements some frozen python types: ``frozendict`` type (in C) and ``FrozenDict``, ``FrozenMap`` classes (in Cython).

* `frozendict` is read-only and hashable dictionary (C based).
* `FrozenMap` is read-only mapping object wrapped around a mutable mapping object (Cython based).
* `FrozenDict` is read-only and hashable dictionary (Cython based).

This library actually is an attempt to proof the concept of fast frozendict (C/Cython based).

Main repository for ``frozentype``
is on `bitbucket <https://bitbucket.org/intellimath/frozentype>`_.

Quick start:
------------


First load inventory::

>>> from frozentype import frozendict, FrozenDict

Simple example::

>>> fd = frozendict(a=1,b=2,c=3)
>>> fd
frozendict({'a': 1, 'b': 2, 'c': 3})
>>> fd['a']
1
>>> fd['a'] = 10
........
TypeError: 'frozentype._frozendict.frozendict' object does not support item assignment
>>> del fd['a']
.........
TypeError: 'frozentype._frozendict.frozendict' object does not support item deletion
>>> fd.pop('a')
.........
AttributeError: 'frozentype._frozendict.frozendict' object has no attribute 'pop'


>>> fd = FrozenDict(a=1,b=2,c=3)
>>> print(fp)
FrozenDict({'a': 1, 'b': 2, 'c': 3})
>>> fd['a']
1
>>> fd['a'] = 10
........
TypeError: 'frozentype.frozendict.FrozenDict' object does not support item assignment
>>> del fd['a']
.........
TypeError: 'frozentype.frozendict.FrozenDict' object does not support item deletion
>>> fd.pop('a')
.........
AttributeError: 'frozentype.frozendict.FrozenDict' object has no attribute 'pop'


Changes:
--------

** 0.6 ** (migrate from project intellimath/frozenmap)

* Add C implementation for `frozendict`.
* Add tests for frozendict type.

**0.5** Initial version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

frozentype-0.6-cp37-cp37m-macosx_10_9_x86_64.whl (85.8 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

frozentype-0.6-cp36-cp36m-macosx_10_9_x86_64.whl (86.3 kB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

frozentype-0.6-cp35-cp35m-macosx_10_6_intel.whl (160.0 kB view hashes)

Uploaded CPython 3.5m macOS 10.6+ intel

frozentype-0.6-cp34-cp34m-macosx_10_6_intel.whl (158.6 kB view hashes)

Uploaded CPython 3.4m macOS 10.6+ intel

frozentype-0.6-cp27-cp27m-macosx_10_9_x86_64.whl (84.8 kB view hashes)

Uploaded CPython 2.7m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page