Skip to main content

⏳ tiktoken

tiktoken is a fast BPE tokeniser for use with OpenAI's models.

import tiktoken
enc = tiktoken.get_encoding("o200k_base")
assert enc.decode(enc.encode("hello world")) == "hello world"

# To get the tokeniser corresponding to a specific model in the OpenAI API:
enc = tiktoken.encoding_for_model("gpt-4o")

The open source version of tiktoken can be installed from PyPI:

pip install tiktoken

The tokeniser API is documented in tiktoken/core.py.

Example code using tiktoken can be found in the OpenAI Cookbook.

Performance

tiktoken is between 3-6x faster than a comparable open source tokeniser:

image

Performance measured on 1GB of text using the GPT-2 tokeniser, using GPT2TokenizerFast from tokenizers==0.13.2, transformers==4.24.0 and tiktoken==0.2.0.

Getting help

Please post questions in the issue tracker.

If you work at OpenAI, make sure to check the internal documentation or feel free to contact @shantanu.

What is BPE anyway?

Language models don't see text like you and I, instead they see a sequence of numbers (known as tokens). Byte pair encoding (BPE) is a way of converting text into tokens. It has a couple desirable properties:

  1. It's reversible and lossless, so you can convert tokens back into the original text
  2. It works on arbitrary text, even text that is not in the tokeniser's training data
  3. It compresses the text: the token sequence is shorter than the bytes corresponding to the original text. On average, in practice, each token corresponds to about 4 bytes.
  4. It attempts to let the model see common subwords. For instance, "ing" is a common subword in English, so BPE encodings will often split "encoding" into tokens like "encod" and "ing" (instead of e.g. "enc" and "oding"). Because the model will then see the "ing" token again and again in different contexts, it helps models generalise and better understand grammar.

tiktoken contains an educational submodule that is friendlier if you want to learn more about the details of BPE, including code that helps visualise the BPE procedure:

from tiktoken._educational import *

# Train a BPE tokeniser on a small amount of text
enc = train_simple_encoding()

# Visualise how the GPT-4 encoder encodes text
enc = SimpleBytePairEncoding.from_tiktoken("cl100k_base")
enc.encode("hello world aaaaaaaaaaaa")

Extending tiktoken

You may wish to extend tiktoken to support new encodings. There are two ways to do this.

Create your Encoding object exactly the way you want and simply pass it around.

cl100k_base = tiktoken.get_encoding("cl100k_base")

# In production, load the arguments directly instead of accessing private attributes
# See openai_public.py for examples of arguments for specific encodings
enc = tiktoken.Encoding(
    # If you're changing the set of special tokens, make sure to use a different name
    # It should be clear from the name what behaviour to expect.
    name="cl100k_im",
    pat_str=cl100k_base._pat_str,
    mergeable_ranks=cl100k_base._mergeable_ranks,
    special_tokens={
        **cl100k_base._special_tokens,
        "<|im_start|>": 100264,
        "<|im_end|>": 100265,
    }
)

Use the tiktoken_ext plugin mechanism to register your Encoding objects with tiktoken.

This is only useful if you need tiktoken.get_encoding to find your encoding, otherwise prefer option 1.

To do this, you'll need to create a namespace package under tiktoken_ext.

Layout your project like this, making sure to omit the tiktoken_ext/__init__.py file:

my_tiktoken_extension
├── tiktoken_ext
│   └── my_encodings.py
└── setup.py

my_encodings.py should be a module that contains a variable named ENCODING_CONSTRUCTORS. This is a dictionary from an encoding name to a function that takes no arguments and returns arguments that can be passed to tiktoken.Encoding to construct that encoding. For an example, see tiktoken_ext/openai_public.py. For precise details, see tiktoken/registry.py.

Your setup.py should look something like this:

from setuptools import setup, find_namespace_packages

setup(
    name="my_tiktoken_extension",
    packages=find_namespace_packages(include=['tiktoken_ext*']),
    install_requires=["tiktoken"],
    ...
)

