Parsing bank feed data files
Project description
fyle-bank-feed-parser-sdk-py
Bank feeds parsers collection.
Usage
To use the VCF parser, use the VCFParser class:
from card_data_parsers import VCFParser, ParserError
try:
with open(dir + '/input.vcf') as input_file:
result = VCFParser.parse(
file_obj=input_file,
account_number_mask_begin=4,
account_number_mask_end=4
)
print(result)
except ParserError as e:
print(f'Omg! error {e}')
Similarly, you can use AmexParser, CDFParser, S3DFParser and HappayParser for the right file types.
Development
pip install -r requirements.txt
Check implemented parsers for examples.
Run tests
chmod +x text.sh
./test.sh
Releasing a new version
When a new version is ready for release, create a git tag with version number like -
git tag v0.1.0
git push origin v0.1.0
Versioning semantics
The parse method is supposed to return a list of transactions. This is a list of python dict objects that looks like this:
[{"bank_name": "Test BANK", "vendor": "Test", "sync_type": "BANK FEED - VCF", "transaction_type": "debit", "currency": "EUR", "amount": "124.74", "transaction_date": "2018-11-30T10:00:00.000000Z", "account_number": "4142********6333", "transaction_dt": "2018-11-30T10:00:00.000000Z", "external_id": "b2a242d1d9814394b594044b77f36f2f"}]
If there is any non-backward compatible change to this structure e.g. a key is deleted, then bump up major number. Otherwise, bump up minor number.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file card_data_parsers-0.5.0.tar.gz
.
File metadata
- Download URL: card_data_parsers-0.5.0.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fd0a1cbc0e1f1f61d7c2d97b9bc9b5e8b23c6091c2eabab4950ba10ebb98db7 |
|
MD5 | 7d9376c7d259394987844d23e17270ce |
|
BLAKE2b-256 | 26e2f59054235e1d5f1fa6af732276dcb0f989a660ff18f4bd0301f041bc7a84 |
Provenance
File details
Details for the file card_data_parsers-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: card_data_parsers-0.5.0-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfa3715f9b91e5ed4e1db0b76c74e9b80c18de96a022c5eb7ce8cddeb1c17225 |
|
MD5 | 36dd96764badc6b32c291ea396738dd7 |
|
BLAKE2b-256 | bce96428aaf3e6d9ec49622b8720c0cca4bb971d20495b049c6201cfec645717 |