Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Latest commit

 

History

History
40 lines (24 loc) · 802 Bytes

DESCRIPTION.rst

File metadata and controls

40 lines (24 loc) · 802 Bytes

Inquisitor

This Python module provides a python wrapper around the API of Econdb.com.

Installation

Just type:

pip install inquisitor

You can also find Econdb on Github

Documentation

The documentation on installation, use and API description is found at econdb.com documentation page.

Usage example

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')