typeit brings typed data into your project
Project description
Development status: Beta
Typeit
typeit brings typed data into your project.
$ echo '{"first-name": "Hello", "initial": null, "last_name": "World"}' | typeit gen
The snipped above produces output similar to this:
from typing import Any, NamedTuple, Optional, Sequence
from typeit import type_constructor
class Main(NamedTuple):
first_name: str
initial: Optional[Any]
last_name: str
overrides = {
Main.first_name: 'first-name',
}
mk_main, serialize_main = type_constructor & overrides ^ Main
Documentation
Documentation is hosted on ReadTheDocs: https://typeit.readthedocs.io/en/develop/
Test framework
Run existing test suite with
$ pytest
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
typeit-0.20.0.tar.gz
(23.2 kB
view hashes)
Built Distribution
typeit-0.20.0-py3-none-any.whl
(27.2 kB
view hashes)