Metadata-Version: 2.1
Name: imcsv
Version: 0.0.1
Summary: In-Memory CSV file creator
Home-page: https://github.com/kaypee90/imcsv
Author: Kwabena Asante
License: MIT
Description: imcsv - Fast Python In-Memory CSV file creator!
        ---------------------------------------------------------
        
        A python library built to enhancing testing
        
        Requirements
        ------------
        
        * **Python**:  3.*
        
        
        Installation
        ------------
        
        Install using pip:
        
            pip install imcsv
        
        Usage
        -----
        
        Provides you with an in-memory csv file
        
        
            from imcsv.imcsv import generate_temp_csvfile
        
            headers = [
                    "Date",
                    "Month",
                    "Year",
                    "Customer ID",
                    "Item ID",
                ]
            rows = [
                [
                    "5-June-2020",
                    "5",
                    "2020",
                    "920",
                    "1380",
                ],
                [
                    "4-December-2020",
                    "12",
                    "2020",
                    "977",
                    "2322",
                ],
            ]
        	temp_csvfile = generate_temp_csvfile(headers, rows)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