Then simply pip install ./my_tiktoken_extension and you should be able to use your custom encodings! Make sure not to use an editable install.

Release files for tiktoken 0.14.0

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

Source distribution (sdist)

Source distribution for tiktoken 0.14.0
File Size Uploaded
tiktoken-0.14.0.tar.gz 38.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for tiktoken 0.14.0
File
tiktoken-0.14.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
tiktoken-0.14.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp315-cp315t-manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
tiktoken-0.14.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
tiktoken-0.14.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp315-cp315-manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
tiktoken-0.14.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
tiktoken-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
tiktoken-0.14.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
tiktoken-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
tiktoken-0.14.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
tiktoken-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
tiktoken-0.14.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
tiktoken-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
tiktoken-0.14.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
tiktoken-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
tiktoken-0.14.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
tiktoken-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
tiktoken-0.14.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
tiktoken-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
tiktoken-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
tiktoken-0.14.0-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
tiktoken-0.14.0-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
tiktoken-0.14.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
tiktoken-0.14.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 72.6 MB

Release files / tiktoken-0.14.0.tar.gz

Download URL tiktoken-0.14.0.tar.gz
Size 38.9 kB
Tags Source
SHA-256 checksum
How to use checksums
231dec90efcdccf1b565a1416107736f1e09b1a08fe736ef9d6363e626d03874
BLAKE2b-256 checksum
How to use checksums
6662167a842aa0429d45f5e797354fd4343a96f6043d67d0513c675c7b8d36e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-win_amd64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-win_amd64.whl
Size 987.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
561e7580f84a79859af1ef6f676968e9030fcc3fe195700b15235bca64f009c9
BLAKE2b-256 checksum
How to use checksums
355e9b01afd037bfa22a0033963fa091e0f75b6fb15cd85bffb42ff86e697323
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
149d97453c4c98c04b081d64a85e635921269b532710d6faf81e9e82b790e7d3
BLAKE2b-256 checksum
How to use checksums
c58450966fb6918a0fb9b32721277e5342bf729a2d74350074d662fbedf9772e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
86f66c85e796f5d05d5c4a60ec1d40cbfebc47a32464053528c797163fa9ab89
BLAKE2b-256 checksum
How to use checksums
4ef680760e98a08e6649d2d68afb6035af713121dfb615acce8c4f73810ec438
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
78571efc311c30b73f31eb949a921d6dac39a5d9dc42d1cfa8f8db157b3447b1
BLAKE2b-256 checksum
How to use checksums
3e882f3f85a968cdc514152129af0a060ebcccb067005a2f29b0d5ef3c838514
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2ea70afba6b9eddbf22c165142e5f0a2ad7aa36a452873c48b57bb2aeb8492ae
BLAKE2b-256 checksum
How to use checksums
fbbaef427fc638f1439181c5e12dd26b70e881861f89c007aa7e5b36300f8342
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d0781223705199b289faa59601bb9c2441712d4c600dd13c43d8fd6a33d22cd5
BLAKE2b-256 checksum
How to use checksums
6597a5a7bfccf25b1bb65e82bae8edff11ac3c9c041c374b7b4a823d60c38133
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL tiktoken-0.14.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 1.1 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
11d8211b290855d2721334ff17dd9b3a17bfb26872be01f25d73612ef7ece890
BLAKE2b-256 checksum
How to use checksums
2a005162e90c851a28da18ed382d34898b79a8022548e5619a64e14c03ce7c3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-win_amd64.whl

