bcra

Central Bank of Argentina Gov API Client with debtor corporations info

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:24

Installation

nimble install bcra
choosenim install bcra
git clone https://github.com/juancarlospaco/nim-bcra

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
bcra - - - - - - -

Source

Repository https://github.com/juancarlospaco/nim-bcra
Homepage https://github.com/juancarlospaco/nim-bcra
Registry Source nimble_official

README

BCRA

Use

import bcra

let cliente = Bcra()
echo cliente.getBajasCheques(fecha = now()) # Bajas nuevas en el sistema
echo cliente.getAltasPadron(fecha = now())  # Altas nuevas en el sistema
echo cliente.getDeudores(fecha = now())     # Deudores

Arguments

  • All functions require fecha of DateTime type, eg fecha = now() - 2.days.
  • It is not documented when the data for current day becomes available, if you get errors use fecha = now() - 1.days for yesterdays data.

Return

  • Return data type is a list of tuples:
[
  (cuit: int, numeroDeCheque: int, fechaRechazado: DateTime, monto: int, causal: string, fechaLevantamiento: string, ley25326art16inc6: string, ley25326art38inc3: string, cuitJuridico: string, multa: string),
]

SSL

  • Compile with -d:ssl to use HTTPS and SSL. It works with and without SSL.

Install

  • nimble install bcra