0.0
No commit activity in last 3 years
No release in over 3 years
Bankleitzahlen (BLZ) for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

Build Status

Bankleitzahl

  • fetch Bankleitzahlendatei from bundesbank.de
  • load and parse Bankleitzahlendatei

Installation

Add this line to your application's Gemfile:

gem 'bankleitzahl'

Bankleitzahldatei

Get the current Bankleitzahldatei from http://www.bundesbank.de/Navigation/DE/Kerngeschaeftsfelder/Unbarer_Zahlungsverkehr/Bankleitzahlen/bankleitzahlen.html

There is a Merkblatt Bankleitzahlendatei describing the file format.

Examples

content_lines = Bankleitzahl::Fetcher.current_lines # remote http request

bank = Bankleitzahl::Parser.new(content_lines).all_banks.first
bank.blz #=> "10000001"
bank.name #=> "Bundesbank"
bank.short_name #=> "BBk Berlin"
bank.zip #=> "10591"
bank.city #=> "Berlin"
bank.bic #=> "MARKDEF1100"