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

exchange.rst 파일 문제 수정 #87

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
6 changes: 5 additions & 1 deletion docs/exchange.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ EXCHANGE API
출금 UUID 를 통해 개별 출금건을 조회한다. 출금 UUID 는 출금 리스트 조회를 통해 확인할 수 있다.

.. code-block:: python

import pyupbit

access = "access key"
Expand Down Expand Up @@ -129,6 +130,7 @@ EXCHANGE API
입금 리스트를 조회한다.

.. code-block:: python

import pyupbit

access = "access key"
Expand All @@ -146,6 +148,7 @@ EXCHANGE API
입금 UUID 를 통해 개별 입금건을 조회한다. 입금 UUID 는 입금 리스트 조회를 통해 확인할 수 있다.

.. code-block:: python

import pyupbit

access = "access key"
Expand Down Expand Up @@ -187,11 +190,12 @@ API 키 리스트 조회
API 키 목록 및 만료 일자를 조회한다.

.. code-block:: python

import pyupbit

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

api_key_info = upbit.get_api_key_list()
print(api_key_info)
print(api_key_info)