Does anybody know how to use quandl module/API for Python to store datasets and databases into a single database using postgresql or mongodb. Any help will be much appreciated. Thanks.

1

There are 1 best solutions below

0
On

The data returned from the quandl API are pandas dataframes.

You can save pandas dataframes to mongodb like this using PyMongo:

df = quandl.get("FRED/GDP",returns="pandas")
records = json.loads(df.T.to_json()).values()
db.myCollection.insert(records)

See this post for more information

To write to a SQL database, you can use the to_sql method on the pandas dataframe. See this post for more information