Download URL tiktoken-0.14.0-cp315-cp315-win_amd64.whl
Size 988.2 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
1b6e4adcfd285c44502aed51df98aaaca4f0fea028165dbf8a9e857b9f98d8ea
BLAKE2b-256 checksum
How to use checksums
02eeddf46ca78e371f5890e96b6e7d089a85b3536432be219851eb0481786ca8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3c5349c9f916283bba32bec8af69b763e4faa304dc004d0eaaea66a3cf004c1f
BLAKE2b-256 checksum
How to use checksums
0c83467be424746c039c5493c0f4102feab16b9b48eb6f5c089b2a2438e3cde2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
728303a072163130c5b477b1f20d6211895569c1d5302c24ffc93a3009160871
BLAKE2b-256 checksum
How to use checksums
4bd298a38579db25c4a8a84e31dd95d9072ec5f21f7e70de591da0412e29b25b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp315-cp315-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
60c47ca69ddda0dea8256fffd12e1b86f4b59734a20e4a70c61f63cc5f021df4
BLAKE2b-256 checksum
How to use checksums
7c9df9c56d7a943a4468abf9ef37661bb9b8e0cd3aa8aa87368c7146cc3f3222
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp315-cp315-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.15 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e4ddf863b59347deaa92302dcd90e5eb003cdc9be06ec2b692c38d1bdd9efd49
BLAKE2b-256 checksum
How to use checksums
cd7b8537be0836f3df99b2a636b44399bfa43cd757f2b8b4097dacb794cf24a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp315-cp315-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
19d643d701fdaa70e5b9c7f8f96abcaffe77ca5e482a3a1a7dde46feb4284695
BLAKE2b-256 checksum
How to use checksums
c26b09999a9bf1d559670d1680e8f8e419ac0e2c5f6aac82e9bfdf70f260b30a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp315-cp315-macosx_10_15_x86_64.whl

Download URL tiktoken-0.14.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 1.1 MB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
14b47e3674f2624803a8acc8fb367b7e24fc53055f9df3296482fe9a3a34a232
BLAKE2b-256 checksum
How to use checksums
1d10b73b7e319179e0f60b32475f783b044f9cece872c53b6662664e9084b0d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-win_amd64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-win_amd64.whl
Size 987.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
7aab286a020660a039097912a088236b985d18a3090d73f136c4413d29d37ca0
BLAKE2b-256 checksum
How to use checksums
188bba48a73729c9270989b36f37ab2ed5525e52690d715097c9fa791aaa5d05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ca4db6ff5c5bf600f9b7761a0070ed44dfe5797a76bd432fb978bc480ef40c58
BLAKE2b-256 checksum
How to use checksums
1d4b323631116fc986d9cc5bbeb2b8223c7c85e61a8bb94ea5ab4951023b149b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2fc834fbe3f6a0736905c36ab709537e6840dbd63b982dc9e0216ae7d305ba1a
BLAKE2b-256 checksum
How to use checksums
29ceaf8964c38bc8226dd8950305b7a255fa33345d5572f78af7275a313d28e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
26cc4b4840fa0e9f4b72ed489883e12f57e00d1021ca794720e3c29a12f0edef
BLAKE2b-256 checksum
How to use checksums
0be846de4400d5bf859f640feee85bd7e32235f68ddf25db53c63be78e581e3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e2eca764c53490f8930dbce329e0769f11108d87d908282a80c5c130e26e7037
BLAKE2b-256 checksum
How to use checksums
5a7c3184d17b868456f17b60b1a75f5ec0405618a43aa753336df341d8f11781
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
86951a971c53979ec857bd8c4a32dc227ab0fd33f6c12a3bd62d3fbf5f0bfcaa
BLAKE2b-256 checksum
How to use checksums
792946ad8061f57bd9f8b2ea0aa82bf574e0f2aa040b0857a1582adba9957899
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL tiktoken-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
6eb94895c45f26bb8f5546e5fd8a069efcf6e3f108ea9d5cbe3bf6f7f3983438
BLAKE2b-256 checksum
How to use checksums
68c97756717408d3d0dfea3f046c9466144b28afde39ff69d5808f2475dcd7f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-win_amd64.whl

