Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] 잘못된 usage 수정 #132

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/exchange.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

balance = upbit.get_balances()
print(balance)
Expand All @@ -32,7 +32,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

chance = upbit.get_chance("KRW-BTC")
print(chance)
Expand Down Expand Up @@ -60,7 +60,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

uuid = "uuid" # 취소하고자하는 주문의 uuid
cancel_result = upbit.cancel_order(uuid)
Expand All @@ -85,7 +85,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

currency = "KRW" # 조회하려는 화폐 정보
withdraw_list = upbit.get_withdraw_list(currency)
Expand All @@ -101,7 +101,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

uuid = "uuid" # 조회하려는 출금 UUID
currency = "KRW" # 조회하려는 화폐 정보
Expand Down Expand Up @@ -133,7 +133,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

currency = "KRW" # 조회하려는 화폐 정보
deposit_list = upbit.get_deposit_list(currency)
Expand All @@ -150,7 +150,7 @@ EXCHANGE API

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

uuid = "uuid" # 조회하려는 입금 UUID
currency = "KRW" # 조회하려는 화폐 정보
Expand Down Expand Up @@ -191,7 +191,7 @@ API 키 목록 및 만료 일자를 조회한다.

access = "access key"
secret = "secret key"
upbit = Upbit(access, secret)
upbit = pyupbit.Upbit(access, secret)

api_key_info = upbit.get_api_key_list()
print(api_key_info)