Skip to content

Commit 911c38e

Browse files
authored
Merge pull request #12 from uJhin/1.2.0
Update 1.2.0.4
2 parents ac3a0c5 + 70e4bc9 commit 911c38e

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ toml==0.10.2
4141
tqdm==4.57.0
4242
twine==3.3.0
4343
typing-extensions==3.7.4.3
44-
urllib3==1.26.3
44+
urllib3==1.26.4
4545
webcolors==1.11.1
4646
webencodings==0.5.1
4747
websockets==8.1

upbit/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
"""
2+
[Upbit Client]
3+
4+
Please read the official Upbit Client document.
5+
Documents: https://ujhin.github.io/upbit-client-docs/
6+
7+
- Upbit OPEN API Version: 1.2.0
8+
- Author: ujhin
9+
10+
- GitHub: https://github.com/uJhin
11+
- Official OPEN API Documents: https://docs.upbit.com
12+
- Official Support Email: [email protected]
13+
"""
114

215
from . import pkginfo
316

upbit/authentication.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@
88
from bravado.requests_client import Authenticator
99

1010

11-
EXCHANGE_PARAMS = ['uuids', 'txids', 'identifiers', 'states']
12-
QUOTATION_PARAMS = ['uuids', 'txids', 'identifiers',]
13-
QUERY_PARAMS = set(EXCHANGE_PARAMS)
1411
MAPPER = 'swg_mapper.json'
15-
16-
17-
QUERY_PARAMS.update(QUOTATION_PARAMS)
12+
QUERY_PARAMS = ['uuids', 'txids', 'identifiers', 'states']
1813

1914

2015
class APIKeyAuthenticator(Authenticator):

upbit/pkginfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _get_versions(package_name):
2929
PACKAGE_NAME = 'upbit-client'
3030

3131
OPEN_API_VERSION = '1.2.0'
32-
CURRENT_VERSION = OPEN_API_VERSION+'.3'
32+
CURRENT_VERSION = OPEN_API_VERSION+'.4'
3333

3434
RELEASED_VERSION = _get_versions(PACKAGE_NAME)
3535
LATEST_VERSION = RELEASED_VERSION[0]

0 commit comments

Comments
 (0)