Skip to main content

Tickmarker

Github Build Status

TickMarker widget, used to mark intervals.

See https://kivy-garden.github.io/tickmarker/ for the rendered flower docs.

Please see the garden instructions for how to use kivy garden flowers.

Flower information

Tickmarker exports the TickMarker widget, which places ticks in the center of the widget so that when combined with another widget e.g. a slider it marks intervals. TickMarker supports horizontal and vertical orientation, minor/major ticks and log10 representation.

For example, to create a log slider from 0.1 to 10 starting at 1 with major tick marks at every decade, and minor ticks at every 0.2 decades:

from kivy.uix.slider import Slider
from kivy.garden.tickmarker import TickMarker
class TickSlider(Slider, TickMarker):
pass
s = TickSlider(log=True, min_log=.1, max_log=10, value_log=1,
ticks_major=1, ticks_minor=5)

Or a linear slider from 10 to 200 starting at 60 with major tick marks at every 50 units from start, and minor ticks at every 10 units

s = TickSlider(min=10, max=200, value=60, ticks_major=50, ticks_minor=5)

To create a log progress bar from 10 to 1000 starting at 500 with major tick marks at every decade, and minor ticks at every 0.1 decades::

from kivy.uix.progressbar import ProgressBar
from kivy.garden.tickmarker import TickMarker
class TickBar(ProgressBar, TickMarker):
padding = NumericProperty(0)
min = NumericProperty(0)
orientation = OptionProperty('horizontal', options=('horizontal'))
s = TickBar(log=True, min_log=10, max_log=1000, value_log=500,
ticks_major=1, ticks_minor=10)

When combining with another widget such as a slider, the widget must have min, max, value, orientation, and padding fields. See the second example above as to how you would do this with a ProgressBar. When logarithmic representation is required you read and write to the numerical fields using min_log, max_log and value_log instead of min, max, and value.

Install

To install with pip::

pip install kivy_garden.tickmarker

To build or re-build locally::

PYTHONPATH=.:$PYTHONPATH python setup.py build_ext --inplace

Or to install as editable (package is installed, but can be edited in its original location)::

pip install -e .

CI

Every push or pull request run the GitHub Action CI. It tests the code on various OS and also generates wheels that can be released on PyPI upon a tag. Docs are also generated and uploaded to the repo as well as artifacts of the CI.

TODO

  • add your code

Contributing

Check out our contribution guide and feel free to improve the flower.

License

This software is released under the terms of the MIT License. Please see the LICENSE.txt file.

How to release

See the garden instructions for how to make a new release.

Release files for kivy-garden.tickmarker 3.0.1

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

Source distribution (sdist)

Source distribution for kivy-garden.tickmarker 3.0.1
File Size Uploaded
kivy_garden.tickmarker-3.0.1.tar.gz 10.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for kivy-garden.tickmarker 3.0.1
File
kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 1.7 MB

Release files / kivy_garden.tickmarker-3.0.1.tar.gz

Download URL kivy_garden.tickmarker-3.0.1.tar.gz
Size 10.9 kB
Tags Source
SHA-256 checksum
How to use checksums
170aad97a1dfdcba234b922d562fe574310dcc6c1330977a141b29e0b8ad5563
BLAKE2b-256 checksum
How to use checksums
144efe9b31534f27b64a2115b8adc95a782ade7fb1c949114efecaee2f2d26fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl
Size 29.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
baf63909224936d1292040b67a6a6ec94e95864894a9cac557c7a5ccd74e785f
BLAKE2b-256 checksum
How to use checksums
f435e52af6f133265260cd1bbb9422787ff94a2bc4d8375d796ec684790cbf87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl
Size 27.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
e1bdd4412799b5cda69b0fa8838833969e3eaaefc806d8a977c96d36fc775aa4
BLAKE2b-256 checksum
How to use checksums
0b341142454871d91cac956796193609c6c99551a994f1f4ca3164987d93e91a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 147.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
23d36729a86c7ecb0ae458ee5237234c50e99de08203e471d690d14bc5f923c2
BLAKE2b-256 checksum
How to use checksums
87067f10065fa3c8af288226aae6d651cd65df3d630766a5a8cbc0acc774d5e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 146.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
43e0c7eda2b45f23ffb332d7c663a0ded8b1a60fb21b32ed64600f4c98207f73
BLAKE2b-256 checksum
How to use checksums
228ed8879ee2ba54bfed116975cfb856aaf02cdb532adeea6eab306e133eee2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Size 28.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
695eff09d34d7ded4844d02cca32b10c696bca47112f85e7056a286d6d4e5965
BLAKE2b-256 checksum
How to use checksums
08a7b080abbbac32fc6661dd3f4c245414576545fb5fcd583f478db2a5e6de83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 30.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
784c74d0a2be85043dc2c14ef1192ac8b762a10af7cb1769d5b03da3f50219bc
BLAKE2b-256 checksum
How to use checksums
4a716e0b8fd069272e3fe176ac2daced2fa7ef96cd64a82a41f581a5eaa8bddb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl

