This Python module provides a python wrapper around the API of Econdb.com.
Just type:
pip install inquisitor
You can also find Econdb on Github
The documentation on installation, use and API description is found at econdb.com documentation page.
import inquisitor
qb = inquisitor.Inquisitor()
### List sources
qb.sources()
### List datasets
qb.datasets(source = 'EU')
### Return the response of any API url in Pandas if it contains time series data and JSON format otherwise
qb.from_url('https://www.econdb.com/api/series/?ticker=GDPQUS')