Skip to content

Commit

Permalink
Merge pull request #12 from uJhin/1.2.0
Browse files Browse the repository at this point in the history
Update 1.2.0.4
  • Loading branch information
uJhin authored Apr 1, 2021
2 parents ac3a0c5 + 70e4bc9 commit 911c38e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ toml==0.10.2
tqdm==4.57.0
twine==3.3.0
typing-extensions==3.7.4.3
urllib3==1.26.3
urllib3==1.26.4
webcolors==1.11.1
webencodings==0.5.1
websockets==8.1
Expand Down
13 changes: 13 additions & 0 deletions upbit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
"""
[Upbit Client]
Please read the official Upbit Client document.
Documents: https://ujhin.github.io/upbit-client-docs/
- Upbit OPEN API Version: 1.2.0
- Author: ujhin
- Email: [email protected]
- GitHub: https://github.com/uJhin
- Official OPEN API Documents: https://docs.upbit.com
- Official Support Email: [email protected]
"""

from . import pkginfo

Expand Down
7 changes: 1 addition & 6 deletions upbit/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,8 @@
from bravado.requests_client import Authenticator


EXCHANGE_PARAMS = ['uuids', 'txids', 'identifiers', 'states']
QUOTATION_PARAMS = ['uuids', 'txids', 'identifiers',]
QUERY_PARAMS = set(EXCHANGE_PARAMS)
MAPPER = 'swg_mapper.json'


QUERY_PARAMS.update(QUOTATION_PARAMS)
QUERY_PARAMS = ['uuids', 'txids', 'identifiers', 'states']


class APIKeyAuthenticator(Authenticator):
Expand Down
2 changes: 1 addition & 1 deletion upbit/pkginfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _get_versions(package_name):
PACKAGE_NAME = 'upbit-client'

OPEN_API_VERSION = '1.2.0'
CURRENT_VERSION = OPEN_API_VERSION+'.3'
CURRENT_VERSION = OPEN_API_VERSION+'.4'

RELEASED_VERSION = _get_versions(PACKAGE_NAME)
LATEST_VERSION = RELEASED_VERSION[0]
Expand Down

0 comments on commit 911c38e

Please sign in to comment.