Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-08T02:19:03.000Z (about 1 month ago)
- Last Synced: 2024-11-08T02:41:30.792Z (about 1 month ago)
- Topics: api, bank, bcrp, central-bank, hacktoberfest, macroeconomics, peru-data, python, time-series, variables
- Language: Python
- Homepage: https://bcrpy.vercel.app
- Size: 3.78 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
bcrpy
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](https://raw.githubusercontent.com/andrewrgarcia/voxelmap/main/LICENSE)[![Documentation Status](https://readthedocs.org/projects/bcrpy/badge/?version=latest)](https://bcrpy.readthedocs.io/en/latest/?badge=latest)[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](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/)
[![](https://github.com/andrewrgarcia/hf10_organizer_event_kit/blob/main/05_logo_set/hf10_horizontal_logos/cmyk/hf10_horz_fcd_cmyk.png?raw=true)](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.[![](docs/img/colaboratory.svg)](https://colab.research.google.com/drive/1YdyCYeU0S98428WgBg4n9Ad9auKrurQZ?usp=sharing)