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.
Quandl のデータベースに存在するすべての企業の財務状況に関連する特定の情報 (例: 1 日の終わりの株価) および/またはすべての情報を Python 経由でクエリする方法はありますか?一度に会社)?
すべての会社の名前がわかっている場合は、ループを作成します。私はあなたにヒントを与えます:
for(companies in CompanyList): data = Quandl.get(companies) #then do whatever you want to do with the data!
私があなたの質問を正しく理解しているなら!