Skip to main content

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()

Release files for yticker 0.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for yticker 0.1.4
File Size Uploaded
yticker-0.1.4.tar.gz 354.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for yticker 0.1.4
File
yticker-0.1.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
yticker-0.1.4-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
yticker-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
yticker-0.1.4-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
yticker-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
yticker-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yticker-0.1.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
yticker-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
yticker-0.1.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yticker-0.1.4-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yticker-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
yticker-0.1.4-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
yticker-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
yticker-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yticker-0.1.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
yticker-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
yticker-0.1.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yticker-0.1.4-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yticker-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
yticker-0.1.4-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
yticker-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
yticker-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yticker-0.1.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
yticker-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
yticker-0.1.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yticker-0.1.4-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yticker-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
yticker-0.1.4-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
yticker-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
yticker-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yticker-0.1.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
yticker-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
yticker-0.1.4-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
yticker-0.1.4-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
yticker-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
yticker-0.1.4-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
yticker-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
yticker-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yticker-0.1.4-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
yticker-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
yticker-0.1.4-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
yticker-0.1.4-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
yticker-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
yticker-0.1.4-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
yticker-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
yticker-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yticker-0.1.4-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
yticker-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 53.6 MB

Release files / yticker-0.1.4.tar.gz

Download URL yticker-0.1.4.tar.gz
Size 354.1 kB
Tags Source
SHA-256 checksum
How to use checksums
061dac89fb854d775e5558c751cd5c8fe3843015e10a7fa17ff7480d3a3d8a6d
BLAKE2b-256 checksum
How to use checksums
7ce7cc04ed1652767c12b81b1d7762d82d499c081d8d7009598c3bef2e15fab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-win_amd64.whl

Download URL yticker-0.1.4-cp313-cp313-win_amd64.whl
Size 553.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
3cb9ef861902f8cccef7e3afe8cf0c0e59af6c5264dc7db16f08c5668b820c60
BLAKE2b-256 checksum
How to use checksums
9538b5885c97dfc045c725f4ebfdc6c2067b1b155dfd0ee7efd8fa3cd2fdd4cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-win32.whl

Download URL yticker-0.1.4-cp313-cp313-win32.whl
Size 522.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
85c32fdc4ee3daf96b0c8057f5d9e42392f78f0b3970fb4c6c7b703a8727ec6e
BLAKE2b-256 checksum
How to use checksums
c4189a4a8398a3a01926f983a4a503e35a6a6cb217085ca16291b5cbdb7bffb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL yticker-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
98d656a604db4cf9ab7cba3423765e4574e98d970d3d7b750c7bfa42213b1eb2
BLAKE2b-256 checksum
How to use checksums
42101bcb203955ff0afb934e4427c7ca979ee7c4df35492879cf3c3834580e48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-musllinux_1_2_i686.whl

Download URL yticker-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Size 1.6 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
70a076d5597e18001e5502e82e55f4e6750fde3a88b6128a8e2f0da429cd02dc
BLAKE2b-256 checksum
How to use checksums
290ec32cc5459c6037444489d4a206e953b3cca3cb39accb04c2bd2ebd7d4731
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yticker-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4ddd8678d0a6d260f375cf817cb80f217d299b355bb2778d972db2bada184903
BLAKE2b-256 checksum
How to use checksums
6aa12399096b1cb75942972102ba23713db26a62a29d58d6cee6e4bf129b334e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yticker-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ee250aabb8c353f9f401942b299b6fb9df4f8e82c526db9572666b81002f0201
BLAKE2b-256 checksum
How to use checksums
892088c5345bcfec9891acb997101cde80c578500eccb16111786b00678796ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL yticker-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Size 565.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bcf49935b6c518d48afd5792ea740386aec594965cb73d77a54b2b90d68e8960
BLAKE2b-256 checksum
How to use checksums
ab2bf3160ce76f9f209818b8376ed5cef0dbe5a3574c1dc943031c0cfeb9c248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl

Download URL yticker-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Size 581.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7295bf7b8825f7c7f5f22947fabd0879e43743ae5165104ad0742832fd6c55e1
BLAKE2b-256 checksum
How to use checksums
727b6ee1ce1b0869dc53fce5c59d1a76efcca5ab46da34d2b5b78a58aa30711c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-win_amd64.whl

