Skip to main content

A library for parsing files in the BAI lockbox format.

Project description

A simple parser for files in the BAI lockbox format in order to extract checks from them.

Installation

To install bai-lockbox:

$ pip install bai-lockbox

Warning

Please be aware that this code was written to the spec that our bank uses, and has been tested with data that has come from them. This means that there may be subtle (and maybe some not-so-subtle) differences between the the data we expect and the data you get. If our parser doesn’t read your files, open an issue or submit a PR. We’d really appreciate it!

Usage

from lockbox.parser import LockboxFile
with open('/path/to/file', 'r') as inf:
    lockbox_file = LockboxFile.from_file(inf)

for check in lockbox_file.checks:
    print('Received ${} from {} on {}'.format(
        check.amount, check.sender, check.date
    ))

More information can be found in the docs which can be build from source:

$ cd path/to/bai-lockbox/docs
$ make html

or by going to the documentation page.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bai-lockbox-0.0.3.tar.gz (7.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page