Metadata-Version: 2.1
Name: py-csv-xls
Version: 0.0.4
Summary: Converter from csv format to xls
Home-page: https://github.com/pog7x/py-csv-xls
Author: pog7x
Author-email: poluningm@gmail.com
License: MIT
Description: # py-csv-xls
        
        <p align="center">
        <a href="https://github.com/psf/black/blob/main/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
        <a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
        </p>
        
        ## Converter from csv format to xls
        
        ### Installation
        [PYPI](https://pypi.org/project/py-csv-xls/)
        ```shell script
        pip install py-csv-xls
        ```
        
        ### Example
        ```python
        from py_csv_xls import CSVSniffer, ExcelWorker, PyCsvXlsException
        
        file_lines = CSVSniffer(
            main_path="/abs/path/to/ur/csv/or/dir",
        ).get_dir_files_with_lines()
        
        ExcelWorker(
            workbook_name="/abs/path/to/ur/xl/without/extension",
            workbook_extension=".xls",
            want_cleared=True,
        ).fill_workbook(all_data=file_lines)
        ```
Keywords: python csv xls excel date
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
