Metadata-Version: 2.1
Name: SplitMerge
Version: 0.0.1
Summary: Split & Merge utilities for large csv files.
Home-page: https://github.com/pypa/SplitMerge
Author: Satyaki De
Author-email: satyaki.de@gmail.com
License: UNKNOWN
Description: # Split-Merge Package
        
        Splitting a large CSV file into multiple small csv files for better processing using Split features at your local disk & Merge will merge back to small files into one large file. This is a first sample version. 
        
        ### Limitations
        
        As of now, this will create splitted file with the extension known as "_splitted_". Make sure that your original file should not contain the same naming pattern.
        
        > Your source file name for example - addr_det_20190101.csv
        > Your split file name will will be given below: 
        > 	1__addr_det_20180112__splitted_.csv
        > 	2__addr_det_20180112__splitted_.csv
        > 	N__addr_det_20180112__splitted_.csv
        > Where N would be any number based on the size of the file.
        > Bye default, each chunk will contain at least 30000 or less number of records.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