Download URL yticker-0.1.4-cp312-cp312-win_amd64.whl
Size 553.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
69f7fefa65c8d48332b9f56ff129cabc3320bb6a5bfe1cdfad22861eaab57ed0
BLAKE2b-256 checksum
How to use checksums
6631198491b75b347f11c27fbacf608060268fba7047867b6ed39f680a4fa6aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-win32.whl

Download URL yticker-0.1.4-cp312-cp312-win32.whl
Size 522.9 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
47868014798a2aa20ebf784aaf5119d7f07818e4a0b5340ec3cd1153ff5fffbd
BLAKE2b-256 checksum
How to use checksums
ce4977611cf7c47c5dfb8a525e1f3e565000143120a8400117235d61aa55122a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL yticker-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bf07c30fe33b887300afd4d1af7eb2a7fc0a13574ae29043790965f3a8e61ed9
BLAKE2b-256 checksum
How to use checksums
7dc93b80db4bf70d5db566969ecbe7b6acc7d301cc9f23d6ffbdd66696353440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-musllinux_1_2_i686.whl

Download URL yticker-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
32f456a758c0b47f2475229d73ff68bb7150a950ca13c70eb63581157be7082a
BLAKE2b-256 checksum
How to use checksums
2b101023160917beec0048c76bafcc75ea235de0cd8b2f841281f5581fc0d3d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yticker-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6e630ee2b02725f90056a6d22f04f539e2db6bef786eadb6a3b254ef0b150a6c
BLAKE2b-256 checksum
How to use checksums
effe2efbda51c386de547160bba9a4572b320af295006d6484cf24a114a33d0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yticker-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6192cac235ce9cbc5037a87ddddbd661e1286f7805c327469eacb8415af82d40
BLAKE2b-256 checksum
How to use checksums
68e2ebb0730efcc7ddfb585a210a61871c904b9a5969ecc9a834ed77a8496512
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL yticker-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Size 567.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d4c8d460d2cac1b932b44d4d97c949703c6380987c16ff3bf804650539e27d58
BLAKE2b-256 checksum
How to use checksums
4694aa258242422af85ff8e591576739d431ed479d6af2fb774dd8792e84b16f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl

Download URL yticker-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Size 584.3 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ad43274ccbfa0620685dc9dd7f961f6a5b2923cd34bf725c3df84574eb2e923a
BLAKE2b-256 checksum
How to use checksums
f6bef5c0524105e719f4b190306849e2f187aeb8a9dc8bf47f051308d83c7181
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-win_amd64.whl

Download URL yticker-0.1.4-cp311-cp311-win_amd64.whl
Size 557.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
52d6b98fde273b4a228c591d8c84d8ae1efcb0008016bde9f67475538043a342
BLAKE2b-256 checksum
How to use checksums
e21d79de3dbfa49535601e9b46cb060044aaab68afee0a9f85bf22a8edfe68e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-win32.whl

Download URL yticker-0.1.4-cp311-cp311-win32.whl
Size 528.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
0d80a82ff77fda103a7b9cb68e3413b290cb36ed6ba1a60d28390fe4f35b8c50
BLAKE2b-256 checksum
How to use checksums
d20f1446e2bcf9b9c06de25d1424bf257adc7caf0d128797b00de5d29a82b7b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL yticker-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0640729ae02542c5f715efc6c744cc4d9842ed1682ed0ad8165ec12198d78535
BLAKE2b-256 checksum
How to use checksums
f84f7aee97257d74203c153674ca263b22bf667376a3dd509e1348535120a220
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-musllinux_1_2_i686.whl

Download URL yticker-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Size 1.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
83e54613ca00857672ed3f35f580978cae1c29b1a631a93686b1a34a66c51216
BLAKE2b-256 checksum
How to use checksums
b848057ac44407e2a1e9e2b78e3ccf72f6f0cb4d79e694838a730afa2d96f1da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yticker-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f493c84ada38343614b4e63d7fc9182937246df94827b571aa7d4e21f2a377d9
BLAKE2b-256 checksum
How to use checksums
934719b815c374621305b58508554e2a1a684063a71ce5310fface97da405c82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yticker-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
627b88c49acb7a7df97e2674ae3f323bde4e0342f371e9d834055c2414866652
BLAKE2b-256 checksum
How to use checksums
35d71dfdc2c95b2dde5cc0461fbfd37113e60d375cf32cf035092a1f9a293178
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL yticker-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Size 573.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c3a1c0b51ec08e98b467e7294abccb9f6990819f4517772c0a693dbd198f1985
BLAKE2b-256 checksum
How to use checksums
fccc40e50e25f9e06a46b3d79c90878c441b3151821f9eb69c747607af439f04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl

