2

Python を使用して quandl.com からデータをダウンロードしていますが、今日の 50 回のダウンロードで制限に達しました。アカウントを持つユーザーは、私がすでにアカウントを設定しているこの制限を超えることができます。エラーメッセージには、リクエストにAPIキーを入れる必要があると書かれていますが、私の知る限り、その方法はわかりません??

これはエラーメッセージです

quandl.errors.quandl_error.LimitExceededError: (Status 429) (Quandl Error QELx01) You have exceeded the anonymous user limit of 50 calls per day. To make more calls today, please register for a free Quandl account and then include your API key with your requests.

これは私が使用しているコードで、リクエスト制限を除いて機能します

import quandl
import pandas as pd
from datetime import datetime
import pandas.io.data as web

symbols = ['BOE/XUDLTWD','BOE/XUDLCDS','tvix'] 



pnls = {}
for i in symbols:

    a = '/' in i

    if a == True:
        data = quandl.get(i ) 
        t = i.split('/')
        df1= pnls
        df1[str(t)] = data
        print(a)
4

2 に答える 2