Download URL kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl
Size 50.8 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
275167755743bc8ab42d58fd73255c205de6f961810aaad2ad864be263cafec5
BLAKE2b-256 checksum
How to use checksums
282709ee5ae051fc2f13f3c07e24087f7043b18cf2ea1c22f27b7901d7608ee7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl
Size 29.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9bb5d47d961fb63b947ebd8d6bf84b70d9b83e9d34c226fbe2077fabeff50b0b
BLAKE2b-256 checksum
How to use checksums
7db293dd7ddab3e33dd4b5ce08750ae2075581b591f9d5763b47467a95594751
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl
Size 27.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
33367da61b66b100543a86cb4615d587b7dab4c0704dd4886032bdf761045b86
BLAKE2b-256 checksum
How to use checksums
e7662cc896328c7211e9678aad06dafd6871b96f8981864d0a0c350f23b826b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 146.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2d2a94ae10813ab0f909c565a0a67df24ab41991f44d664bae1ff7a4df58a236
BLAKE2b-256 checksum
How to use checksums
46488f6e1d7e591b19022aee75bf6d40de253dfa926cdc60cd7c25cedba0e661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 145.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ce9c94488c0bfccf9818c14a907833d70136122054eb027261c450cab34b2144
BLAKE2b-256 checksum
How to use checksums
69122979c135a612545615da8cae083acbd7888cbeb758ceb571a30fa029d972
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Size 28.1 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a901f0ed3fb825b907d28eb0a98cd97bbaf31a8447b1a2b4faabbd9c82a38d38
BLAKE2b-256 checksum
How to use checksums
1ea26007450ec24f2a383a9ed49359b3efbd94ef9a28a3ba073b0637557f03b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 30.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
693746ca6b4eafa56d352836f25b26c0706aac96f3dd74ecc28a6b925fdc2282
BLAKE2b-256 checksum
How to use checksums
132dd17124e3cf7c5654b0bd4278c53e5b92c6a888cb0561314aa10bfba10f23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl

Download URL kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl
Size 50.8 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
dbdd34cdc8b8aace65f4671d91f2a604fbed1587978790a9f9b66adc476118f7
BLAKE2b-256 checksum
How to use checksums
a2b574ed7b80c6568d2733fa793af9c13aa4964602dced06e6135606d8eabda2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl
Size 29.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
eb7fa955f86c935612267669db80c6ef31c451c6a994ff2e2b51ffd3d5cd4936
BLAKE2b-256 checksum
How to use checksums
27fed8d6f1ff5d81fef83a6dc65c0e3f8636da53683a9d68d7b43768f572b2ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl
Size 27.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
b5c9505557816b49e03aa751e687fc79e5ade74f5893c5aa5eef99237de4f79d
BLAKE2b-256 checksum
How to use checksums
4da7da102f1aa45a4fb23a96193ceb91f67bd1eea8731d52e5c1edd6ac157cee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 146.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
69725b65d7c7c4409a302b7a4ade8e239fa19bccb10de0ac56a2d363da863cd1
BLAKE2b-256 checksum
How to use checksums
15ed059fb21c67ca5d3be4f6bc33996fc58b13488f9a6e38f84899fe8d2ac4b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 148.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b7a94bd0694b93e7e55b8563406f7257e71e39d66c2d1931c360e8101a303ff0
BLAKE2b-256 checksum
How to use checksums
70c77704f1028bb0f55277f95e46152e4167e2b38df2dca0240f0da9b60fa2b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
Size 28.2 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
787a8390a41267d7bd1e08a739354fbf203e8eddfec36c87dd551ef13600363c
BLAKE2b-256 checksum
How to use checksums
868eeca76a8dbe3b1acfff301569b46e585ce8d6472b57d766fe95e4f30c53ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 30.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1370a6c3435490a401f810f2d41de26496e6dcaafe05127406c1a7a4751397e6
BLAKE2b-256 checksum
How to use checksums
ee862c963f14ebffb1a759abb6aea509c438a080297f3cfde35cf779cc588bc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl

Download URL kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl
Size 50.8 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
eb3dc53f54771712918f0e2a8dad4ff8dc23783338aad2522bab5f2840beac1e
BLAKE2b-256 checksum
How to use checksums
d8c6a70244a1182ba7599481957daf8bba8173fbcafbae98753973495cc8e4d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl
Size 29.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ec08712bf2985fba5429684bf9d586ce3e26d5744af19ecb6a1c869da0ab6179
BLAKE2b-256 checksum
How to use checksums
6c0253681f215dcf92207a86c128faf3953f515922f327c4773afe3a11de8888
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl

Download URL kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl
Size 27.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
ca4be2bcca57c7871928cc2827b8d2909ade1ad1322746eb26b16edce510dc23
BLAKE2b-256 checksum
How to use checksums
86f465e62db2c381146c8e8f11e5270cac76af348f24fd2b032233ecb74f3f41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 134.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fa519a1a042fadd242f66cc086a61d67daa2d1f357fa750b111697693ed597bc
BLAKE2b-256 checksum
How to use checksums
6ca0d723fa45ebcb6472411144344e3615adbc714304ddaea58cc4afbb4675d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 135.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
1558e9e9246dc79d15f44fde4963f1172211ea5c3ed37bc0aea704b792953d00
BLAKE2b-256 checksum
How to use checksums
e65af6f0d37af9319abee8c8fa354047937436f6f0958e4afff8dfdd2da7181f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release files / kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 29.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
418138e1843b71d67df05db232c5d438e2f38fb17ceaa1d0d5d003c41b59c702
BLAKE2b-256 checksum
How to use checksums
ac317d5b40d206c1a737c62479ecb48377d1b6d2fb8e25eaf9406248999f4412
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

Release history Release notifications | RSS feed

This release

3.0.1 This release

27 release files

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