Socket
Socket
Sign inDemoInstall

pytyp

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pytyp

Pythonic type metadata; declarative JSON and YAML transcoding.


Maintainers
1

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.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc