A pure Python interface for the Brazilian Central Bank's Time Series Management System (SGS) API
Project description
SGS2
A lightweight Python library for fetching historical economic data from the Brazilian Central Bank's SGS system.
Installation
pip install sgs2
Usage
dataframe()
Fetch time series data as a pandas DataFrame.
import sgs2 as sgs
# Get a single time series as a DataFrame
df = sgs.dataframe(12) # CDI (Brazilian Interbank Deposit Rate)
# Returns a DataFrame with date as index and code as column name
# Get data with a custom date range
df = sgs.dataframe(12, start='2020-01-01', end='2021-01-01')
# Get multiple series at once
df = sgs.dataframe([12, 433, 189])
# Returns a DataFrame with date as index and codes as column names
# Get multiple series with custom column names
df = sgs.dataframe({433: 'ipca', 189: 'igpm', 12: 'cdi'})
# Returns a DataFrame with date as index and custom names as column names
series()
Fetch a single time series as a pandas Series.
import sgs2 as sgs
# Get a single time series as a Series
s = sgs.series(12) # CDI (Brazilian Interbank Deposit Rate)
# Returns a Series with date as index and values as data
# Get data with a custom date range
s = sgs.series(12, start='2020-01-01', end='2021-01-01')
# Get a series with a custom name
s = sgs.series({12: 'cdi'})
# Returns a Series with date as index and 'cdi' as name
json()
Fetch the raw JSON data from the API.
# Get JSON data for a single series
sgs.json(12)
# Get JSON data with a custom date range
sgs.json(12, start='2020-01-01', end='2021-01-01')
# Get JSON data for multiple series as a list
sgs.json([12, 433, 189])
# Get JSON data for multiple series with custom names
sgs.json({12: 'cdi', 433: 'ipca', 189: 'igpm'})
# All parameters work the same as with dataframe()
sgs.json([12, 433], start='2020-01-01', end='2021-01-01')
metadata()
Fetch metadata about a series.
sgs.metadata(12)
Example output:
{
'code': '12',
'name': 'Taxa de juros - CDI',
'unit': '% a.d.',
'frequency': 'D',
'start_date': '06/03/1986',
'end_date': '19/03/2025',
'source_name': 'Cetip',
'special': 'N'
}
search()
Search for series by keyword.
sgs.search('cdi')
Example output:
[
{
'code': '12',
'name': 'Taxa de juros - CDI',
'unit': '% a.d.',
'frequency': 'D',
'start_date': '06/03/1986',
'end_date': '19/03/2025',
'source_name': 'Cetip',
'special': 'N'
},
{
'code': '4389',
'name': 'Taxa de juros - CDI anualizada base 252',
'unit': '% a.a.',
'frequency': 'D',
'start_date': '06/03/1986',
'end_date': '19/03/2025',
'source_name': 'BCB-Demab',
'special': 'N'
},
{
'code': '4391',
'name': 'Taxa de juros - CDI acumulada no mês',
'unit': '% a.m.',
'frequency': 'M',
'start_date': '31/07/1986',
'end_date': 'mar/2025',
'source_name': 'BCB-Demab',
'special': 'N'
},
{
'code': '4392',
'name': 'Taxa de juros - CDI acumulada no mês anualizada base 252',
'unit': '% a.a.',
'frequency': 'M',
'start_date': '31/07/1986',
'end_date': 'mar/2025',
'source_name': 'BCB-Demab',
'special': 'N'
}
]
Data Codes
Some common series codes:
12: CDI (Brazilian Interbank Deposit Rate)433: IPCA189: IGP-M (General Market Price Index)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sgs2-0.1.1.tar.gz.
File metadata
- Download URL: sgs2-0.1.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.1 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa291083b01a0e6b3e3f149066e4eab63e7576dae12bbee290da911f579a93b2
|
|
| MD5 |
d8a7bf545f5c90dcc195c187aa5aea13
|
|
| BLAKE2b-256 |
99b23bce3a83d92d17f9bf33422bb960d3758f151285910a369ea5638924e4f2
|
File details
Details for the file sgs2-0.1.1-py3-none-any.whl.
File metadata
- Download URL: sgs2-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.1 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a3414c6d891aa83ce9606dc08a93fec6781060eadfb1ee046466184a71b488d
|
|
| MD5 |
ddb67496adc3542417a58771d206b763
|
|
| BLAKE2b-256 |
e670bb90ad07eb920d2717638228509df6d630e805a42853af432cd7fef02208
|