Skip to main content

KyTea wrapper for Python

PyPI version

Mykytea-python is a Python wrapper module for KyTea, a general text analysis toolkit. KyTea is developed by KyTea Development Team.

Detailed information on KyTea can be found at: http://www.phontron.com/kytea

Installation

Install Mykytea-python via pip

You can install Mykytea-python via pip.

pip install kytea

You don't have to install KyTea anymore before installing Mykytea-python when you install it by using wheel on PyPI.

You should have any KyTea model on your machine.

Build Mykytea-python from source

If you want to build from source, you need to install KyTea.

Then, run

make

After make, you can install Mykytea-python by running

make install

If you fail to make, please try to install SWIG and run

swig -c++ -python -I/usr/local/include mykytea.i

Or if you still fail on Max OS X, run with some variables

$ ARCHFLAGS="-arch x86_64" CC=gcc CXX=g++ make

If you compiled kytea with clang, you need ARCHFLAGS only.

Or, you use macOS and Homebrew, you can use KYTEA_DIR to pass the directory of KyTea.

brew install kytea
KYTEA_DIR=$(brew --prefix) make all

How to use it?

Here is the example code to use Mykytea-python.

import Mykytea

def showTags(t):
    for word in t:
        out = word.surface + "\t"
        for t1 in word.tag:
            for t2 in t1:
                for t3 in t2:
                    out = out + "/" + str(t3)
                out += "\t"
            out += "\t"
        print(out)

def list_tags(t):
    def convert(t2):
        return (t2[0], type(t2[1]))
    return [(word.surface, [[convert(t2) for t2 in t1] for t1 in word.tag]) for word in t]

# Pass arguments for KyTea as the following:
opt = "-model /usr/local/share/kytea/model.bin"
mk = Mykytea.Mykytea(opt)

s = "今日はいい天気です。"

# Fetch segmented words
for word in mk.getWS(s):
    print(word)

# Show analysis results
print(mk.getTagsToString(s))

# Fetch first best tag
t = mk.getTags(s)
showTags(t)

# Show all tags
tt = mk.getAllTags(s)
showTags(tt)

License

MIT License

Release files for kytea 0.1.11

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

Source distribution (sdist)

Source distribution for kytea 0.1.11
File Size Uploaded
kytea-0.1.11.tar.gz 79.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for kytea 0.1.11
File
kytea-0.1.11-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
kytea-0.1.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
kytea-0.1.11-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
kytea-0.1.11-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
kytea-0.1.11-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
kytea-0.1.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
kytea-0.1.11-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
kytea-0.1.11-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
kytea-0.1.11-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
kytea-0.1.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
kytea-0.1.11-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
kytea-0.1.11-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
kytea-0.1.11-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
kytea-0.1.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
kytea-0.1.11-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
kytea-0.1.11-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
kytea-0.1.11-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
kytea-0.1.11-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
kytea-0.1.11-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
kytea-0.1.11-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 36.3 MB

Release files / kytea-0.1.11.tar.gz

Download URL kytea-0.1.11.tar.gz
Size 79.4 kB
Tags Source
SHA-256 checksum
How to use checksums
4ee7b16c1d742da2d3e8bb669183fd4418f1c8ec502d80191352d62c46e4700f
BLAKE2b-256 checksum
How to use checksums
3530cd5ea8acc9ed24208c52183ad36f80aba8311bb174725676e2375631d972
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 30, 2026.

Transparency log

Release files / kytea-0.1.11-cp314-cp314-win_amd64.whl

Download URL kytea-0.1.11-cp314-cp314-win_amd64.whl
Size 328.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
7469b5230a54a16614c920bc3242e043796ba2d15a8e92061c92a3ec6ef791c9
BLAKE2b-256 checksum
How to use checksums
c724a5e605b27e027d742d08c488ac4f0afe02570969cb39211bb63603ecb392
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 30, 2026.

