Metadata-Version: 2.1
Name: Csv_Json_Converter
Version: 1.1.0
Summary: Аccepts files as input and converts them to csv or json format
Home-page: https://github.com/Rerice
Author: Rerice
Author-email: maxim.covalev@gmail.com
License: UNKNOWN
Description: # Csv-json file converter 
        
        #### Csv-json converter converts csv files to json files. The converter can convert standard csv files with headers and standart json files.
        #### Functions of this package can return the converted file as a variable and create the converted file in the project directory if needed.
        ***
        ## How to use it? 
        
        ##### * First of all you must import this package like:
        ```python
        from csv_json.csv_json_conv import *
        ```
        ##### * If you want to convert csv to json you must use:
        ```python
        csv_to_json(file_csv)
        ```
        Instead file_csv you need to write here relative or absolute path to your csv file.
        The function returns path to the created json file and create json file with same name as original csv file.
        ##### * If you want to convert json to csv you must use:
        ```python
        json_to_csv(file_json, file_creating=)
        ```
        Instead file_json you need to write here relative or absolute path to your json file.
        The function returns path to the created csv file and create csv file with same name as original json file.
        
        ## License
        
        MIT
        
        ### Autor
        
        Kovalev Maxim
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
