rbiparser
rbiparser copied to clipboard
A utility for downloading, parsing and sanitizing bank database (IFSC, MICR, address etc.) Excel sheets from the RBI website.
1. Xrange to Range for Python3.5+ compatible code 2. Added Session and timeout for smooth file downloads from rbi 3. unicode was type line was creating an issue so modified
I saw the code raises many exception from class `Exception`. First, the only way to handle differently multiple Exceptions is to check their message, which is error-prone and difficult to...
When we define `^` in a square bracket it negate the matches. Example: `[^abc]` : matches any char except a, b or c. `[^a-z]` : matches any character except lower...