Download URL tiktoken-0.14.0-cp314-cp314-win_amd64.whl
Size 988.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
eceeff0c62419bc78d4b6e70a4762a4d25df3ae8f2d5946e3853ce93e7a57098
BLAKE2b-256 checksum
How to use checksums
fcecf5fa35ec13f07279fdcaf3cc9c04bbb154ea591d23978651f2b672593e8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2cc19ac87b41c9493c9778ff5847f0c8bbcf5bd0ec6b87ce06c1c802adc8a771
BLAKE2b-256 checksum
How to use checksums
ab6b81f158d0f90adb826cd704069c2129a046cb784a2a09861009519fc41cf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
979c1524f753b662b0f3cd261b135afe6659cce33caaa7a5ea00dd1756b3055c
BLAKE2b-256 checksum
How to use checksums
e61fbe7cb06ab2108f612f3e92e7b76cf391e192db0db37a984616f0cc32aafc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e3442bbb2f0c588cec876061e37ae67b455b9df9978b003c8fe30e45f2ef5b42
BLAKE2b-256 checksum
How to use checksums
5b7d144af98dc5ad68108451a82e2f5a17f80e2663f5115058b8dfd215c1ad02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f702e0aeeb6506e57687e881c59e844ebe8f0a6a097ddafe20e3ab25f387be4e
BLAKE2b-256 checksum
How to use checksums
892992a1120a12e4bcf2d5464350d1a91b68a433d63ce656bb7f806c27aec09c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f2af4a336ea56d6c14f27741a0e1d8294a35dd0b038bcf990d232ebb54eb994b
BLAKE2b-256 checksum
How to use checksums
62852ae74575e321148484147e10b53c3b1717c59ebaa9edb4fe18b1f5c055f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL tiktoken-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
e067f4cbcc5d036e8aff7fe7a6b530a8f4de2e4616ad9005a24a1879e24e6450
BLAKE2b-256 checksum
How to use checksums
59b01cf129f4af8fc513931f931023def596b7c4bfc77026513cd9d851da9e88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-win_amd64.whl

Download URL tiktoken-0.14.0-cp313-cp313-win_amd64.whl
Size 940.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
90a762670c7f968184723769a06ed51f5cf5ce5dcd1e30164f25c72d85c2d1f1
BLAKE2b-256 checksum
How to use checksums
c9e0c65603f0c44811def666d3fbf611bf2af3b5e1ef613e06c19411419830b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3fd7c14b1cb45b486c39fc9b3443bb341f3e2fc7e6f31247f3435a5836651632
BLAKE2b-256 checksum
How to use checksums
cb564c12f07b812f84206f38d723eb1ebfdd34bad9309b5dbc0bee6bbcff4cbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
380873f330b741c4435574f37edb20813d04603ace2d53e0a63560e1fec83010
BLAKE2b-256 checksum
How to use checksums
b91e633e30237b94e383cf814145499079f3bb9cdd4aeafc1bc42e01b0f810a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
26e60f6a956ee171ab728b37b8439905d7ea1db435c30f9822f291e9861c861d
BLAKE2b-256 checksum
How to use checksums
3762cae690d9783146b0f81f564ada0f8f611de68178c0c9c7e1e969f0516b48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2157f52e4b4d7ac5ecc7457b3716834706e7ef9a46f5144029bfeb7cf71f4e06
BLAKE2b-256 checksum
How to use checksums
693bd67eac1bcce9dee3abe23aff5e3ded3116bbebaf67b80a0811c06d3806fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cbe2cc3bba939bcdaf103e03df9d5039d33887080b315624be28ec69059e5f94
BLAKE2b-256 checksum
How to use checksums
ad5f6448cfe278c3664ba9ec5b5ac08344341f7dc3d42888476e215a14eda2be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL tiktoken-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 1.1 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e9c5fe393aab56469f04e432ff851216d3def3436cf5f07e442a240164bf500f
BLAKE2b-256 checksum
How to use checksums
5053ee1453623bf65f019328721ccb6587846d2c5b7b82f34e73ca09101f072e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-win_amd64.whl

