Metadata-Version: 2.1
Name: easyload
Version: 1.0.6
Summary: A Python library for loading multiple types of data
Home-page: https://github.com/shoe-maker/easyload
Author: Hanshuang Tong
Author-email: tonghanshuang.thu@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/shoe-maker/easyload/issues
Project-URL: Source, https://github.com/shoe-maker/easyload/
Description: easyload
        ========
        Loading and Saving data made easy！
        
        Main Features
        ====
        -  A Python library for loading multiple types of data：
           -  Support Data Type: json, excel, csv, txt, npy, pkl, sql.
        
        Installation
        ========
        The code is Python 3 compatible
        
        -  Fully automatic installation: ``easy_install easyload`` or ``pip install easyload`` / ``pip3 install easyload``
        -  Semi-automatic installation: download https://pypi.python.org/pypi/easyload/ , unzip and run python setup.py install
        -  Manual installation: place easyload directory in the current directory or site-packages directory
        -  use ``import easyload`` to import
        
        
        Quick start
        ========
        ```python
        # encoding=utf-8
        import easyload
        
        # use easyload to load every file
        load_file_path= ""
        data = easyload.load(load_file_path)
        
        # load json file
        load_json_file_path, save_json_file_path = " ", " "
        json_data = easyload.load_json(load_json_file_path)
        easyload.save_json(save_json_file_path,json_data)
        ```
Keywords: easy load data
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