Download URL yticker-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Size 587.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4f27b2621564e0db3728578f7bfc063398b2c58bba1ceb1a928aa06ab2e735a2
BLAKE2b-256 checksum
How to use checksums
4adc6243cc728600d815a4573139e71a8469c1a2faddaaa55dda752620396de5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-win_amd64.whl

Download URL yticker-0.1.4-cp310-cp310-win_amd64.whl
Size 555.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
bbfe087ee0896eea81bbae66dcc10e5267fe3ad225da4c3869d44b33dee34e01
BLAKE2b-256 checksum
How to use checksums
d79e862c340fe9eec49bc741b88eb93ee907bf76845c8848721c7c7fcd9e3b8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-win32.whl

Download URL yticker-0.1.4-cp310-cp310-win32.whl
Size 527.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
18704e9a329644bd5b4201c0f049122c5cb7b7716dd899cb5c97df22bdb546f4
BLAKE2b-256 checksum
How to use checksums
65401f134747289e20e2254aff7c765381239d6073adfc28a2c9321b471530fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL yticker-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
28ca2d9d5b1a63072e8a355cbc25b35821feeb53c2873129104cce091e639ab8
BLAKE2b-256 checksum
How to use checksums
6e8e9faf920c451cf32fe30a5d7be294146126bf7290c1d9c2645b1d5a19cce5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-musllinux_1_2_i686.whl

Download URL yticker-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Size 1.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
bb3488a73295a09418b340b360d9f197f7a0b2e77d8d19d9563e7d9fd1ab7709
BLAKE2b-256 checksum
How to use checksums
a7ae058bcfa5ecbc00aaedbfcbc1da959eb7405bd4fba85012d9be32374eafc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yticker-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f272252e2c6b92b334ee6557fa3bc8e979f15c0195131b86951c8fac383923cc
BLAKE2b-256 checksum
How to use checksums
d84cb5df837253f87caa654c87f993af12bebfd129b1cd98de9f0e98f51fe739
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yticker-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5d2d91e2fefec1bcb0fad8e3579245f48d8df06c078f68d1b12e800de6f076a8
BLAKE2b-256 checksum
How to use checksums
ba81f2452ba3e5a19de1e8df5f19fc439b49276b634484d9cae9c209d8c1a5cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-macosx_11_0_arm64.whl

Download URL yticker-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Size 572.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
319ab5bd9dbb9b0cf505123a37c51060c8613ee3caba258d6bb742ed45a15c96
BLAKE2b-256 checksum
How to use checksums
1d522c3b364ca94ba9eacd6ae9e8224df4e364f9ab47aa29f155299a9280bfb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl

Download URL yticker-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Size 585.4 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2dc5e2050dec2fed687874d07d84113d0e87e870ac9bce0d3a751c57e7ef9d2d
BLAKE2b-256 checksum
How to use checksums
502ca16a1247be670cbdb33266c0f8b9977e0205f1edecbcfa19a11fd5fb775f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-win_amd64.whl

Download URL yticker-0.1.4-cp39-cp39-win_amd64.whl
Size 556.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c12a5310ba3ab8381e76d819ede37b4d53041b22b053f9c1ffd0ebb28dfb48d3
BLAKE2b-256 checksum
How to use checksums
572181d352b8d406040b5cc86b6afa2190a44cb9381d8b7e75aac1854cbece0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-win32.whl

Download URL yticker-0.1.4-cp39-cp39-win32.whl
Size 528.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
cd50264955604bb8aff94b272d78c8e4d988f1be1ac1706b26373e9f6862b767
BLAKE2b-256 checksum
How to use checksums
d099cc74cc98d2879e7af41f0c0fc9159277f7954cb3fcb2be15ac6bc8567952
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL yticker-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
abda311fe97e9c91744527a30b2aca8ef524ede789374c654bd0b6d0c7ca193d
BLAKE2b-256 checksum
How to use checksums
0d1d7f5e0fe4bf70c6f005af09394f54922f4827c84dbe44b61913309b105055
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-musllinux_1_2_i686.whl

