Skip to main content

TickMarker widget, used to mark intervals.

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kivy_garden.tickmarker-3.0.1.tar.gz (10.9 kB view details)

Uploaded Source

Built Distributions

kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl (29.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl (27.4 kB view details)

Uploaded CPython 3.10 Windows x86

kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (147.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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 (146.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl (28.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl (50.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl (29.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl (27.4 kB view details)

Uploaded CPython 3.9 Windows x86

kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (146.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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 (145.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl (28.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl (50.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl (29.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl (27.4 kB view details)

Uploaded CPython 3.8 Windows x86

kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (146.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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 (148.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl (28.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl (50.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl (29.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl (27.2 kB view details)

Uploaded CPython 3.7m Windows x86

kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (134.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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 (135.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (29.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file kivy_garden.tickmarker-3.0.1.tar.gz.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1.tar.gz
Algorithm Hash digest
SHA256 170aad97a1dfdcba234b922d562fe574310dcc6c1330977a141b29e0b8ad5563
MD5 5f25154f18942d7d0f9af36ef40e3870
BLAKE2b-256 144efe9b31534f27b64a2115b8adc95a782ade7fb1c949114efecaee2f2d26fb

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 baf63909224936d1292040b67a6a6ec94e95864894a9cac557c7a5ccd74e785f
MD5 71f1bbd508dc46e8288d520bd644bd0d
BLAKE2b-256 f435e52af6f133265260cd1bbb9422787ff94a2bc4d8375d796ec684790cbf87

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e1bdd4412799b5cda69b0fa8838833969e3eaaefc806d8a977c96d36fc775aa4
MD5 4f39235f9f2ef13bbe03e664d76a98c5
BLAKE2b-256 0b341142454871d91cac956796193609c6c99551a994f1f4ca3164987d93e91a

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23d36729a86c7ecb0ae458ee5237234c50e99de08203e471d690d14bc5f923c2
MD5 9e2d5f1c8dbd9e6b1b8744a1192f3942
BLAKE2b-256 87067f10065fa3c8af288226aae6d651cd65df3d630766a5a8cbc0acc774d5e3

See more details on using hashes here.

File details

Details for the file 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.

File metadata

File hashes

Hashes for 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
Algorithm Hash digest
SHA256 43e0c7eda2b45f23ffb332d7c663a0ded8b1a60fb21b32ed64600f4c98207f73
MD5 8d00cc11e9f678605db47763bb341240
BLAKE2b-256 228ed8879ee2ba54bfed116975cfb856aaf02cdb532adeea6eab306e133eee2a

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.1 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 695eff09d34d7ded4844d02cca32b10c696bca47112f85e7056a286d6d4e5965
MD5 0e128b4880acf2a60514fbaf3ecaee1f
BLAKE2b-256 08a7b080abbbac32fc6661dd3f4c245414576545fb5fcd583f478db2a5e6de83

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 784c74d0a2be85043dc2c14ef1192ac8b762a10af7cb1769d5b03da3f50219bc
MD5 f812967d7d91ef00580ecbfbfce7c21a
BLAKE2b-256 4a716e0b8fd069272e3fe176ac2daced2fa7ef96cd64a82a41f581a5eaa8bddb

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 275167755743bc8ab42d58fd73255c205de6f961810aaad2ad864be263cafec5
MD5 ce17828c969ba69f359033abaccf23e3
BLAKE2b-256 282709ee5ae051fc2f13f3c07e24087f7043b18cf2ea1c22f27b7901d7608ee7

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bb5d47d961fb63b947ebd8d6bf84b70d9b83e9d34c226fbe2077fabeff50b0b
MD5 cb5b3f818bb8ff998caf9f849ee2987b
BLAKE2b-256 7db293dd7ddab3e33dd4b5ce08750ae2075581b591f9d5763b47467a95594751

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 33367da61b66b100543a86cb4615d587b7dab4c0704dd4886032bdf761045b86
MD5 a937d9508819f7d05973045511a0b85f
BLAKE2b-256 e7662cc896328c7211e9678aad06dafd6871b96f8981864d0a0c350f23b826b2

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d2a94ae10813ab0f909c565a0a67df24ab41991f44d664bae1ff7a4df58a236
MD5 c9253dec28d7dd58ba00208be7a3e585
BLAKE2b-256 46488f6e1d7e591b19022aee75bf6d40de253dfa926cdc60cd7c25cedba0e661

See more details on using hashes here.

File details

Details for the file 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.

File metadata

File hashes

Hashes for 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
Algorithm Hash digest
SHA256 ce9c94488c0bfccf9818c14a907833d70136122054eb027261c450cab34b2144
MD5 8038b1c2c3f24776bdb3fa0f5e5ce478
BLAKE2b-256 69122979c135a612545615da8cae083acbd7888cbeb758ceb571a30fa029d972

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a901f0ed3fb825b907d28eb0a98cd97bbaf31a8447b1a2b4faabbd9c82a38d38
MD5 4bbe2dcc251b060a80caa5e6d15f0f70
BLAKE2b-256 1ea26007450ec24f2a383a9ed49359b3efbd94ef9a28a3ba073b0637557f03b1

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 693746ca6b4eafa56d352836f25b26c0706aac96f3dd74ecc28a6b925fdc2282
MD5 78e4c79ee2f102e7a4fbb4eb7fbf72c5
BLAKE2b-256 132dd17124e3cf7c5654b0bd4278c53e5b92c6a888cb0561314aa10bfba10f23

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dbdd34cdc8b8aace65f4671d91f2a604fbed1587978790a9f9b66adc476118f7
MD5 2b7be80bf9ff5c10bc6f583e4b911a89
BLAKE2b-256 a2b574ed7b80c6568d2733fa793af9c13aa4964602dced06e6135606d8eabda2

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 29.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eb7fa955f86c935612267669db80c6ef31c451c6a994ff2e2b51ffd3d5cd4936
MD5 1123d9a92bf04c8764b8cf409972c6d3
BLAKE2b-256 27fed8d6f1ff5d81fef83a6dc65c0e3f8636da53683a9d68d7b43768f572b2ad

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b5c9505557816b49e03aa751e687fc79e5ade74f5893c5aa5eef99237de4f79d
MD5 af091aedbf75613280e18634472767b4
BLAKE2b-256 4da7da102f1aa45a4fb23a96193ceb91f67bd1eea8731d52e5c1edd6ac157cee

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69725b65d7c7c4409a302b7a4ade8e239fa19bccb10de0ac56a2d363da863cd1
MD5 941838511a0878aaee5bfe2218072f39
BLAKE2b-256 15ed059fb21c67ca5d3be4f6bc33996fc58b13488f9a6e38f84899fe8d2ac4b3

See more details on using hashes here.

File details

Details for the file 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.

File metadata

File hashes

Hashes for 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
Algorithm Hash digest
SHA256 b7a94bd0694b93e7e55b8563406f7257e71e39d66c2d1931c360e8101a303ff0
MD5 383bc6140f6f1b323678aecbf5dbb4fa
BLAKE2b-256 70c77704f1028bb0f55277f95e46152e4167e2b38df2dca0240f0da9b60fa2b3

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.2 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 787a8390a41267d7bd1e08a739354fbf203e8eddfec36c87dd551ef13600363c
MD5 52bf139e2184709854de5a07c6d16a52
BLAKE2b-256 868eeca76a8dbe3b1acfff301569b46e585ce8d6472b57d766fe95e4f30c53ca

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1370a6c3435490a401f810f2d41de26496e6dcaafe05127406c1a7a4751397e6
MD5 f02cb77b9465d465786964e78815f628
BLAKE2b-256 ee862c963f14ebffb1a759abb6aea509c438a080297f3cfde35cf779cc588bc0

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eb3dc53f54771712918f0e2a8dad4ff8dc23783338aad2522bab5f2840beac1e
MD5 a9bef1c657a1aedd8c29be14b3d9a304
BLAKE2b-256 d8c6a70244a1182ba7599481957daf8bba8173fbcafbae98753973495cc8e4d0

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 29.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ec08712bf2985fba5429684bf9d586ce3e26d5744af19ecb6a1c869da0ab6179
MD5 f117ade0a0b7554f1da9665de9ef1775
BLAKE2b-256 6c0253681f215dcf92207a86c128faf3953f515922f327c4773afe3a11de8888

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ca4be2bcca57c7871928cc2827b8d2909ade1ad1322746eb26b16edce510dc23
MD5 bd104023dd455b1152eee2522e28ed0a
BLAKE2b-256 86f465e62db2c381146c8e8f11e5270cac76af348f24fd2b032233ecb74f3f41

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa519a1a042fadd242f66cc086a61d67daa2d1f357fa750b111697693ed597bc
MD5 926457a9578a881d181f5a06dbd71b99
BLAKE2b-256 6ca0d723fa45ebcb6472411144344e3615adbc714304ddaea58cc4afbb4675d3

See more details on using hashes here.

File details

Details for the file 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.

File metadata

File hashes

Hashes for 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
Algorithm Hash digest
SHA256 1558e9e9246dc79d15f44fde4963f1172211ea5c3ed37bc0aea704b792953d00
MD5 8da84dae00b7276c8c2cd86b525f1b8f
BLAKE2b-256 e65af6f0d37af9319abee8c8fa354047937436f6f0958e4afff8dfdd2da7181f

See more details on using hashes here.

File details

Details for the file kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 29.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using 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

File hashes

Hashes for kivy_garden.tickmarker-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 418138e1843b71d67df05db232c5d438e2f38fb17ceaa1d0d5d003c41b59c702
MD5 bcbfa62bad2433c0606a9166b475154b
BLAKE2b-256 ac317d5b40d206c1a737c62479ecb48377d1b6d2fb8e25eaf9406248999f4412

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page