Metadata-Version: 1.1
Name: typedload
Version: 2.0
Summary: Load and dump data from json-like format into typed data structures
Home-page: https://github.com/ltworf/typedload
Author: Salvo 'LtWorf' Tomaselli
Author-email: tiposchi@tiscali.it
License: GPLv3
Description: Load and dump json-like data into typed data structures.
        
        This module provides an API to load dictionaries and lists (usually loaded
        from json) into Python's NamedTuples, dataclass, sets, enums, and various
        other typed data structures; respecting all the type-hints and performing
        type checks or casts when needed.
        
        It can also dump from typed data structures to json-like dictionaries and lists.
        
        It is very useful for projects that use Mypy and deal with untyped data
        like json, because it guarantees that the data will have the expected format.
        
Keywords: typing types mypy json
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
