Skip to main content

Pythonic type metadata; declarative JSON and YAML transcoding.

Project description

Pytyp uses ABCs and function annotations in a consistent, pythonic way that
supports declarative APIs - instead of saying how to do something, you have
the ability to say what you want.

It includes:

* A basic set of type specifications for describing collections of data,
closely integrated into the language::

>>> isinstance([1,2,None,4], Seq(Opt(int)))
True

* A decorator that type-checks functions::

>>> def str_only(x:str): return 'foo'
>>> str_only(42)
Exception raised:
...
TypeError: Type str inconsistent with 42.

* A decorator that allows dynamic dispatch by type. You can combine multiple
methods under one name, and then select which method is called by the type
of an argument (normal OO programming uses the type of ``self`` to select
the method; this is more like Lisp's multimethods).

* Routines for converting between Python classes and JSON or YAML. Instead of
having to work with ``dict`` and ``list`` you can read JSON directly into
Python classes. This is included as an example of the declarative API
possible - you describe the form of the output using type specifications.

The ideas behind the library are described in more detail in `Algebraic ABCs
<http://www.acooke.org/pytyp.pdf>`_.

Note that you must also install `PyYAML
<https://pypi.python.org/pypi/PyYAML>`_ if you want to encode/decode YAML.

Warning: This package is unused and largely unmaintained. Python went
in a `different direction<https://www.python.org/dev/peps/pep-0484/>`_
with types.

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

pytyp-2.2.4.zip (32.1 kB view details)

Uploaded Source

pytyp-2.2.4.tar.gz (21.2 kB view details)

Uploaded Source

File details

Details for the file pytyp-2.2.4.zip.

File metadata

  • Download URL: pytyp-2.2.4.zip
  • Upload date:
  • Size: 32.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pytyp-2.2.4.zip
Algorithm Hash digest
SHA256 0077c7054f4c7617779fa3cc2e754e10f7156b1f22d4bb55944e069548f83e09
MD5 0a18cc7f5bfb591bf92fba028e4358f2
BLAKE2b-256 c22881f0833433a2cc4125bf5679daa03b4a0010182109e45c0037429ed6fad6

See more details on using hashes here.

File details

Details for the file pytyp-2.2.4.tar.gz.

File metadata

  • Download URL: pytyp-2.2.4.tar.gz
  • Upload date:
  • Size: 21.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pytyp-2.2.4.tar.gz
Algorithm Hash digest
SHA256 a2e26de07b3335bf8d8dfd4ff6e109ce082e3dcdad84910270c3acfcff12f27d
MD5 b2178ac5b32f8caacef8025d05c07877
BLAKE2b-256 7b5785f74560d5fbe299bbe6cdec40d311c8fd8245a3b9bf1483be6f36a1f478

See more details on using hashes here.

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