Metadata-Version: 1.2
Name: jsontofu
Version: 0.0.2
Summary: Json raw data to object
Home-page: https://github.com/rondou/jsontofu
Author: Rondou Chen
Author-email: 40and44sis@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/rondou/jsontofu/issues
Description: Usage
        -----
        
        .. code:: python
        
            @dataclass
            class Data:
                test_str: str
                test_int: int
        
            obj = jsontofu.decode({'test_str': 'test', 'test_int': 123}, Data)
        
            # Now you can call test_str like this
            obj.test_str
        
        Installation
        ------------
        
        .. code:: sh
        
            pip install git+git://github.com/rondou/jsontofu.git
        
        or
        
        .. code:: sh
        
            pipenv install 'git+ssh://git@github.com/rondou/jsontofu.git#egg=jsontofu'
        
        
        Development
        -----------
        
        .. code:: sh
        
            pipenv install
            pipenv install -d
            pipenv run "pytest -s"
        
        Coverage
        -----------
        
        .. code:: sh
        
            pipenv run 'pytest tests --cov=jsontofu'
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
