This is a simple crate providing a convenient and safe interface to FinTS information of German banks. During the build it will download a CSV file with all the banks which it will then put into the library itself so that no extra files have to be taken care of.
Put this into your Cargo.toml
:
toml
[dependencies]
fints-institute-db = "1.0"
Then to use it:
```rust use fintsinstitutedb::getbankbybankcode;
if let Some(bank) = getbankbybankcode("12070000") { println!("{:?}", bank.pintanaddress); } ```
Other use case, find bank by BIC:
```rust use fintsinstitutedb::getbankby_bic;
if let Some(bank) = getbankbybic("GENODEM1MEN") { println!("{:?}", bank.pintan_address); } ```
Additionally this crate includes a CLI tool for your convenience. Use it with
shell
cargo run --features cli
```plain A library and CLI tool to access FinTS access information for many German banks
Usage: cli [OPTIONS]
Options:
--iban
Example usages:
```sh cargo run -- -b 12030000
cargo run -- -i DE02120300000000202051 ```
This crate is inspired by https://github.com/jhermsmeier/fints-institute-db and https://github.com/dr-duplo/python-fints-url
This is mostly a note for me on how to release this thing:
cargo release
cargo release --execute