Skip to main content

No project description provided

Project description

jagger-python

Python binding for Jagger(C++ implementation of Pattern-based Japanese Morphological Analyzer) : https://www.tkl.iis.u-tokyo.ac.jp/~ynaga/jagger/index.en.html

Install

$ python -m pip install jagger

This does not install model files.

You can download precompiled KWDLC model from https://github.com/lighttransport/jagger-python/releases/download/v0.1.0/model_kwdlc.tar.gz (Note that KWDLC has unclear license/TermOfUse. Use it at your own risk)

Example

import jagger

model_path = "model/kwdlc/patterns"

tokenizer = jagger.Jagger()
tokenizer.load_model(model_path)

text = "吾輩は猫である。名前はまだない。"
toks = tokenizer.tokenize(text)

for tok in toks:
    print(tok.surface(), tok.feature())
print("EOS")

"""
吾輩    名詞,普通名詞,*,*,吾輩,わがはい,代表表記:我が輩/わがはい カテゴリ:人
は      助詞,副助詞,*,*,は,は,*
猫      名詞,普通名詞,*,*,猫,ねこ,*
である  判定詞,*,判定詞,デアル列基本形,だ,である,*
。      特殊,句点,*,*,。,。,*
名前    名詞,普通名詞,*,*,名前,なまえ,*
は      助詞,副助詞,*,*,は,は,*
まだ    副詞,*,*,*,まだ,まだ,*
ない    形容詞,*,イ形容詞アウオ段,基本形,ない,ない,*
。      特殊,句点,*,*,。,。,*
EOS
"""

# print tags
for tok in toks:
    # print tag(split feature() by comma)
    print(tok.surface())
    for i in range(tok.n_tags()):
        print("  tag[{}] = {}".format(i, tok.tag(i)))
print("EOS")

Batch processing(experimental)

tokenize_batch tokenizes multiple lines(delimited by newline('\n', '\r', or '\r\n')) at once. Splitting lines is done in C++ side.

import jagger

model_path = "model/kwdlc/patterns"

tokenizer = jagger.Jagger()
tokenizer.load_model(model_path)

text = """
吾輩は猫である。
名前はまだない。
明日の天気は晴れです。
"""

# optional: set C++ threads(CPU cores) to use
# default: Use all CPU cores.
# tokenizer.set_threads(4)

toks_list = tokenizer.tokenize_batch(text)

for toks in toks_list:
    for tok in toks:
        print(tok.surface(), tok.feature())

Train a model.

Pyhthon interface for training a model is not provided yet. For a while, you can build C++ trainer cli using CMake(Windows supported). See train/ for details.

Limitation

Single line string must be less than 262,144 bytes(~= 87,000 UTF-8 Japanese chars).

Jagger version

Jagger version used in this Python binding is

2023-02-18

For developer

Edit dev_mode=True in to enable asan + debug build

Run python script with

$ LD_PRELOAD=$(gcc -print-file-name=libasan.so) python FILE.py

or

$ LD_PRELOAD=$(clang -print-file-name=libclang_rt.asan-x86_64.so) python FILE.py

Releasing

Version is created automatically using setuptools_scm.

  • tag it: git tag vX.Y.Z
  • push tag: git push --tags

TODO

  • Provide a model file trained from Wikipedia, UniDic, etc(clearer & permissive licencing&TermOfUse).
    • Use GiNZA for morphological analysis.
  • Split feature vector(CSV) considering quote char when extracting tags.
    • e.g. 'a,b,"c,d",e' => ["a", "b", "c,d", "e"]
  • Optimize C++ <-> Python interface

License

Python binding is available under 2-clause BSD licence.

Jagger and ccedar_core.h is licensed under GPLv2/LGPLv2.1/BSD triple licenses.

Third party licences

  • stack_container.h: BSD like license.
  • nanocsv.h MIT license.

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

jagger-0.1.20.tar.gz (606.7 kB view details)

Uploaded Source

Built Distributions