Download URL tiktoken-0.14.0-cp312-cp312-win_amd64.whl
Size 941.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
087538c080e5ff421abd3a0785ed63c5111d06af98e6cd0d374dbe5969147ca3
BLAKE2b-256 checksum
How to use checksums
bdbda2e884fb1402cba5be08836590320012b2d8ada0e2eef9911a64df4bcd2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3de75343041a1c57333b1e707ac8a9769738241d7d6a55d39e12cf84548337c6
BLAKE2b-256 checksum
How to use checksums
bc1d69cabf18bed7f4366da076735816abce0d4db3fae491ae338a6612128777
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b950248272f1b303dc32986396e2dccfa10cf6d1e83ec8f0bba1776660305482
BLAKE2b-256 checksum
How to use checksums
d49c7035b0bcfaa68d1ee4803fc5be5214ad865669b05bd20e7105ae8a18afc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7896eea257fe497a2b7134474d909156c6744ce8da35bce88011a960e008aa0d
BLAKE2b-256 checksum
How to use checksums
51119976ad86980a00cdef05e730a0127a2578a1bc6d11644d8d47246de2eb26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7db45b98e94adf4173a5cd7422b150999a7ee11ff847783a14f6e1b80cc38cb6
BLAKE2b-256 checksum
How to use checksums
0b35e9f47647c9e163bd1de30fe1a491669b7248cfc67b7404c35c009a701e1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d6cebe67765569df3dafac8474e4eccf5c19d24140492567a5e58a11445732a4
BLAKE2b-256 checksum
How to use checksums
699ffe6b1aca23331aa5271df5a4bd07bf68a7059254d47faee1b8272592a777
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL tiktoken-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 1.1 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
8e947aefe98ef74cce94923f90e48c98fe34eb1ec0a6bfdfadfc5a96359bfc36
BLAKE2b-256 checksum
How to use checksums
8cdae273746b9d24a63c776bc60fba914351573ad9c575b52601eb5e60632564
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-win_amd64.whl

Download URL tiktoken-0.14.0-cp311-cp311-win_amd64.whl
Size 944.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
c77d4a3e1deb2707819df92046b89aad1ac81d27e07616b797cbff3f62c037da
BLAKE2b-256 checksum
How to use checksums
247ffff1217240343c0c11b5938b98aeae0e3a266cacfac25f86f91cdcd748f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
151d37a150c8f3dfc5f4345597b10e101876bd1bd13494e0185af6b508758d2e
BLAKE2b-256 checksum
How to use checksums
69849019e272bad188a1c61ecf44f25a9ba2368744644e3ac1f3d6516f3c9e80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
144a3fc369f92b7d548995217c5d6e84038d3572157a0f6f34080d65291d0f78
BLAKE2b-256 checksum
How to use checksums
d104522ec59d30dd9a2f3ab837011cd4fc5d1178dc4a2fa07c9fa4b90af6ba9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f5e7665f6624e052e5e7f6a36919ab69279decdc976d7b16b4fa15e1897d0513
BLAKE2b-256 checksum
How to use checksums
24658c5dddd7cb67f6571d154a58d7c6e2f07da54bf84c49b6a1839965b7c35e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1f83081065ee5833d35b49e9180f3d8d15622a603dd1c435da0da6cc12b3662f
BLAKE2b-256 checksum
How to use checksums
c8b631da98ee871383509cae2ba96a9ddef1965e3c4f8cb6dc7bcda3379398db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cd8ca1305c1c902fe42c486165f2e4808d9997625c98ffb05b9e0366d99d3948
BLAKE2b-256 checksum
How to use checksums
2da9d94302340304328961d6f0c35ca4e60617fbb57a5cf667e2ed1692cb9e57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL tiktoken-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
c2edf09b381fafbc014ae8e018ed25087abb9a3dafa8465a0ea63c6558c47a79
BLAKE2b-256 checksum
How to use checksums
8fc59d848b7f408241171e1f843deb8bfa626086452bc9c78beee500829583e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-win_amd64.whl