Transparency log

Release files / kytea-0.1.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL kytea-0.1.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.6 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ae9813a7777f63b59213965c9d9ff774e4055660e09779d5885497506e497ed6
BLAKE2b-256 checksum
How to use checksums
b38e3357c33d712e2a642e06679da547e3281fcead98af543d1b79287338f35f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp314-cp314-macosx_11_0_arm64.whl

Download URL kytea-0.1.11-cp314-cp314-macosx_11_0_arm64.whl
Size 661.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8b3966c79a460480843869576ebabf629ec9a8ce3dfdbd321aa9ee8b923a83dc
BLAKE2b-256 checksum
How to use checksums
2c86127e2cc0b7c9b9c12fb3701d592a7923f4f501d6e355a533369f4f6c5f07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp314-cp314-macosx_10_15_x86_64.whl

Download URL kytea-0.1.11-cp314-cp314-macosx_10_15_x86_64.whl
Size 681.3 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
33d2cc694b52f4658c99c69f820ad4fff1da1292d97188b717e7c8db4ae60702
BLAKE2b-256 checksum
How to use checksums
c0a3bfb87e976f29d7de86da46c3e210070c5da7be9917705b8a9aa3407f7c0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp313-cp313-win_amd64.whl

Download URL kytea-0.1.11-cp313-cp313-win_amd64.whl
Size 320.6 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7e14c89809e22c77f5c1c2a54bd17a37c126418e1b630e7ea2e95a9da610c557
BLAKE2b-256 checksum
How to use checksums
c204a505eed50bdec039865f9ea232089d7b6dddbe58cbc668b76a385f54fe94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 30, 2026.

Transparency log

Release files / kytea-0.1.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL kytea-0.1.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.6 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a5ddefdad86724a7dbfaa80bc35d15100e75eb5c5ce6301414b2b5895e3ebd84
BLAKE2b-256 checksum
How to use checksums
4d110970237c66da409a91eef1a4f88b6220e0961147b67f01c06423f0d5a288
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp313-cp313-macosx_11_0_arm64.whl

Download URL kytea-0.1.11-cp313-cp313-macosx_11_0_arm64.whl
Size 661.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
00d0883fac1bb36d1be9eab8dbcd01cf7597f96722a82ddb47f7745dccbd7878
BLAKE2b-256 checksum
How to use checksums
c65ef7375ff13db4ea3787c3eee28fcf9941815219eca850cd11cdb754cb777f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp313-cp313-macosx_10_13_x86_64.whl

Download URL kytea-0.1.11-cp313-cp313-macosx_10_13_x86_64.whl
Size 681.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
668425d61ad928558a9d26562b3f3ac6412045b5db7f6905fcdb0c558d33d4a4
BLAKE2b-256 checksum
How to use checksums
12c14a476603f2577b8599512e0b0a92e64e58e4a7d47de185c08cb61a1b2ef9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp312-cp312-win_amd64.whl

Download URL kytea-0.1.11-cp312-cp312-win_amd64.whl
Size 320.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
16baf79059a2f259ee5e2398acdbab346b239825597ce0fa91219c5b387ab5d4
BLAKE2b-256 checksum
How to use checksums
397b8e39c00c96fa8851c77931f39dc6517578fd70c91a0cfbce846d46816603
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 30, 2026.

Transparency log

Release files / kytea-0.1.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL kytea-0.1.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.6 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c58b0210e4d1d4e8f21ee7a4edc832ec96906b2002b3bc57e7b3787df8981e21
BLAKE2b-256 checksum
How to use checksums
8c5882bc50b8cdfac94ce18feb04ce0fa58b5e696eaa2b30a75c749bd7b91d01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp312-cp312-macosx_11_0_arm64.whl

Download URL kytea-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
Size 661.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2211b940ed6c5d8102e0c19f986ae1576eb57ee665706c8fa6da276578a7d7ca
BLAKE2b-256 checksum
How to use checksums
0c09e07bdaaa12c6a21a89fdc27cb70b40a4973d91d0507395776269a67a0385
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp312-cp312-macosx_10_13_x86_64.whl

Download URL kytea-0.1.11-cp312-cp312-macosx_10_13_x86_64.whl
Size 681.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
0ac1e1efdc71ba73b0b18a459c296a8938d8114d7945d1bbcbd76ca839daca3e
BLAKE2b-256 checksum
How to use checksums
a5219119bdb3fe8686f7aa1fdc889fc4067ea95bee2490ec7fa04876cd8044ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp311-cp311-win_amd64.whl

Download URL kytea-0.1.11-cp311-cp311-win_amd64.whl
Size 320.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
027c03dae015f9368107f3b5cb8ebfa22dc98e2cb724f5ea63ccb0ba02664a16
BLAKE2b-256 checksum
How to use checksums
4051dfe67c21b10aaddfb5e8db8f5dcfaf9d255ae7ca316e46bf34edde93d858
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 30, 2026.

Transparency log

Release files / kytea-0.1.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL kytea-0.1.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.6 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
16a67dd3a813c86c9f5b0cd4ccb6cfda5d13a9611c3e77be89e725d86a273329
BLAKE2b-256 checksum
How to use checksums
c06f535fc9632840686a19157e150c5197df279473020bf62bed80f05b4d3173
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp311-cp311-macosx_11_0_arm64.whl

Download URL kytea-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
Size 660.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
48ebff24ea13421a0785d2379955715bc5743fcebe1d1196691506865489d63c
BLAKE2b-256 checksum
How to use checksums
8eb38a63111589d2adfee120bba719eeffb3ec151cc967ecf6e59a1624b354d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp311-cp311-macosx_10_9_x86_64.whl

Download URL kytea-0.1.11-cp311-cp311-macosx_10_9_x86_64.whl
Size 683.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
493f6fd41aa076baa480bbb348c85514e63c17ad2172acfa35e37a3e48c3b288
BLAKE2b-256 checksum
How to use checksums
8d0061033ea15b03bc90a26b922308f042f861ef8c907a7b94613c1c7b801d04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp310-cp310-win_amd64.whl

Download URL kytea-0.1.11-cp310-cp310-win_amd64.whl
Size 320.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
570544deac378a58bc38dadf7b85f3313a09a5a961c5e3ffad4cd94228b4fde1
BLAKE2b-256 checksum
How to use checksums
41d6ddac23369160f0092c9b60ed473ddcb3ae1b18fac8d56c1c0a5f746ff517
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 30, 2026.

Transparency log

Release files / kytea-0.1.11-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL kytea-0.1.11-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.6 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1ecd777b3cae8a62072e22dba3894e304d1d3ab96560be6b7d777d3456b5b7b9
BLAKE2b-256 checksum
How to use checksums
e771384555a3e94ab9527a4005c48f04a1baacb2c09f7879d7d365cab0a93bfd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp310-cp310-macosx_11_0_arm64.whl

Download URL kytea-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
Size 660.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3b162c53415a0791a577e7a96a83566d0b7941ae877199dbe97ee93783ca4d68
BLAKE2b-256 checksum
How to use checksums
2c42104b08d742e8617ddd83052f4ef44250105d0e18f7cc60f8164f16e0fda6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log

Release files / kytea-0.1.11-cp310-cp310-macosx_10_9_x86_64.whl

Download URL kytea-0.1.11-cp310-cp310-macosx_10_9_x86_64.whl
Size 683.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b125401a8172810963ebd7dcd65b7111ed237f23e8bfb15edadbd843328090f5
BLAKE2b-256 checksum
How to use checksums
58c7b355dd7ecf4ed9143d6fc5591ac8ecbd5ca0966b8cb2f508968d9d148452
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 29, 2026.

Transparency log
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