Metadata-Version: 1.1
Name: rbiparser
Version: 0.6.2
Summary: A utility for downloading, parsing and sanitizing bank database (IFSC, MICR, address etc.) Excel sheets from the RBI website.
Home-page: https://github.com/zerodhatech/rbiparser
Author: Kailash Nadh
Author-email: kailash@nadh.in
License: MIT License
Download-URL: https://github.com/zerodhatech/rbiparser
Description: # rbiparser
        
        A utility for downloading, parsing and sanitizing bank database (IFSC, MICR, address etc.) Excel sheets from the [RBI website](https://www.rbi.org.in/scripts/bs_viewcontent.aspx?Id=2009).
        
        ### Installation.
        `pip install rbiparser`
        
        ### Usage:
        ```shell
        
        # Download the Excel files from the RBI website.
        rbiparser download -d "./xls"
        
        # Convert the downloaded files to CSV.
        rbiparser convert  -s "./xls" -d "./csv"
        
        # Combine the CSV records into one master file.
        rbiparser combine -s "./csv" -d "data.csv"
        
        # Help for individual command
        rbiparser combine --help
        
        # Apply advanced clean filters
        rbiparser combine -s "./csv" -d "data.csv" -f
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries
