前提・実現したいこと
(Python初心者です)
Pythonでbitflyer apiで自動取引を行いたいが、エラーが出て進みません。対処方法をご教示ください。
発生している問題・エラーメッセージ
Traceback (most recent call last):
File "bitflyer.py", line 9, in <module>
from .exception import AuthException
bitflyerのapi_key、secretkeyを入れるところがわかりません。
該当のソースコード
bitflyer.py
-- coding: utf-8 --
class AuthException(Exception):
def __init__(self): msg = "Please specify your valid API Key and API Secret." super(AuthException, self).__init__(msg)
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
bitflyer.py
-- coding: utf-8 --
import json
import requests
import time
import hmac
import hashlib
import urllib
from .exception import AuthException
class API(object):
def __init__(self, api_key=None, api_secret=None, timeout=None): self.api_url = "https://api.bitflyer.jp" self.api_key = api_key self.api_secret = api_secret self.timeout = timeout
■置いてあるファイル
intit.py
exception.py
bitflyer.py
setup.py
回答1件
あなたの回答
tips
プレビュー