pyptax

A Python library to retrieve information on Ptax rates


Keywords
ptax, bcb, python
License
MIT
Install
pip install pyptax==0.5.0

Documentation

PyPtax

PyPtax is a Python library to retrieve information on Ptax rates.

What is Ptax?

Ptax exchange rate is the reference exchange rate for U.S. Dollar, expressed as the amount of Brazilian Reais per one U.S. Dollar, published by the Central Bank of Brazil.

Installation

$ pip install pyptax

Usage

Get closing rates on a certain date

>>> from pyptax import ptax

>>> close = ptax.close('01-17-2020')
>>> print(close)
{
    'datetime': '2020-01-17 13:09:30.096',
    'bid': '4.1831',
    'ask': '4.1837',
}