File: get_bank_registry_lv.py

package info (click to toggle)
python-schwifty 2024.09.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,072 kB
  • sloc: python: 3,057; makefile: 209; sh: 9
file content (33 lines) | stat: -rw-r--r-- 899 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import json

import pandas
import requests


URL = "https://www.bank.lv/images/stories/pielikumi/makssist/bic_saraksts_22.01.2020_eng.xls"


def process():
    agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:104.0) Gecko/20100101 Firefox/104.0"
    response = requests.get(URL, headers={"User-Agent": agent})

    datas = pandas.read_excel(response.content, skiprows=1, sheet_name=0, dtype="str")
    datas.fillna("", inplace=True)

    return [
        {
            "country_code": "LV",
            "primary": True,
            "bic": str(row.BIC).upper(),
            "bank_code": str(row.BIC)[:4],
            "name": row._2,
            "short_name": row._2,
        }
        for row in list(datas.itertuples())
    ]


if __name__ == "__main__":
    with open("schwifty/bank_registry/generated_lv.json", "w") as fp:
        json.dump(process(), fp, indent=2)