Download URL tiktoken-0.14.0-cp310-cp310-win_amd64.whl
Size 944.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c6cb9896a82b9ee44e15ba0b5c8044072f2e4d48acaa704c8d3feeef5ad9487c
BLAKE2b-256 checksum
How to use checksums
88cff2d955c8c5c6c67cc86ba6fb132c47c710465ebe6a6dcec1c3b6e250660e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
10f31e63e40313f2e518d87f7086cfa44e45f64cc14d8ae14103b41220c30a14
BLAKE2b-256 checksum
How to use checksums
c8395234783af6b81af645ccdf9438f2f02af472f14e91d876ca2079af641841
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4d8d91d68353bd167fdf26467e5ff9e56aaa5f87d6410c0238608629e4dc0d33
BLAKE2b-256 checksum
How to use checksums
c3b37795db206adb6a57d6137fe48ef2cca6b9707e90b86ee8244671592ddc33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
18a1b651c4b032004bf7b4f1713391a54b2a341a52c6e8a2b59acae9d16e13c7
BLAKE2b-256 checksum
How to use checksums
afc8051e7b72a816ff50eb34a1c7c5b185cd2429ffdf59a497baea35b2b6b2dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f3d6cf93fbe2e7117eb7bedca684216fbe328a41f0843ce34245451d8eb2df1c
BLAKE2b-256 checksum
How to use checksums
3de98e18cbee0c3ae8321c7e9696bef6090a24eed99a4a75a4c4a7f5115e5a2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
94f77b60a8ab23580db19ae822744c9716c1720020d2179ca5605112d12326f1
BLAKE2b-256 checksum
How to use checksums
18e2d39ae33d3dc30a0c229ff0cb683df961ebb5e7b8691feb2d08b3ee6ac327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL tiktoken-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3b12e54f8bec91433e41aff65d8d1f209a4f678081163747079806e5361f6c91
BLAKE2b-256 checksum
How to use checksums
5e82d60a7a5d7bff7b4641d556ea68ea5914ea6edc3774a12eb1c0d444701382
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-win_amd64.whl

Download URL tiktoken-0.14.0-cp39-cp39-win_amd64.whl
Size 946.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
447ada49af4898b5e992f0b5799d2f3af385921102c211947ce3fe960dd919da
BLAKE2b-256 checksum
How to use checksums
6e2550d65c808b4ddc276e4a250ee9e7570ddbcc9bd9b000cbf0508fd5227e10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL tiktoken-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
50a7e5646cbac2a8f7c3e8c0934ffda1a4357ee9c44b652434b23c3ed54d0900
BLAKE2b-256 checksum
How to use checksums
9e38006ef3d779cc5ff1be8ada77bb776a6998b1c46b58dde69ff4457a91e7b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL tiktoken-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a140e83317fef02faeeb78d9a8efac623887f2feaf0055c55dcdb2b17f0226ad
BLAKE2b-256 checksum
How to use checksums
4180b5bfee8bb8030c82da273fba084fcbc2737f64eea8ac9bf70cba79102168
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL tiktoken-0.14.0-cp39-cp39-manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c3093001ddce822b4587e6e94bf6de36a5f97b3f31de1c9fc8d4fda144c59ff4
BLAKE2b-256 checksum
How to use checksums
172258703e89f1cd34cb680377a6ad7abc5a5862edf70cac423139dae7caeb69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL tiktoken-0.14.0-cp39-cp39-manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7b7acbb7a4b8383707bce22ad3c162006478c27b56368acd3e1fcb1658a80425
BLAKE2b-256 checksum
How to use checksums
78934087a33560aee72f1a10fbea462d95d83ceda00fcf1aeafd01eadda5760f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL tiktoken-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Size 1.0 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aa428a559d5fd02ae619aacaace86c7474a1f2702d2c01fc828908dd60f20f7a
BLAKE2b-256 checksum
How to use checksums
ffb29a49f8a9923167adfb25429415a66b46b6c22a9ff357a3393c1e334408b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2

Release files / tiktoken-0.14.0-cp39-cp39-macosx_10_12_x86_64.whl

Download URL tiktoken-0.14.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 1.1 MB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
2ec16eb585332c55d022d86354e209ddf27326b1ea3477585ab248e7776d3b1f
BLAKE2b-256 checksum
How to use checksums
a142e14724608c13f9bc3e14b86e64e8443c67f1c5914613828516b9a164b49f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.2
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