Metadata-Version: 2.1
Name: consign
Version: 0.2.2
Summary: Python storage for humans.
Home-page: https://requests.readthedocs.io
Author: Daniel Jadraque
Author-email: jadraque@hey.com
License: Apache 2.0
Project-URL: Source, https://github.com/jadraque/consign
Description: # Consign
        
        Consign is a simple library to validate and store data in different sources.
        
        ```
        >>> import consign
        >>> import requests
        >>> r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
        >>> r.status_code
        200
        >>> consign.text(r.text, './local_file.txt')
        >>> consign.json(r.json(), './local_file.json')
        >>> consign.blob(r.json(), './cloud_file.json', provider='azure', connection_string=private_keys, container=container_name)
        ```
        
        Consign allows you to validate and store data extremely easily, whether in a 
        local file or in a cloud storage.
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Description-Content-Type: text/markdown
