Metadata-Version: 2.1
Name: Csv-Json-Converter
Version: 1.0.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:
        ```python
        import Csv_Json_Converter
        ```
        ##### * If you want to convert csv to json you must use:
        ```python
        csv_to_json(file_csv, file_creating=)
        ```
        Instead file_csv you need to write here relative or absolute path to your csv file.
        On second position you need to write value (True or False). If argument is false json file creation will not be done, the function will just return this file as a variable. By default the argument is true.
        ##### * 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.
        On second position you need to write value (True or False). If argument is false csv file creation will not be done, the function will just return this file as a variable. By default the argument is true.
        
        ## License
        
        MIT
        
        ### Autor
        
        Kovalev Maxim
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
