A Python package for connecting to yahoo websocket.
Project description
yticker
Cython based async python websocket client for yahoo based on picows : https://github.com/tarasko/picows
For installation run:
pip install yticker
#Example ::
import time
import asyncio
import logging
import platform
import warnings
from yticker import YTicker
warnings.filterwarnings("error")
logging.basicConfig(level= logging.DEBUG)
if platform.system() == "Windows":
import winloop
asyncio.set_event_loop_policy(winloop.EventLoopPolicy())
else:
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
async def on_tick(msg):
print(msg)
async def on_open(msg):
print(f"{time.asctime()} : {msg}")
async def on_close(msg):
print(f"{time.asctime()} : {msg}")
async def on_error(msg):
print(f"{time.asctime()} : {msg}")
async def main(loop):
ticker = YTicker(loop)
ticker.start_websocket(
message_update_callback= on_tick,
open_callback= on_open,
close_callback= on_close,
error_callback= on_error
)
await ticker.IS_CONNECTED.wait()
await ticker.subscribe(["BTC-USD", "EURUSD=X", "^NSEI", "RELIANCE.NS", "SBIN.BO"])
#Sample unsubscribe
await asyncio.sleep(10)
await ticker.unsubscribe(["BTC_USD", "^NSEI"])
#Close websocket
await asyncio.sleep(10)
ticker.close_websocket()
if __name__ == "__main__":
try:
loop = asyncio.get_event_loop()
except DeprecationWarning:
loop = asyncio.new_event_loop()
loop.create_task(main(loop))
loop.run_forever()
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 Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yticker-0.1.4.tar.gz.
File metadata
- Download URL: yticker-0.1.4.tar.gz
- Upload date:
- Size: 354.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
061dac89fb854d775e5558c751cd5c8fe3843015e10a7fa17ff7480d3a3d8a6d
|
|
| MD5 |
bd18a2b188b6d40026b9aaa9f6cb6645
|
|
| BLAKE2b-256 |
7ce7cc04ed1652767c12b81b1d7762d82d499c081d8d7009598c3bef2e15fab5
|
File details
Details for the file yticker-0.1.4-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 553.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cb9ef861902f8cccef7e3afe8cf0c0e59af6c5264dc7db16f08c5668b820c60
|
|
| MD5 |
33a8f9353b555f9ba1c94955746a105a
|
|
| BLAKE2b-256 |
9538b5885c97dfc045c725f4ebfdc6c2067b1b155dfd0ee7efd8fa3cd2fdd4cf
|
File details
Details for the file yticker-0.1.4-cp313-cp313-win32.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-win32.whl
- Upload date:
- Size: 522.7 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85c32fdc4ee3daf96b0c8057f5d9e42392f78f0b3970fb4c6c7b703a8727ec6e
|
|
| MD5 |
f7c7fca9d56c710c171df6821f8b89f6
|
|
| BLAKE2b-256 |
c4189a4a8398a3a01926f983a4a503e35a6a6cb217085ca16291b5cbdb7bffb1
|
File details
Details for the file yticker-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98d656a604db4cf9ab7cba3423765e4574e98d970d3d7b750c7bfa42213b1eb2
|
|
| MD5 |
5d3eb00f17655ef187dfaf189f71901d
|
|
| BLAKE2b-256 |
42101bcb203955ff0afb934e4427c7ca979ee7c4df35492879cf3c3834580e48
|
File details
Details for the file yticker-0.1.4-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70a076d5597e18001e5502e82e55f4e6750fde3a88b6128a8e2f0da429cd02dc
|
|
| MD5 |
11234b0cd8d81313f874b6e2b9c237db
|
|
| BLAKE2b-256 |
290ec32cc5459c6037444489d4a206e953b3cca3cb39accb04c2bd2ebd7d4731
|
File details
Details for the file yticker-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ddd8678d0a6d260f375cf817cb80f217d299b355bb2778d972db2bada184903
|
|
| MD5 |
a8651f16c63a65293bb93429484d01dd
|
|
| BLAKE2b-256 |
6aa12399096b1cb75942972102ba23713db26a62a29d58d6cee6e4bf129b334e
|
File details
Details for the file yticker-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee250aabb8c353f9f401942b299b6fb9df4f8e82c526db9572666b81002f0201
|
|
| MD5 |
1daa09e4f4d5d9c6f3b952fcbfeb2fee
|
|
| BLAKE2b-256 |
892088c5345bcfec9891acb997101cde80c578500eccb16111786b00678796ff
|
File details
Details for the file yticker-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 565.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcf49935b6c518d48afd5792ea740386aec594965cb73d77a54b2b90d68e8960
|
|
| MD5 |
8a5d2857cee0e80b18c65fa3558b1525
|
|
| BLAKE2b-256 |
ab2bf3160ce76f9f209818b8376ed5cef0dbe5a3574c1dc943031c0cfeb9c248
|
File details
Details for the file yticker-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 581.3 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7295bf7b8825f7c7f5f22947fabd0879e43743ae5165104ad0742832fd6c55e1
|
|
| MD5 |
d9e46f5a82ee6a1c3ec17a09b5f90b0d
|
|
| BLAKE2b-256 |
727b6ee1ce1b0869dc53fce5c59d1a76efcca5ab46da34d2b5b78a58aa30711c
|
File details
Details for the file yticker-0.1.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 553.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69f7fefa65c8d48332b9f56ff129cabc3320bb6a5bfe1cdfad22861eaab57ed0
|
|
| MD5 |
b5fe7509b6593777cb096ec6eedb130b
|
|
| BLAKE2b-256 |
6631198491b75b347f11c27fbacf608060268fba7047867b6ed39f680a4fa6aa
|
File details
Details for the file yticker-0.1.4-cp312-cp312-win32.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-win32.whl
- Upload date:
- Size: 522.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47868014798a2aa20ebf784aaf5119d7f07818e4a0b5340ec3cd1153ff5fffbd
|
|
| MD5 |
82803ec99353b2b8ae3c0ed5f4595111
|
|
| BLAKE2b-256 |
ce4977611cf7c47c5dfb8a525e1f3e565000143120a8400117235d61aa55122a
|
File details
Details for the file yticker-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf07c30fe33b887300afd4d1af7eb2a7fc0a13574ae29043790965f3a8e61ed9
|
|
| MD5 |
3ca3f446460fef3fa9584ace3d4573f5
|
|
| BLAKE2b-256 |
7dc93b80db4bf70d5db566969ecbe7b6acc7d301cc9f23d6ffbdd66696353440
|
File details
Details for the file yticker-0.1.4-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32f456a758c0b47f2475229d73ff68bb7150a950ca13c70eb63581157be7082a
|
|
| MD5 |
4850ec832ca6a0af3d44f75cc7fa8bd9
|
|
| BLAKE2b-256 |
2b101023160917beec0048c76bafcc75ea235de0cd8b2f841281f5581fc0d3d6
|
File details
Details for the file yticker-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e630ee2b02725f90056a6d22f04f539e2db6bef786eadb6a3b254ef0b150a6c
|
|
| MD5 |
0ec9cfee3ba059aa3e6c8118f6a493f2
|
|
| BLAKE2b-256 |
effe2efbda51c386de547160bba9a4572b320af295006d6484cf24a114a33d0f
|
File details
Details for the file yticker-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6192cac235ce9cbc5037a87ddddbd661e1286f7805c327469eacb8415af82d40
|
|
| MD5 |
0ac9b2ef6495441529c2cb9f5844c834
|
|
| BLAKE2b-256 |
68e2ebb0730efcc7ddfb585a210a61871c904b9a5969ecc9a834ed77a8496512
|
File details
Details for the file yticker-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 567.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4c8d460d2cac1b932b44d4d97c949703c6380987c16ff3bf804650539e27d58
|
|
| MD5 |
b950c9ae5af90c60b59166834b8e43f1
|
|
| BLAKE2b-256 |
4694aa258242422af85ff8e591576739d431ed479d6af2fb774dd8792e84b16f
|
File details
Details for the file yticker-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad43274ccbfa0620685dc9dd7f961f6a5b2923cd34bf725c3df84574eb2e923a
|
|
| MD5 |
70a7177c6a69ca282360343bdd7c476c
|
|
| BLAKE2b-256 |
f6bef5c0524105e719f4b190306849e2f187aeb8a9dc8bf47f051308d83c7181
|
File details
Details for the file yticker-0.1.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 557.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52d6b98fde273b4a228c591d8c84d8ae1efcb0008016bde9f67475538043a342
|
|
| MD5 |
4014bb383b95ed3d2711506c0d68027c
|
|
| BLAKE2b-256 |
e21d79de3dbfa49535601e9b46cb060044aaab68afee0a9f85bf22a8edfe68e9
|
File details
Details for the file yticker-0.1.4-cp311-cp311-win32.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-win32.whl
- Upload date:
- Size: 528.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d80a82ff77fda103a7b9cb68e3413b290cb36ed6ba1a60d28390fe4f35b8c50
|
|
| MD5 |
4a5b8e7b537340e81bf369d80c60fcf8
|
|
| BLAKE2b-256 |
d20f1446e2bcf9b9c06de25d1424bf257adc7caf0d128797b00de5d29a82b7b1
|
File details
Details for the file yticker-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0640729ae02542c5f715efc6c744cc4d9842ed1682ed0ad8165ec12198d78535
|
|
| MD5 |
d9a62f4aee634486f992329616c8d26c
|
|
| BLAKE2b-256 |
f84f7aee97257d74203c153674ca263b22bf667376a3dd509e1348535120a220
|
File details
Details for the file yticker-0.1.4-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83e54613ca00857672ed3f35f580978cae1c29b1a631a93686b1a34a66c51216
|
|
| MD5 |
a8029184b61437a7f68a92615fee1aec
|
|
| BLAKE2b-256 |
b848057ac44407e2a1e9e2b78e3ccf72f6f0cb4d79e694838a730afa2d96f1da
|
File details
Details for the file yticker-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f493c84ada38343614b4e63d7fc9182937246df94827b571aa7d4e21f2a377d9
|
|
| MD5 |
d53ae48961d360888144ef7529c62bf7
|
|
| BLAKE2b-256 |
934719b815c374621305b58508554e2a1a684063a71ce5310fface97da405c82
|
File details
Details for the file yticker-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
627b88c49acb7a7df97e2674ae3f323bde4e0342f371e9d834055c2414866652
|
|
| MD5 |
a1a9e8edfb1c20e392303f1e7a6db8c2
|
|
| BLAKE2b-256 |
35d71dfdc2c95b2dde5cc0461fbfd37113e60d375cf32cf035092a1f9a293178
|
File details
Details for the file yticker-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 573.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3a1c0b51ec08e98b467e7294abccb9f6990819f4517772c0a693dbd198f1985
|
|
| MD5 |
d1b7145062473fb01652eee83664ef1b
|
|
| BLAKE2b-256 |
fccc40e50e25f9e06a46b3d79c90878c441b3151821f9eb69c747607af439f04
|
File details
Details for the file yticker-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 587.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f27b2621564e0db3728578f7bfc063398b2c58bba1ceb1a928aa06ab2e735a2
|
|
| MD5 |
f28fce1412b5f34e992619e1b3e9b5bb
|
|
| BLAKE2b-256 |
4adc6243cc728600d815a4573139e71a8469c1a2faddaaa55dda752620396de5
|
File details
Details for the file yticker-0.1.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 555.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbfe087ee0896eea81bbae66dcc10e5267fe3ad225da4c3869d44b33dee34e01
|
|
| MD5 |
87777dcbe7a62df54ecd96929d37c2ef
|
|
| BLAKE2b-256 |
d79e862c340fe9eec49bc741b88eb93ee907bf76845c8848721c7c7fcd9e3b8b
|
File details
Details for the file yticker-0.1.4-cp310-cp310-win32.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-win32.whl
- Upload date:
- Size: 527.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18704e9a329644bd5b4201c0f049122c5cb7b7716dd899cb5c97df22bdb546f4
|
|
| MD5 |
d9dfac6dd5cfef8644ec2aea4e0d81a5
|
|
| BLAKE2b-256 |
65401f134747289e20e2254aff7c765381239d6073adfc28a2c9321b471530fa
|
File details
Details for the file yticker-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28ca2d9d5b1a63072e8a355cbc25b35821feeb53c2873129104cce091e639ab8
|
|
| MD5 |
2d00f8c7d825b0cc6325a344e857974b
|
|
| BLAKE2b-256 |
6e8e9faf920c451cf32fe30a5d7be294146126bf7290c1d9c2645b1d5a19cce5
|
File details
Details for the file yticker-0.1.4-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb3488a73295a09418b340b360d9f197f7a0b2e77d8d19d9563e7d9fd1ab7709
|
|
| MD5 |
aaa7a84a784c7f08b75383b43bec753f
|
|
| BLAKE2b-256 |
a7ae058bcfa5ecbc00aaedbfcbc1da959eb7405bd4fba85012d9be32374eafc5
|
File details
Details for the file yticker-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f272252e2c6b92b334ee6557fa3bc8e979f15c0195131b86951c8fac383923cc
|
|
| MD5 |
15fe6206659c096fea2514ab6094ad4d
|
|
| BLAKE2b-256 |
d84cb5df837253f87caa654c87f993af12bebfd129b1cd98de9f0e98f51fe739
|
File details
Details for the file yticker-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d2d91e2fefec1bcb0fad8e3579245f48d8df06c078f68d1b12e800de6f076a8
|
|
| MD5 |
27e363cba0d1447445228c5d334f57f4
|
|
| BLAKE2b-256 |
ba81f2452ba3e5a19de1e8df5f19fc439b49276b634484d9cae9c209d8c1a5cc
|
File details
Details for the file yticker-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 572.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
319ab5bd9dbb9b0cf505123a37c51060c8613ee3caba258d6bb742ed45a15c96
|
|
| MD5 |
c76273d112636cb3d46eb70242e303cf
|
|
| BLAKE2b-256 |
1d522c3b364ca94ba9eacd6ae9e8224df4e364f9ab47aa29f155299a9280bfb1
|
File details
Details for the file yticker-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 585.4 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dc5e2050dec2fed687874d07d84113d0e87e870ac9bce0d3a751c57e7ef9d2d
|
|
| MD5 |
40eacf54ae9c79765497bb9d817d6cb5
|
|
| BLAKE2b-256 |
502ca16a1247be670cbdb33266c0f8b9977e0205f1edecbcfa19a11fd5fb775f
|
File details
Details for the file yticker-0.1.4-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 556.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c12a5310ba3ab8381e76d819ede37b4d53041b22b053f9c1ffd0ebb28dfb48d3
|
|
| MD5 |
7eca4a469553b3407781df1bbc15c72a
|
|
| BLAKE2b-256 |
572181d352b8d406040b5cc86b6afa2190a44cb9381d8b7e75aac1854cbece0d
|
File details
Details for the file yticker-0.1.4-cp39-cp39-win32.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-win32.whl
- Upload date:
- Size: 528.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd50264955604bb8aff94b272d78c8e4d988f1be1ac1706b26373e9f6862b767
|
|
| MD5 |
1629ffabe9eb9d4db6726416d9d25d71
|
|
| BLAKE2b-256 |
d099cc74cc98d2879e7af41f0c0fc9159277f7954cb3fcb2be15ac6bc8567952
|
File details
Details for the file yticker-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abda311fe97e9c91744527a30b2aca8ef524ede789374c654bd0b6d0c7ca193d
|
|
| MD5 |
efaebf49378096a6206f04a7cd5cdd43
|
|
| BLAKE2b-256 |
0d1d7f5e0fe4bf70c6f005af09394f54922f4827c84dbe44b61913309b105055
|
File details
Details for the file yticker-0.1.4-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c09885cd10403061362e77c3a5609c9046035ae984b0c7ed0d04e03dbc27c1a
|
|
| MD5 |
4a7449b4ced75bd2f129a819deccdc53
|
|
| BLAKE2b-256 |
7daa3e82163addae4b3b7459678fbfb059b1a36c0a46c4c764858cbafb027f45
|
File details
Details for the file yticker-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1411b22e11d2dcbd892d2fccb16b1c75706055ada698b03102abe5f9d7e046d9
|
|
| MD5 |
46e68c29eef9f9b6289f5543c5bc5ae2
|
|
| BLAKE2b-256 |
626b456a2097778654dbc3777d6d957fb545e36014eaac9e279c9d382b096b0c
|
File details
Details for the file yticker-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97e2656928baaff9ab554c993b42f6514e364b8c5d0f74009d9005c1cf115698
|
|
| MD5 |
11fd1a275abc62c241ad2521454cec22
|
|
| BLAKE2b-256 |
861d55b6e39a5391c93cfac26f1fbba9f3fd9877f856e89ec4e1c5059af2552f
|
File details
Details for the file yticker-0.1.4-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 573.0 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11edad6eb5875921623cd5d93ff507d4ad4ab45a8f9d190442c49ab41d215a12
|
|
| MD5 |
87972c9879ee52d21a499eb169dcaa0c
|
|
| BLAKE2b-256 |
9fb52fed784fbe8c994e8955c3f2913cbc0f00705faeda91d2e6097a03ef03e5
|
File details
Details for the file yticker-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 586.3 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
836026db003f5b499ce5996aeafbed00c9b1e5d58530ed03fd048331378ea4d5
|
|
| MD5 |
52a8bbe6f7f1fbdb00e7988498899abc
|
|
| BLAKE2b-256 |
1711539ea9b6c5ad08a3653bf168bbb99c3840be4ffc263d3028621b5734c8a6
|
File details
Details for the file yticker-0.1.4-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 556.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ca2ecf24db72552334ee8424f6bbe2ec0b5cfe8de4c5d6d4c375381d82cdf51
|
|
| MD5 |
fe5135d65bff6db6c41bfb012c3a7bb6
|
|
| BLAKE2b-256 |
c13464d5716270353285549ee5a336068091241423f761513945ddcd87c5a076
|
File details
Details for the file yticker-0.1.4-cp38-cp38-win32.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-win32.whl
- Upload date:
- Size: 528.3 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41719841a029436fef7d7fcf2733f6dd769ad03d87d514816f780b7b952436bc
|
|
| MD5 |
96c7b6021e062b8e36fa600b09493765
|
|
| BLAKE2b-256 |
de39714d30254850f76eefb1111afea2abcb1d0e5ff617d29b1540fc1c8723b7
|
File details
Details for the file yticker-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
126060cac792c9f41addf8f306bdbe186768ce31d9bb9b02833781d9b648620f
|
|
| MD5 |
2286ceef2d003e352aa5b777be0e80c5
|
|
| BLAKE2b-256 |
0a49ca77a53bf03bdcad78916a4e22172a4560ec71735a99955bbcaaffd94e1c
|
File details
Details for the file yticker-0.1.4-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f90a59169e927a094b6956e6e1043c6f7107857a69198be923145252bb12a4f
|
|
| MD5 |
a10e723f6758c8a3e7476b4296956f7d
|
|
| BLAKE2b-256 |
a1019e7ffa44aceeb45f633c43c60b340e41910a4d269ce83e33383810bf442c
|
File details
Details for the file yticker-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af4d18f148d3ea9ef8f39886fe240047ce6b9d1801da060f032ba6ff31caede6
|
|
| MD5 |
66c58aafeac0779a43c03a593acbc6bd
|
|
| BLAKE2b-256 |
deaf0aea897779fb1a89773c6956e817bee402415f151750a3a31c631e3f7f89
|
File details
Details for the file yticker-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3ed86c9d9db59358979160a68a8b93ff2abbfdebef068272fb8ac19e2211990
|
|
| MD5 |
4e328ab498b82d8e305132fb6912177e
|
|
| BLAKE2b-256 |
73d0ea831603c70e1f2535716dda8d2173572a36a1593611bfa211f31e8cf94e
|
File details
Details for the file yticker-0.1.4-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 574.0 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a79aea727372c2137f89670e053a4394884e983f25467447f3c58e9c6bdb27ff
|
|
| MD5 |
0a530b78490f905a162ea23beeb0380f
|
|
| BLAKE2b-256 |
9f4ea332def49a4db0d0449648992662dc553733e5e06710c3dc51b68d0038a4
|
File details
Details for the file yticker-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: yticker-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 587.3 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8ef4f2e8e09baa38a51b38aa66db7fd62fd58459642fcb794b14f53344b32a1
|
|
| MD5 |
feede42020c938c5827ff63d706220a1
|
|
| BLAKE2b-256 |
635e3b1a97c6c84ee061ba619d6675f8df142089aa1741d5fc60a30fb3ac11c0
|