https://github.com/andrewrgarcia/bcrpy
Un cliente API para el Banco Central de Reserva del Peru (BCRP)
https://github.com/andrewrgarcia/bcrpy
api bank bcrp central-bank hacktoberfest macroeconomics peru-data python time-series variables
Last synced: 3 months ago
JSON representation
Un cliente API para el Banco Central de Reserva del Peru (BCRP)
- Host: GitHub
- URL: https://github.com/andrewrgarcia/bcrpy
- Owner: andrewrgarcia
- License: mit
- Created: 2023-03-11T21:58:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-13T15:41:22.000Z (8 months ago)
- Last Synced: 2025-03-27T22:43:19.472Z (3 months ago)
- Topics: api, bank, bcrp, central-bank, hacktoberfest, macroeconomics, peru-data, python, time-series, variables
- Language: Python
- Homepage: https://bcrpy.vercel.app
- Size: 3.5 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
bcrpy
[](https://raw.githubusercontent.com/andrewrgarcia/voxelmap/main/LICENSE)[](https://bcrpy.readthedocs.io/en/latest/?badge=latest)[](https://github.com/psf/black)
Un cliente API para la extraccion, consulta y analisis de la base de datos [BCRPData](https://estadisticas.bcrp.gob.pe/estadisticas/series/) del [Banco Central de Reserva del Peru (BCRP)](https://www.bcrp.gob.pe/) escrito para Python. Este cliente es un _wrapper_ de la [API para Desarrolladores](https://estadisticas.bcrp.gob.pe/estadisticas/series/ayuda/api) del BCRP.
## Vinculos
[Documentación en linea (readthedocs)](https://bcrpy.readthedocs.io/en/latest/)
[Manual bcrpy (pdf)](https://raw.githubusercontent.com/andrewrgarcia/bcrpy/main/bcrpy.pdf)
[pip package index](https://pypi.org/project/bcrpy/)
[](CONTRIBUTING_ESP.md)
En apoyo al código abierto, este repositorio se encuentra participando en Hacktoberfest 2023. Te invitamos a consultar [CONTRIBUIR](CONTRIBUTING_ESP.md) para obtener instrucciones sobre cómo contribuir como colaborador y unirte a nuestra lista de colaboradores.
_For English guidelines in how to participate, check the [CONTRIBUTING](CONTRIBUTING.md) file._
# Instalacion
En su sistema local (laptop o computadora) bcrpy puede ser instalada con el comando pip install bcrpy. Aun asi, se
recomienda instalar bcrpy dentro de un ambiente virtual virtualenv. El protocolo para aquel seria el siguiente:```ruby
virtualenv venv
source venv/bin/activate
pip install bcrpy
```bcrpy ha sido desarrollado con un protocolo de programación orientada a objetos (tambien conocido como *Object
Oriented Programming (OOP)*) lo cual se reduce a que objetos pueden ser usados a almacenar metodos (funciones),
datos, y su manejo de aquellos.[](https://colab.research.google.com/drive/1YdyCYeU0S98428WgBg4n9Ad9auKrurQZ?usp=sharing)