jagger-0.1.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (177.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jagger-0.1.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (177.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jagger-0.1.20-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (177.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jagger-0.1.20-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp312-cp312-win_arm64.whl (141.8 kB view details)

Uploaded CPython 3.12 Windows ARM64

jagger-0.1.20-cp312-cp312-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

jagger-0.1.20-cp312-cp312-win32.whl (133.4 kB view details)

Uploaded CPython 3.12 Windows x86

jagger-0.1.20-cp312-cp312-musllinux_1_1_x86_64.whl (707.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp312-cp312-musllinux_1_1_i686.whl (767.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

jagger-0.1.20-cp312-cp312-musllinux_1_1_aarch64.whl (692.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jagger-0.1.20-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (199.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

jagger-0.1.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (185.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp312-cp312-macosx_11_0_arm64.whl (151.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jagger-0.1.20-cp312-cp312-macosx_10_9_x86_64.whl (157.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

jagger-0.1.20-cp312-cp312-macosx_10_9_universal2.whl (266.4 kB view details)

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

jagger-0.1.20-cp311-cp311-win_arm64.whl (143.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

jagger-0.1.20-cp311-cp311-win_amd64.whl (147.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

jagger-0.1.20-cp311-cp311-win32.whl (134.9 kB view details)

Uploaded CPython 3.11 Windows x86

jagger-0.1.20-cp311-cp311-musllinux_1_1_x86_64.whl (708.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp311-cp311-musllinux_1_1_i686.whl (768.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

jagger-0.1.20-cp311-cp311-musllinux_1_1_aarch64.whl (693.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (191.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jagger-0.1.20-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (199.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

jagger-0.1.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (186.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp311-cp311-macosx_11_0_arm64.whl (153.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jagger-0.1.20-cp311-cp311-macosx_10_9_x86_64.whl (159.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

jagger-0.1.20-cp311-cp311-macosx_10_9_universal2.whl (270.9 kB view details)

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

jagger-0.1.20-cp310-cp310-win_arm64.whl (143.1 kB view details)

Uploaded CPython 3.10 Windows ARM64

jagger-0.1.20-cp310-cp310-win_amd64.whl (146.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

jagger-0.1.20-cp310-cp310-win32.whl (134.2 kB view details)

Uploaded CPython 3.10 Windows x86

jagger-0.1.20-cp310-cp310-musllinux_1_1_x86_64.whl (707.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp310-cp310-musllinux_1_1_i686.whl (767.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

jagger-0.1.20-cp310-cp310-musllinux_1_1_aarch64.whl (692.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jagger-0.1.20-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (198.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

jagger-0.1.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp310-cp310-macosx_11_0_arm64.whl (152.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jagger-0.1.20-cp310-cp310-macosx_10_9_x86_64.whl (158.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

jagger-0.1.20-cp310-cp310-macosx_10_9_universal2.whl (267.8 kB view details)

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

jagger-0.1.20-cp39-cp39-win_arm64.whl (142.9 kB view details)

Uploaded CPython 3.9 Windows ARM64

jagger-0.1.20-cp39-cp39-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

jagger-0.1.20-cp39-cp39-win32.whl (134.3 kB view details)

Uploaded CPython 3.9 Windows x86

jagger-0.1.20-cp39-cp39-musllinux_1_1_x86_64.whl (707.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp39-cp39-musllinux_1_1_i686.whl (767.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

jagger-0.1.20-cp39-cp39-musllinux_1_1_aarch64.whl (693.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jagger-0.1.20-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (198.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

jagger-0.1.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (185.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp39-cp39-macosx_11_0_arm64.whl (152.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jagger-0.1.20-cp39-cp39-macosx_10_9_x86_64.whl (158.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

jagger-0.1.20-cp39-cp39-macosx_10_9_universal2.whl (268.1 kB view details)

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

jagger-0.1.20-cp38-cp38-win_amd64.whl (146.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

jagger-0.1.20-cp38-cp38-win32.whl (134.1 kB view details)

Uploaded CPython 3.8 Windows x86

jagger-0.1.20-cp38-cp38-musllinux_1_1_x86_64.whl (707.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp38-cp38-musllinux_1_1_i686.whl (767.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

jagger-0.1.20-cp38-cp38-musllinux_1_1_aarch64.whl (692.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jagger-0.1.20-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (198.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

jagger-0.1.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp38-cp38-macosx_11_0_arm64.whl (152.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jagger-0.1.20-cp38-cp38-macosx_10_9_x86_64.whl (158.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

jagger-0.1.20-cp38-cp38-macosx_10_9_universal2.whl (267.5 kB view details)

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

jagger-0.1.20-cp37-cp37m-win_amd64.whl (147.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

jagger-0.1.20-cp37-cp37m-win32.whl (134.7 kB view details)

Uploaded CPython 3.7m Windows x86

jagger-0.1.20-cp37-cp37m-musllinux_1_1_x86_64.whl (710.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp37-cp37m-musllinux_1_1_i686.whl (771.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

jagger-0.1.20-cp37-cp37m-musllinux_1_1_aarch64.whl (696.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (191.7 kB view details)

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

jagger-0.1.20-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (201.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

jagger-0.1.20-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (188.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp37-cp37m-macosx_10_9_x86_64.whl (157.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

jagger-0.1.20-cp36-cp36m-win_amd64.whl (113.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

jagger-0.1.20-cp36-cp36m-win32.whl (99.7 kB view details)

Uploaded CPython 3.6m Windows x86

jagger-0.1.20-cp36-cp36m-musllinux_1_1_x86_64.whl (673.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

jagger-0.1.20-cp36-cp36m-musllinux_1_1_i686.whl (733.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

jagger-0.1.20-cp36-cp36m-musllinux_1_1_aarch64.whl (658.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

jagger-0.1.20-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (154.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

jagger-0.1.20-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (164.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

jagger-0.1.20-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (151.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

jagger-0.1.20-cp36-cp36m-macosx_10_9_x86_64.whl (119.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file jagger-0.1.20.tar.gz.

File metadata

  • Download URL: jagger-0.1.20.tar.gz
  • Upload date:
  • Size: 606.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20.tar.gz
Algorithm Hash digest
SHA256 0519a64543dc004e52af8c93b02f8f30b965edab0a8b7ca33d2c2745878b4b2b
MD5 0c515ac3e25e2956ed13946040856e76
BLAKE2b-256 7c621a70ded5b65831788407593c5af43140c5ec3aab56abe236513393b31b56

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f59c9772a5ee110b39716166f0f78a3bf303754fbd68fe2e04533c0706a0809
MD5 206879cb3acdc0ac11ff28b29f459dcf
BLAKE2b-256 8905ce5e974bf9ca0bba4e955aed2fee8b6f920dd65e226034a51ab2001e4316

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6d0a03cded8481448c27b145f796efc00a63ea863b51e8ba0534e1f4c349f74
MD5 905f8b3ae354560df2f86a72eef24294
BLAKE2b-256 1c6150f5dfe2e11894205c6793943425de62fbdbc3e85547aa209dd81cae0e82

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40a3bbb3c8803bdcf6aa637150eaad177d5d820201e102c423f6a1d04552ee2e
MD5 e071c513c4e1e5c2f99fa20fa8f67f68
BLAKE2b-256 64cfb9ce1dd2ad965124e7d700c66230b53bef72373b087b0b4178110d9e0876

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d6293c97a5b6e393b73ded67bb2fb44855e2e79f153a43273c6bdb0be776c69
MD5 d11cdb55822d97e4279f51819860a90d
BLAKE2b-256 4b7f2e6ee17a54568601fa0c96e8de2ce2e9626a26ac913d744abba709bb3da4

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 141.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 763f614662cfc8cb5fcf358cedaac372ad6f44a4e3f0b8851737a4ce52e96c0a
MD5 a2669337d18ff4d6e53c093713269234
BLAKE2b-256 332b9f5bdf1a7d7be892692198ecdaab9c0ec9521c6869fc6cc8598e02493482

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 146.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5f13d1a76976d616a05e8c5a2b4f2d9fb9ebe304d15ab0a3a33204ffbca9e8f8
MD5 eade6f1082b7c5a00efb681ab3a4b655
BLAKE2b-256 fce97f25aaf65f64e972c563be587b63cb76476f65d5ee1c1601c9a755b02fda

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp312-cp312-win32.whl
  • Upload date:
  • Size: 133.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b1c64bed3f6a7adb3262027c5b13eaf68c0689b83f727ec3b5b86fb482cb0a81
MD5 1ec08a00a12d50032a5aebfbdcd081d6
BLAKE2b-256 8fb3dc8b5170664432425130833d783a5656f1bc54a7091168a2b577e9cdd53c

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3248edb466a117fb67b133851e5a5df09180a45038b2c8848f06f1e808788bc
MD5 b2279366b586f8e9bf8fb39a1ccb6263
BLAKE2b-256 0e4128856ebcc61e03ba377757f330dbd41cf31a6d57a185fc53aa0b98f6e3b8

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f61d8e7edfad4d49e38f845dfeff364352f898bedfada65b789923d453a8d33f
MD5 cb88fc56d9a7df976c117a04fbb489a2
BLAKE2b-256 d27cafa513f281786c8066d42c5b253c30298a2932f3944a057fda031403c09b

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b6c062a5e8f10649b671b4ce2384fccbea13a0fe6c26ae9ff3b690572a36163a
MD5 edc9efaa4734c91e76c01a5ac70ce400
BLAKE2b-256 36a613816aeda16cc495f71980c37e97703a0e362214b70a046136451b4402b6

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad86fe473e10ccdab223f2d86b95a122690f69fbe28b86d173ae623aa3368a9
MD5 2bf6f60ca5ff0bee66aa4125eb4bd19e
BLAKE2b-256 dbf7233655172dbcaea319b2d26dc3104100199a2f34c0d10fba4e30b7ee75d5

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd121016f752aa998e86401c2e13db306d1f54870afc4d3a6bfc18d237927679
MD5 4cd78e90d16a0d08e6ff61b694f13263
BLAKE2b-256 dc8e9a950215b9751e27c03a7004a991d6e3ff43420b4b74dcc4968db6e4b335

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8427a314403eadba61474dae65bb7df7a26bf5d046eb4cb3b3f943f8848557d
MD5 ca91536bad765478375c6404caa9c9c4
BLAKE2b-256 cbfce83f5f404335cc96fa22a17dab79d36f05e56eec7e67deb67f562332a3fc

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f09121c31bb87395fa51a884a1f46d303f65389ee70b4427ca4c25dc153eaf4
MD5 6dbc42214f11a6f9dfbea30ff92867af
BLAKE2b-256 2c9797bf08cf6d96b7a7dd09cf9401af68a53537837d43c878b6c939697b9f7d

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e14a9069ded1da90e42f983bc1ded4e43247900e296e8f8486e973da0607c1b5
MD5 34cacef876a445194e296e01ce045f51
BLAKE2b-256 d84a73ae95932a93d73703c25c122830d579c91786fc6eacc28bfe55f4e8d6cb

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1c83d404b017bb558f71778935fef7518aceac7a4b517b142b6ac9e2b987d033
MD5 8f67e55247a3612f26595b72f3e13654
BLAKE2b-256 cdbfadb6c68fdf6c44d722012f3ce7ba60218fe1e280d772ad448d5c2b268bf1

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 143.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c908d0b95beed5379cef8c995edf2f6c1bfdbb654cba4eb567fce571d012ff9f
MD5 c3d951622e941fbf91472a2026802d95
BLAKE2b-256 9597103fb786c6870eb199aaccb2c50f4de840ed8435946501cd7cc786641b43

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 147.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 660929856844dae16d11a28f9038a287e69219e9b44168297f30cc4395a185aa
MD5 85521e5c9dfa626b44df416c6e1288e2
BLAKE2b-256 46d40b6593ce24165daab67c91708986dd403421a91f7546dd5b3e3f95263b76

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp311-cp311-win32.whl
  • Upload date:
  • Size: 134.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e2b3b3129db3379b830ecbdec0316b8c94f445dcd4f2a875f797e0dfbd0e3487
MD5 345cf9c1db2d68ce8f9a9e4c428ad499
BLAKE2b-256 92b764f205610a969430cc83208986697f190f1ca1129cc50479731f21e94051

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33c750f1e7c6d17f10570d7e2c6ced421fbc5f44f55449403e2b2dd09bb5545c
MD5 e3100653bc3f3456ad375bcc459b08d3
BLAKE2b-256 423b03d69349ff010e03b0db6787d51eb25d8ef35b28d51009a800a813089c36

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bad0b1fd8ef965a03a37ecdefe4ef7952c17581e4984fcb02bf6eaf638aad7ef
MD5 25a193c0363bf549893b588315614fc0
BLAKE2b-256 9676e9f662cd0ef3a8c4a05fc1b5566ae19d143f3f1f8fd34f2446d6279b16b1

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2009dced2f500e95c0bee5a50e3061303ae76b87a43e4d0b6795198cc00bb5e7
MD5 860194f140ee0e8857ccdbbc5c81f648
BLAKE2b-256 21373cbde5de3769ad7aea755c7bf685eaad2c917953366bdf82fe2767fd7e13

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43eda3a1716f936e12b7062b7c9777ad8abf6e7eada84497fab28eba51c901e4
MD5 5630fb6f8d20cc9edf636c21c47a7f06
BLAKE2b-256 9dabca96429ca10e62d6829bb93f4e3a6de853c45432a1c36da3ad60848fc8f7

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2029e92e43d8d3b7bcc28ac8e436e14c3befdb22b4b94e3fd96cc23b662f924c
MD5 17738439e69e5ae62ab422fe2ddd2f18
BLAKE2b-256 074dde9ca3481d3d85513bff44903ad2401f2464c148fdcaaf012e9160578ed0

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa05ecbab45b18fadc090c02727b5749ce4cae46fed5ae4652b215b58d10c5de
MD5 e7acbe9f2e59552eeec14d5f1114d7c9
BLAKE2b-256 9de0ca32408b899751fb07c4683ded986d0474319c3412785f9671d36946711d

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e0ac01ae805439a3021dc9db377142ba90e72ae2aa0fd6a6f8a23b776b045b
MD5 24ae5171827895bd961c58257c637ee5
BLAKE2b-256 6ef1ad9c12a543584625c57b0a712b90c7baf65385bc4827b6b11745a4bf1974

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9f1792ced897ad2112096d6f790aded831374fddfdf701506e43b8be7d03243
MD5 630a09f550ebb43586d062e9240fa019
BLAKE2b-256 f7c5fa5075a728133c828ef8906a8d00dc20d067d0a803c0ee5dac231b048c38

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8bc880be8b38b1d37c6cbd16a5164bbe4062c55937b1a7761848473f001fad62
MD5 add8db98670cc415c2571250844de027
BLAKE2b-256 b1752dad1cc9c36b9e30f997f62f6836ac715247796225d1e48fdda5f85b4e6e

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 143.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6df79851db76d5d3d4f255987800f2cc3ea32ae9cfd8800af83ac67f8a412099
MD5 b9bb53f08c3c3640367792a79e8af6ea
BLAKE2b-256 d166c05d01cd22b73e7372ddeb7d5157b220e1aa8f266f6b54468f0a1bccedd7

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 146.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b4a9c92d38f94ee6ffc776e8d374dec1dcc6a2d02dff635c7d97c36e463e618
MD5 cd16edf248421d89c957f14cc4bf4096
BLAKE2b-256 64953efd95b7a1085c2f546faaa0ddaadcad8efbc4814ae26c4c5cc4cc6061fc

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp310-cp310-win32.whl
  • Upload date:
  • Size: 134.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d59021260419e0adfcd1ce4365a090402502c98ecc22ac83a02f5f152698a4de
MD5 3159ce5932d2fef77241ac262f520827
BLAKE2b-256 ad842f15bc2fd6f36fe311200d9526e21be6bab4835fc76fc69fc8b0d003a72b

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66940e0ed8071cde9915232fc642e861b63a54a87b29063f523e88c8260bcbc5
MD5 cd76212884a5daac4f6afaaec2de35a9
BLAKE2b-256 3bfeb74d3dee9cf9bc860c16b9be3d20bb44840e8e28ee2cfd6713c760a5352f

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0c02e99705747f1a57aa6edf972e158ac9b263f4f50573e0564e1369c9fce401
MD5 754ce172b2e5dd660f8db2c45f1bbe64
BLAKE2b-256 c1d9cb481554ae72175bec2c9de6a6a0d78acecd576ccec966cf0374fde6e691

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aada41e342adf37474805550065252977d0e838ac3a05360a6ed35402f9322f1
MD5 c5d80fa4ba06dad75f4cc45a59ca9265
BLAKE2b-256 50353172d69ed99a5464ee3b548493e70285c2d12fee846cd96e202451590623

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41d610c49ab8a9ae32615a6411965880789de7d60cfda131b9f2dffd96618520
MD5 ef09eec51b5588049ad7c14f6681c7fa
BLAKE2b-256 3dd7ba0f470b48dcea680f07c08e3da79ce5a6db7b6a5cbf105a6767206e2fb3

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79b8a4f5840330669bae3e1046fe67a5c946731a6bbb9fdb408105c268c9521a
MD5 4833265e8099bc1bc778a52b0299b791
BLAKE2b-256 26caa980ac1946b851386a0c400b6ebe14d013fc756d6965065c866526469bc7

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f685811af4ee5170adc4a85a293fa82ce8b98a930a73b3de2bb6f3bdabbd400c
MD5 10760c397240572ef3af47f11959981f
BLAKE2b-256 e4586cdaeb89440b687d7a03cadf070d747a50d00748990bdd8a3ec96fbac0a4

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7651dab587f0ffd482f3943ca71a77166517aaeb78e685afe5aecc1b4b180baa
MD5 9d72948936434d1a6ca8beb93bd863a4
BLAKE2b-256 62edf33a574a92af725ed77d1bac7189bde67e844c6de0f59c01bea9b35f25e5

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fd858ad3cd35f5e63d446671e33e0a4a4cdde9b434d29256ac5941e8b56556f
MD5 d8b69b3796ae57faa95fd74c182ac9c7
BLAKE2b-256 aa783fd3f69d2ca4d9aac81d4e606b2caaae667ffb48f031d90d1c350e7fafa8

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ad5318e9aba9ed47777ddb501a9f11f0897b889fe582f7535fa29d532459552f
MD5 05c3038fa532e533ae5d9265d03833ec
BLAKE2b-256 c489960ccd5a1309680c966f9941b90b40c05e359fd8b3a9eb717b48a804c051

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 142.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d8ccc9bb287ce3623dcc762c4e932b5369fab483ac4352e373df01f151f7bd9a
MD5 27059a9fd91562aa7afaed3eb0141601
BLAKE2b-256 ebe90e87b7df9c378e7cc246a951a163ebe8ebdb412a638d22ac9505b7d4e75d

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 146.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4cf5ee6bec15feaa01c785f7ebd221be0315689009d9c05703a96cac89a9ac70
MD5 e7e6344b4c6127037181321c270336b1
BLAKE2b-256 44fd6aebbaedd64a64214de059779a5193672e7dc8c505cb5fb5747ea23121a2

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp39-cp39-win32.whl
  • Upload date:
  • Size: 134.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4b98825eac768382d1e3cb4708f3adf6441c451fe4c9553de0da88b0a327597
MD5 c822971384659991419e71537aae2da9
BLAKE2b-256 5801964ed43226833a7af66f1c7da2e8b0afc52720890156936727948e0e6a74

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c73956402bc620eccdf2ce1454e113c69c7408e6392101e627da404047eb6c4e
MD5 36b3f45f75f15cc0495d9005ae0dba14
BLAKE2b-256 094948f2b4a3a610312d5923d501e878579450a2bf6ff1b9316fd2c87e32fa36

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9c515b43c6e4e8893a87bccf371dcc21cece777c9b2c2520de733e65c4b1f00a
MD5 043b424a969420ae5171aafa318f208c
BLAKE2b-256 2814a111e07a10b4673dc7ac6b351342ea78090b100001daeba3bf1fef69d451

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 968770a998b5355f48b63148d3c1ab10a24e9dc73987ae71ae64a777da21e3c6
MD5 df772b0504146c06241513fecf8e29f0
BLAKE2b-256 aaa3bb5fbdc545fbca9800a811363225db9288103683f2d45c3eb406725b1641

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eab4668a2b59bddc8448e87307d1bee80189abe6f72de9bc0a2d49966976002
MD5 d3e18d4625466512ffdb55e9b9347b56
BLAKE2b-256 02e2998c23f9a54a04745f94793e23d5f1802dd507cb3ba62a6b0e2a9ffd015f

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62bda259c54cd7c0a76e773b088a79b6639acf49cda34b5cb6ef2f6b034c2ccf
MD5 bbb60a3bc5e6c572cf8d607670c7bf7b
BLAKE2b-256 ba8492594cbc7b7ae99877e1190ef3aac8fc770232cc106f2ac77d2b49a57785

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb03c30f2e1b0d499f65490000051f443e09af64197940a31dca1ea54e458303
MD5 51e366c2ead25394bd9f8404844b7ec1
BLAKE2b-256 259dbc793a04c19176270c01fba3acf02d468b1a377cee91f797ffb7f28bbaaf

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2cce4fe1b7833e42f5a1601d15b6d11401c6c4c79f6399821095815baa9354c
MD5 f311cef16d9497d7eba92136aeb97bb8
BLAKE2b-256 c5d938ca005d4974b53fc7fa87e836e92271c977014979eb87d06f7e8f412abf

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b93ec827e2b99e1e4f5983515d2d652ac979190c567c8b061ab5455210863e8
MD5 d79bad8c9cb5ad9e5ae15c5dc39c266d
BLAKE2b-256 d32dfdadb8aed851395356d18947fc572fe6254d89c476e487b05d98a5d3a544

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6b4ab610399e09718a382a8a00a39eb6eed9d1a3ade07173720c1c6f117e3898
MD5 d1ebd22c83c532e6dc25731c135de8d8
BLAKE2b-256 e3f8410153eef681ef88cad88afaf3e531a1fdf3c6fbf7d95d7322abf1112fb7

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 146.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6c2b18a6e5e8b1dd5ed972528ccfeb70e75417d104eb1eeb8ed9227af42b3dc8
MD5 b0b26a7e3c86c2956d0a45806086a9d4
BLAKE2b-256 b6cdc4c07ed7b2710a9862b03c4c37ab6c5470dedc6adaecbc02869cc08b10b6

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp38-cp38-win32.whl
  • Upload date:
  • Size: 134.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 12d247cd707c8f9266839a5a734cabc18c0e9d2fd3fec5af53e397f90cbf69e8
MD5 0653bb6c4e243ce0aa7ffda99d1afe66
BLAKE2b-256 9c7e7e12a612a02989a297078ad6f25bcad68a2820d54508353300098a6ab7a9

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c60c4b88c6b8c5e5ad963599895ab448218d62b7cb70d38b7e855597b8d457be
MD5 1e00b9356c2932723741a7bb20ccc1d0
BLAKE2b-256 28a0affbc67b5de381740f7e9f99f5f0660d9e6d876eaa0a5899bd3f52a1555c

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7839d07afd61ce310dafea0f95eb2d9d9a618086276def20181fe3ff542815b8
MD5 4f8e22b91efbad1c7ecb9c3a2802640d
BLAKE2b-256 afa0c7026abb203e8e68a95b4ad6778a51b2e32abe997c63466f3adf9c1a68b6

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 209a9b19a02b4d690b863e9c09e9442125c00cb7c9231394e2d6af6bde123b8a
MD5 15c2f88680bbaea6b3eb4045ac1de9dd
BLAKE2b-256 c12be6df302d75c2eddc7f96fab0886e76916c7438dd03cb139922ab3e1d9ee1

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26179c44a29c95e1c87106bb0b85f2c0ba85d10f8f51d98d9e8d81d661d36155
MD5 60acabcfccd9e315b29229f25617317f
BLAKE2b-256 94322e7ed1c1f3ac9fd377a5d1e6a5f078f84543b08e2aec4ea08b1f62f9251f

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d793bf640f24a85107d93d1916e197205c3e334524d2648ec6a48a7c9d2b238
MD5 b4a982bdd1a6e661d0e7ad6d3e2b6293
BLAKE2b-256 bce121fe6e738e69432f2efd004ed99ecf71cd4c06cc5ce786907da2305c4df8

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33d1cb3eb79bac2b1379cd2de40bc89317c2533f72497d9b5ea057175eea61b5
MD5 25f03ed0432ff241f16e7c29860e2900
BLAKE2b-256 34d2526796e4a1c064cc5ed712a5562c3cc928652c8d229fd26cfc7c42b8206d

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9acf97d637be92fcb8aab407df36af4e0d463bf98d464fba083a91553c6cea2
MD5 93149d8cc5c8549cea0e11f58478dc6e
BLAKE2b-256 60eecda353c7fd2ac053742364e6a75acbb417fbaa0796e5637f46b3616c832a

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 606c8be30d2ae1a81c3269edbe33d9da1787d034e5de6acc0d95022bf4b0b477
MD5 7fd0d14b7242e00c0e66bcd936fe67a4
BLAKE2b-256 f4b8a516932e226a9f993db144d47a26ebb59f15b4a4e642aa8491d3db916324

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ce452e5eb62f9a7336a7a6aa9619bf76f709126d77efac2610e7a6f4680921d0
MD5 919f686b3322512e0167dceb6424c31d
BLAKE2b-256 30e27d906d242702547c8aedad932c9f881388cad14591ab59d53aa2736921e0

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 147.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bd6139ed0d6ff469219623da110804ac0c0ab4a8d98dc3a0b8c9ebe960e37344
MD5 34033eff92114c8ad27fa6577d374c51
BLAKE2b-256 5bb2dc30235620edff21d068366377719954072bff434772a42c08f095346a77

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 134.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 653ba230397ca6b122abca504ca96244c5b89526896e08fe8ee85325b10f9866
MD5 4f3738a5d3d4b4dc49c5770785eb3de5
BLAKE2b-256 77ce89032626daa318d5b6abdbf209c08a7c849f91e698ed2efe23c615de651c

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 15813127242a2bbeb3af733e5363dba0cb88657ea61982f789dd4d065fb8ecef
MD5 94e063f59e59e4c9a1bb7e6fddb8b656
BLAKE2b-256 dd4bf126b9ca52c2a083921f1fc64bdc06ae862c1554cb2b582bc1203dff923f

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8f2e31a6b13873de9f198c8fc42bbc14dba98bf11fa28f72983a2df071f2fa8a
MD5 9043e7f34cb77666893313129ee2e6be
BLAKE2b-256 012e039fc8c2bef8e6f803b296890c0af01ef325779b924b8a36e814ec2c981f

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d137ed289d5dce06262ccde77902f5c8e7fa49ce73f4c3cc7ca68bd01ea3b280
MD5 225b074819281ec0363bf4154b3bfaa3
BLAKE2b-256 b75b8f98233153093575c975527293ed7459ec952ae6fba509bb4ca3c41022b0

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09b6cec4270a6411aff58340c354b237bbb5707ff61a0324d6cf23ea3cb9f627
MD5 e49cff794b1dfe00fc7ac830bfef843d
BLAKE2b-256 2541ed94bbb645facff869dc27fb4b3ee55ebd5a8ca00ea0e226e3b481c9958d

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ead04c1dfead10f780ea0a41c8a91728dd8e86fe96ee293c85314e6436dd433
MD5 0ec1169758d3288bacf6029a8b6c90e0
BLAKE2b-256 877d964d90f9bf4250e6f9a06c1296f4d1ceba41786fac87c5618e416763abae

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15c971eead7136a8b9fe31bcd0780613bdee2550046cbfc91c8e78527c8b6625
MD5 05e092c18803dd9c48a45f59a2cb6d4c
BLAKE2b-256 dc50d50f319ac417892311e61effaf17bf759cba2769a271b50e4cd42044d92a

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d75e17608e7f6806bc9bcc41b8dbc2f593253034924e07c480b748b0b170339
MD5 32dca7484bfdf207afdf75ea403a7260
BLAKE2b-256 550384132a46317145df4596958471746b47e861b104de2141f43fc1a87e21cf

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: jagger-0.1.20-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 113.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a00c0f5b8e8c59dfa1a44332536090822a4b3710a357ebee7efffacd0ef43684
MD5 76a2500d80e06df0c7d1f4026e8a15d7
BLAKE2b-256 3f0c3d44755dd8debb122e8dbaa85660873de9d573896baca6ee3ac7ab7646d5

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-win32.whl.

File metadata

  • Download URL: jagger-0.1.20-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 99.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 349e5a366a9444e7a0a6344d196ccdfe3d16ae9a87aef6d07d3177c55e20f6c0
MD5 a862cb0fb28ca8799bdd8a4096a937d9
BLAKE2b-256 128c775b712fbf34065c98ed4e413eb5684510e9a4504ed34d4eb485091ac325

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4b55ba586d010e68b68e7aef5e5c493a0fbd6b3890ecf451ed0885951aa58f78
MD5 834c5bc7984f309f285e86d982060e27
BLAKE2b-256 fe5683dadaea0a19371055221e34a8a6eb21c879cf3bca9b5e268caf458997d9

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9c14004acc1535676aeb33bb287b72f2e45acaa9a4243198dec4e8858b2c5283
MD5 d359fa465cc70c01a353408537d74f44
BLAKE2b-256 0d9dfebc6f99f95d59d2f11d2093f00d3eca5e13851daed87d8dfe595a03c00d

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 21a1fad58475c4f7fba011097307abebc69ef2f715ea7c0ceb9ec628046e833d
MD5 dccfdee6fa48ca5d130367a652d36bf8
BLAKE2b-256 b26caadf25289ce14760a2a27166912c9cad61c40a589a8aef2f2d946db537fd

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c899539063bddf248fd6a2c7f0123ab9386f50157ee190dc732b74816b40126
MD5 1ef1350ab848e65418c320d80bd76e16
BLAKE2b-256 7f597444c994e692266ee8432276b469b768df22069e13caa865f5aee284f3ad

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0b284b52e8b597debe32bc656c3ab456cafa54ffd65841d8791e850d84fc73f
MD5 eb42b180dc2025bc2ccb8c4180e60c3d
BLAKE2b-256 641d72c5c45edafa7f71101ef3bbfd1aff7f6724e461208bd9af4e060ce49ee3

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cd8919489dd4a5a323f98a167bac6ee50de0ca6341abf5c5121fe0daf060069
MD5 70a93b5056c49ea1758eb6c915ace24a
BLAKE2b-256 134ab2f1b314171ac5c98c954cf22edb004d965144ef61a74cff0760905be7e8

See more details on using hashes here.

File details

Details for the file jagger-0.1.20-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jagger-0.1.20-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 347b57851a065ee8ed09a9f7e4e919c46a14997004a5e5f7e94832f1f9dab2fb
MD5 dafcc2437b9feedf30fbb8a7c977cc22
BLAKE2b-256 0e6cbebf93e2d50514ec01226291ccc404a071dfc76d9d3fb9abf0b287233a24

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