通过 Python 查询 Quandl 中的所有公司

Querying for all the companies in Quandl via Python

有没有办法通过[查询某条信息(例如收盘价)and/or Quandl 数据库中存在的与所有公司财务状况相关的所有信息Python(而不是一次查询几家公司)?

如果你知道所有公司的名字,就做一个循环。我给你一个提示:

for(companies in CompanyList):
    data = Quandl.get(companies)
    #then do whatever you want to do with the data!

如果我没看错你的问题!