A library for parsing files in the BAI lockbox format.
Project description
# bai-lockbox
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
```python
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
```
Maintained by [Jonathan Friedman @moofive](https://www.github.com/moofive/)
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
```python
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
```
Maintained by [Jonathan Friedman @moofive](https://www.github.com/moofive/)
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.7.tar.gz
(7.6 kB
view details)
File details
Details for the file bai-lockbox-0.0.7.tar.gz
.
File metadata
- Download URL: bai-lockbox-0.0.7.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27a56002b1aec4fb83d4bbfcce2ae7d565244d888a8c2f3d025ebeaa03b3f026 |
|
MD5 | 562b8777a60af333d40f070e05d96ae9 |
|
BLAKE2b-256 | 4fc35639b1ba5f5b79128f7a8d01c0b9248de569ff49460dcc218cf0d119877b |