Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过 Python 查询 Quandl 数据库中存在的某条信息(例如收盘价)和/或与所有公司财务状况相关的所有信息(而不是查询一些公司一次)?
如果您知道所有公司的名称,请进行循环。我给你一个提示:
for(companies in CompanyList): data = Quandl.get(companies) #then do whatever you want to do with the data!
如果我理解你的问题!