Convert received raw data from crypto exchange API endpoints into well-formed python dictionaries.
Project description
UnicornFy
Supported Exchanges | Installation | Change Log | Documentation | Examples | Wiki | Social | Notifications | Bugs | Contributing | Commercial Support
Convert received raw data from crypto exchange API endpoints into well-formed python dictionaries.
Part of 'UNICORN Binance Suite'.
import unicorn_fy
received_stream_data_json = {"stream": "btcusdt@trade",
"data": {"e": "trade",
"E": 1556876873656,
"s": "BTCUSDT",
"t": 117727701,
"p": "5786.76000000",
"q": "0.03200500",
"b": 341831847,
"a": 341831876,
"T": 1556876873648,
"m": True,
"M": True}}
unicornfy = unicorn_fy.UnicornFy()
unicorn_fied_stream_data = unicornfy.binance_com_websocket(received_stream_data_json)
print(unicorn_fied_stream_data)
Output:
{'stream_type': 'btcusdt@trade', 'event_type': 'trade', 'event_time': 1556876873656, 'symbol': 'BTCUSDT',
'trade_id': 117727701, 'price': '5786.76000000', 'quantity': '0.03200500', 'buyer_order_id': 341831847,
'seller_order_id': 341831876, 'trade_time': 1556876873648, 'is_market_maker': True, 'ignore': True,
'unicorn_fied': ['binance', '0.11.1']}
This lib is integrated into
UNICORN Binance WebSocket API
and can be activated by setting parameter
output_default
of BinanceWebSocketApiManager()
to UnicornFy
or for specific streams with the parameter
output
of create_stream()
to UnicornFy
.
Get the right logger:
logging.getLogger("unicorn_fy")
Supported Exchanges
Websockets
REST
- none
If you like the project, please it on GitHub!
Installation and Upgrade
The module requires Python 3.6.0 or above.
The current dependencies are listed here.
A wheel of the latest release with PIP from PyPI
pip install unicorn-fy --upgrade
From source of the latest release with PIP from Github
Linux, macOS, ...
Run in bash:
pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/$(curl -s https://api.github.com/repos/lucit-systems-and-development/unicorn-fy/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade
Windows
Use the below command with the version (such as 0.7.0) you determined here:
pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/0.7.0.tar.gz --upgrade
From the latest source (dev-stage) with PIP from Github
This is not a release version and can not be considered to be stable!
pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/tarball/master --upgrade
Conda environment, Virtualenv or plain Python
Download the latest release or the current master branch and use:
- ./environment.yml
- ./requirements.txt
- ./setup.py
Change Log
https://unicorn-fy.docs.lucit.tech//CHANGELOG.html
Documentation
Examples
Project Homepage
https://github.com/LUCIT-Systems-and-Development/unicorn-fy
Wiki
https://github.com/LUCIT-Systems-and-Development/unicorn-fy/wiki
Social
Receive Notifications
To receive notifications on available updates you can
the repository on GitHub, write your
own script
with using
is_update_available()
or you use the
monitoring API service.
Follow us on Twitter or on Facebook for general news about the unicorn-binance-suite!
How to report Bugs or suggest Improvements?
List of planned features - click if you need one of them or suggest a new feature!
Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and python version and explain how to reproduce the error. A demo script is appreciated.
If you dont find an issue related to your topic, please open a new issue: https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues
Contributing
UnicornFy is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.
Contributors
We open source!
Commercial Support
Do you need a developer, operator or consultant?
Contact me for a non-binding initial consultation via my company LUCIT from Vienna (Austria) or via Telegram.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file unicorn-fy-0.12.1.tar.gz
.
File metadata
- Download URL: unicorn-fy-0.12.1.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/28.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.25.7 tqdm/4.63.0 importlib-metadata/4.8.1 keyring/18.0.1 rfc3986/1.4.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cf620d08d36837b935a110f3365d7a96c0068edbbc0cb2f753a4a922947096d |
|
MD5 | 77bf2f192d777774ad9c4b7a213192dd |
|
BLAKE2b-256 | b324a35a4e211c806f97542ca2e92421492161bb4f75865e1383bf775a6a0c4c |
Provenance
File details
Details for the file unicorn_fy-0.12.1-py3-none-any.whl
.
File metadata
- Download URL: unicorn_fy-0.12.1-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/28.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.25.7 tqdm/4.63.0 importlib-metadata/4.8.1 keyring/18.0.1 rfc3986/1.4.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 419ac35400364487bbc8c2b4d88bd05cc78cbe1335b1f933811b84fff48cf3cd |
|
MD5 | 7d65e7013f34bcb4102ced1fd818c5dc |
|
BLAKE2b-256 | c26748a03f0edddc492f89912cff4179fcd89af34984250ebd767572c346752d |