Metadata-Version: 1.1
Name: data-converter
Version: 0.0.5
Summary: Convert most data file to other file formats
Home-page: https://github.com/xtream1101/data-converter
Author: Eddy Hintze
Author-email: eddy@hintze.co
License: MIT
Description: Data Converter
        ==============
        
        WIP…DO NOT USE YET
        ------------------
        
        Convert data files between different formats
        
        Install
        ~~~~~~~
        
        Python: ``pip install data-converter`` Brew: ``coming soon...``
        
        Ways to use
        ~~~~~~~~~~~
        
        Command line
        ^^^^^^^^^^^^
        
        ::
        
            $ data-converter -h
            usage: data-converter [-h] -t TO input_file
        
            Convert data files
        
            positional arguments:
              input_file      File to convert from
        
            optional arguments:
              -h, --help      show this help message and exit
              -t TO, --to TO  Format to convert to
        
        Import in python
        ^^^^^^^^^^^^^^^^
        
        .. code:: python
        
            import data_converter
        
            # Convert csv to json file
            output_path = data_converter.convert("~/some/data/file.csv", "json")
        
        Currently supported file types
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        -  json
        -  csv
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
