Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/econdb/inquisitor
Python Interface to econdb.com API
https://github.com/econdb/inquisitor
economic-data economics python
Last synced: about 2 months ago
JSON representation
Python Interface to econdb.com API
- Host: GitHub
- URL: https://github.com/econdb/inquisitor
- Owner: econdb
- Archived: true
- Created: 2015-10-15T14:34:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T21:09:03.000Z (over 2 years ago)
- Last Synced: 2024-11-10T01:25:29.373Z (about 2 months ago)
- Topics: economic-data, economics, python
- Language: Python
- Homepage: https://www.econdb.com/api/
- Size: 48.8 KB
- Stars: 40
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-quant - inquisitor - Python Interface to Econdb.com API. (Python / Data Sources)
- awesome-quant - inquisitor - Python Interface to Econdb.com API. (Python / Data Sources)
README
[![Python Versions](https://img.shields.io/pypi/pyversions/inquisitor.svg)](https://pypi.python.org/pypi/inquisitor)
### Brief
Econdb.com is an aggregator of economic data.
This Python module provides a wrapper around the API of Econdb.com.
To send requests to the API, users need to provide an authentication token, which can be obtained by registering at econdb.com.
Documentation of the API and use examples can be found on the [documentation site](https://www.econdb.com/documentation/inquisitor).
### Installation
```pip install inquisitor```
### Quick examples
```
import inquisitor
qb = inquisitor.Inquisitor()### List sources
qb.sources()### List datasets
qb.datasets(source='EU')### Obtain series data
qb.series(dataset='EI_BSCO_M')
```### License
MIT