Download URL yticker-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Size 1.6 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2c09885cd10403061362e77c3a5609c9046035ae984b0c7ed0d04e03dbc27c1a
BLAKE2b-256 checksum
How to use checksums
7daa3e82163addae4b3b7459678fbfb059b1a36c0a46c4c764858cbafb027f45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yticker-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1411b22e11d2dcbd892d2fccb16b1c75706055ada698b03102abe5f9d7e046d9
BLAKE2b-256 checksum
How to use checksums
626b456a2097778654dbc3777d6d957fb545e36014eaac9e279c9d382b096b0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yticker-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
97e2656928baaff9ab554c993b42f6514e364b8c5d0f74009d9005c1cf115698
BLAKE2b-256 checksum
How to use checksums
861d55b6e39a5391c93cfac26f1fbba9f3fd9877f856e89ec4e1c5059af2552f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-macosx_11_0_arm64.whl

Download URL yticker-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Size 573.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
11edad6eb5875921623cd5d93ff507d4ad4ab45a8f9d190442c49ab41d215a12
BLAKE2b-256 checksum
How to use checksums
9fb52fed784fbe8c994e8955c3f2913cbc0f00705faeda91d2e6097a03ef03e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl

Download URL yticker-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Size 586.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
836026db003f5b499ce5996aeafbed00c9b1e5d58530ed03fd048331378ea4d5
BLAKE2b-256 checksum
How to use checksums
1711539ea9b6c5ad08a3653bf168bbb99c3840be4ffc263d3028621b5734c8a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-win_amd64.whl

Download URL yticker-0.1.4-cp38-cp38-win_amd64.whl
Size 556.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6ca2ecf24db72552334ee8424f6bbe2ec0b5cfe8de4c5d6d4c375381d82cdf51
BLAKE2b-256 checksum
How to use checksums
c13464d5716270353285549ee5a336068091241423f761513945ddcd87c5a076
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-win32.whl

Download URL yticker-0.1.4-cp38-cp38-win32.whl
Size 528.3 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
41719841a029436fef7d7fcf2733f6dd769ad03d87d514816f780b7b952436bc
BLAKE2b-256 checksum
How to use checksums
de39714d30254850f76eefb1111afea2abcb1d0e5ff617d29b1540fc1c8723b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL yticker-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
126060cac792c9f41addf8f306bdbe186768ce31d9bb9b02833781d9b648620f
BLAKE2b-256 checksum
How to use checksums
0a49ca77a53bf03bdcad78916a4e22172a4560ec71735a99955bbcaaffd94e1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-musllinux_1_2_i686.whl

Download URL yticker-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Size 1.6 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3f90a59169e927a094b6956e6e1043c6f7107857a69198be923145252bb12a4f
BLAKE2b-256 checksum
How to use checksums
a1019e7ffa44aceeb45f633c43c60b340e41910a4d269ce83e33383810bf442c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yticker-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
af4d18f148d3ea9ef8f39886fe240047ce6b9d1801da060f032ba6ff31caede6
BLAKE2b-256 checksum
How to use checksums
deaf0aea897779fb1a89773c6956e817bee402415f151750a3a31c631e3f7f89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yticker-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.7 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e3ed86c9d9db59358979160a68a8b93ff2abbfdebef068272fb8ac19e2211990
BLAKE2b-256 checksum
How to use checksums
73d0ea831603c70e1f2535716dda8d2173572a36a1593611bfa211f31e8cf94e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-macosx_11_0_arm64.whl

Download URL yticker-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
Size 574.0 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a79aea727372c2137f89670e053a4394884e983f25467447f3c58e9c6bdb27ff
BLAKE2b-256 checksum
How to use checksums
9f4ea332def49a4db0d0449648992662dc553733e5e06710c3dc51b68d0038a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release files / yticker-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl

Download URL yticker-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Size 587.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e8ef4f2e8e09baa38a51b38aa66db7fd62fd58459642fcb794b14f53344b32a1
BLAKE2b-256 checksum
How to use checksums
635e3b1a97c6c84ee061ba619d6675f8df142089aa1741d5fc60a30fb3ac11c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.12.3

Release history Release notifications | RSS feed

This release

0.1.4 This release

49 release files

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page