Skip to main content

JSON Autocomplete

This library offers a simple function to complete any prefix of a valid JSON string, in a way that makes it a valid JSON again (e.g. by closing all open brackets and quotes), in a minimal way.

There is only one function, json_autocomplete(json_prefix: str) -> str, which takes a prefix of a valid JSON string and returns a valid JSON string that is the shortest possible completion of the prefix.

The heck did I develop this for? When streaming a response from a LLM like ChatGPT, where the model generates a JSON string, you can render it before the model is done generating the response.

Another use case could be when you want to allow the user to enter a JSON string, but you want to offer autocomplete suggestions. You can use this function to get the shortest possible completion of the prefix the user has entered, and then offer that as a suggestion.

Examples

>>> json_autocomplete('')
'null'
>>> json_autocomplete('n')
'null'
>>> json_autocomplete('tr')
'true'
>>> json_autocomplete('-')
'-0'
>>> json_autocomplete('2.')
'2.0'
>>> json_autocomplete('[')
'[]'
>>> json_autocomplete('{')
'{}'
>>> json_autocomplete('{"')
'{"": null}'
>>> json_autocomplete('{"a": 1, "b": 2')
'{"a": 1, "b": 2}'

Installation

pip install json-autocomplete

Then, simply import the function:

from json_autocomplete import json_autocomplete

json_autocomplete('{"a": 1, "b": 2')

Development

After making any changes to either Cython files or C++ files, you must cythonize the files:

cythonize -i json_autocomplete/*.pyx

This will 1) compile the Cython files to C++ files, and 2) compile the C++ files to shared libraries.

Afterwards, you can install the package:

pip install .

Release files for json-autocomplete 0.2.5

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

Source distribution (sdist)

Source distribution for json-autocomplete 0.2.5
File Size Uploaded
json_autocomplete-0.2.5.tar.gz 48.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for json-autocomplete 0.2.5
File
json_autocomplete-0.2.5-pp310-pypy310_pp73-win_amd64.whl PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 Details
json_autocomplete-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
json_autocomplete-0.2.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64 Details
json_autocomplete-0.2.5-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
json_autocomplete-0.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
json_autocomplete-0.2.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64 Details
json_autocomplete-0.2.5-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
json_autocomplete-0.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
json_autocomplete-0.2.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
json_autocomplete-0.2.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
json_autocomplete-0.2.5-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
json_autocomplete-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
json_autocomplete-0.2.5-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
json_autocomplete-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
json_autocomplete-0.2.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
json_autocomplete-0.2.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
json_autocomplete-0.2.5-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
json_autocomplete-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
json_autocomplete-0.2.5-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
json_autocomplete-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
json_autocomplete-0.2.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
json_autocomplete-0.2.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
json_autocomplete-0.2.5-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
json_autocomplete-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
json_autocomplete-0.2.5-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
json_autocomplete-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
json_autocomplete-0.2.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
json_autocomplete-0.2.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
json_autocomplete-0.2.5-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
json_autocomplete-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
json_autocomplete-0.2.5-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
json_autocomplete-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
json_autocomplete-0.2.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
json_autocomplete-0.2.5-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
json_autocomplete-0.2.5-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
json_autocomplete-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
json_autocomplete-0.2.5-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
json_autocomplete-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
json_autocomplete-0.2.5-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
json_autocomplete-0.2.5-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
json_autocomplete-0.2.5-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
json_autocomplete-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
json_autocomplete-0.2.5-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
json_autocomplete-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
json_autocomplete-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
json_autocomplete-0.2.5-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
json_autocomplete-0.2.5-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 21.6 MB

Release files / json_autocomplete-0.2.5.tar.gz

Download URL json_autocomplete-0.2.5.tar.gz
Size 48.2 kB
Tags Source
SHA-256 checksum
How to use checksums
d6df94de4ec84ad453573a3878caf89eaff413738d172749bd907e36e8f66644
BLAKE2b-256 checksum
How to use checksums
52968d01bf64943aa675b12c23194e65883a5c50944c68101a5d8f4021483e33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp310-pypy310_pp73-win_amd64.whl

Download URL json_autocomplete-0.2.5-pp310-pypy310_pp73-win_amd64.whl
Size 70.3 kB
Tags PyPy 3.10 PyPy 3.10 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
e81be968dc993e11e5f8db5597e55dbec3f3f9cf04e9fbbf6afaaa70a4f5798c
BLAKE2b-256 checksum
How to use checksums
68c28e02e72d5197e5dddb4b5407aa09f80163dec718e32e4960e1ec68e852fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 101.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
f416446b52fa8fde4090692cf3c89a00a13621b628ac62ad60f70425ef47265a
BLAKE2b-256 checksum
How to use checksums
411d5ba3297e3a22ad85a882689bc635dc1df988245f84807d9858f88cfa2ccd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 105.2 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
928c9429112b4b77eea838d0ea4f5b6c188418043ba0fc37df9984b8dbf02c6e
BLAKE2b-256 checksum
How to use checksums
918e26cb998aa40829d79f7dec18d80b4686e24941461d4626b772a7dfb24cb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 68.7 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b987ae0cb18e11a96e263ddb9f98abb4c9e811a546d7565dd9baebb9ff42c134
BLAKE2b-256 checksum
How to use checksums
c5ab11298654509a37766aad08d1dc1d680a3ef2926c0aa8376e285f2377c092
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl

Download URL json_autocomplete-0.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Size 68.8 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
29ca4f959bd0fa8fa114c2b3fbe1472a05f5a323c20dbdb76d5a0f4306e09207
BLAKE2b-256 checksum
How to use checksums
40bc3ce19f9a97e14bb8e4f0258379a1012a095f52b28216005724a3cd3c2c67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp39-pypy39_pp73-win_amd64.whl

Download URL json_autocomplete-0.2.5-pp39-pypy39_pp73-win_amd64.whl
Size 70.3 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
2906d084e8cbd9f94e8bc080c1fa4b002545f2e043f98fb599e11b6fe01b82c9
BLAKE2b-256 checksum
How to use checksums
cd3a46af1324dfb692e4da806b36d90ed0a548a11e65af5c13771e13fa90fea5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 101.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
8cef77e56fee42be7dd8d1920907b9f72561585d5fe17bf97ec8abf4e6d608d8
BLAKE2b-256 checksum
How to use checksums
b1a0693a0d7a18eb736f45ffb7f7a97bf29476522a69038c2358b11afc9c212f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 105.2 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
67b9cc0b5be3c5a55d4332f3ad687116684d97b523a2bcf64118c8b6267dfaf0
BLAKE2b-256 checksum
How to use checksums
3b1d3108bb8f282ba22a09c260c79217dfc4c5255ce67621f74a30cff94889c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 68.7 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
443af0efaf44a25466120d616b19afe0c2293add9234662ebec68f4a047b7ff0
BLAKE2b-256 checksum
How to use checksums
d9f7148302c298b111220b58eb4176356dae6ff064a407aaea451c7f1412e65f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl

Download URL json_autocomplete-0.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Size 68.8 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
281bdbe60c955c19558a885ba6f42761f84781e79fd1b446e0f9dc57ced9b2bb
BLAKE2b-256 checksum
How to use checksums
1ab3c9ad206c0b88650c0e263e0c23ccf7b170a427b9ae2f6ae97fed81fddc30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp38-pypy38_pp73-win_amd64.whl

Download URL json_autocomplete-0.2.5-pp38-pypy38_pp73-win_amd64.whl
Size 69.7 kB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
3cb2a0db8950d37c907460f923b24422cccd6f3320624b9b53c8029a8f40e4c7
BLAKE2b-256 checksum
How to use checksums
54997a910c4cb59c322789bcc0d69bb9930682804d642ff68c1bca36f68c14c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 100.7 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
86c3b1669857ace666b8542367510e8c02898c0394ca305c3d9f3ca19591c5ff
BLAKE2b-256 checksum
How to use checksums
62a81f86ca8e6e32df1a19c48acef81b38497b904b015c8e4559a3dca138e616
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 104.4 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
52ebd36f130f3bbc3e5a683ff26cd0ac8623345fcfa1c803e7031d1fa6d3e3fd
BLAKE2b-256 checksum
How to use checksums
4dc84967635a68fb89c57ee02985e928d55624e61385b6a48f4bbe9561d8bfeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Size 68.1 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3fe996eb03b447bffcdbd1692e02af6be0a47cf332fd90a18b1eb727c182b89c
BLAKE2b-256 checksum
How to use checksums
975a877d621f42fe33063c89fc5bc1c6c28c16e1da825e94c44764b6e9332f31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL json_autocomplete-0.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 68.0 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
fd3fa4c50873068f9c4e95d708948307c3e8f0a1b484f9d350a5825ebc4f6c6b
BLAKE2b-256 checksum
How to use checksums
83318cf5c5e73c9900fa42ddc766a686779eb9d8ae8b9eeec5f93b82ff6365ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-win_amd64.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-win_amd64.whl
Size 72.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c9df7a3267b6505ba01dadd8c8433ff8d1acf52acb1400054fcb524515ba96a0
BLAKE2b-256 checksum
How to use checksums
7f4fe9b9d7f8b2f74b92532b59c054b552e84a2679b39ca3c74078ef3cdb3b1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-win32.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-win32.whl
Size 70.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
3f86f70592b204580119687344f44f1b2fb76358adeb9faf6e7b322a45618804
BLAKE2b-256 checksum
How to use checksums
0ba1ebaa8f6758d47ceb70de0efb6d6babc1d3df75b2dc28f2f7d21101e02741
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
404192233f40845d518f08cebab255c2b24283278cd48649b1171f9855f0a0fe
BLAKE2b-256 checksum
How to use checksums
fc0d05cb76734a1928c111f59b3e7a5c148052ace0e7206566b90e005a9b5ddb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-musllinux_1_2_i686.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
80bb4fa78b4ad36abc726fb644a402056fddaf8d6b50d5b600c4def3d1829da7
BLAKE2b-256 checksum
How to use checksums
8ea607476eb182cfadab253465fae64bb3253d093978638006d24164c82017b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 284.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1bedee3a60521bc09662015fb4d29cf803c041d6ce1ecd23de882c22ec7dcde3
BLAKE2b-256 checksum
How to use checksums
b50ea77418b3c2b9fcdc5ae93f3bcfdb8e0c6ab6455ee22c6dc8d66c2dbcaf38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 278.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9c5b55767c36d8ba523cd791aa3cded3169b78425eb9edea6c5bc4937807890e
BLAKE2b-256 checksum
How to use checksums
99095af9f64226d9170a4aabc59763a571a89aacdb2fcfc4a55ecb29ab14d892
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Size 72.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e6246b833d5133c4f4a29458e42aacefba5356b46de4b212c53e5f590e0a6a25
BLAKE2b-256 checksum
How to use checksums
7e9074a8eb5ef6fb7e36c1d81524a1da4d676111b507402701934b609b36ccb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl

Download URL json_autocomplete-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl
Size 72.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2939a817e0fde528086527756facbb85ab5afbaf1e297f3cc71de4d913be24b1
BLAKE2b-256 checksum
How to use checksums
467260b8e8fb48989b9307d6c02df4dc9dfefffd6726b3787f5a0dc98070e524
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-win_amd64.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-win_amd64.whl
Size 72.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
9cf76ee877ead2b2370a452a540737aa75cad4e242870c2486f37da60e8a5a08
BLAKE2b-256 checksum
How to use checksums
e608d5363568d8c1f29b39a3be4a3af474950d40659eacea6eaffc8d182168cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-win32.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-win32.whl
Size 70.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
8cd06311a728debd6e16616c14b11f88e59f3eab8447ea05603d80a3603257a6
BLAKE2b-256 checksum
How to use checksums
98711ac64a0eef8a1c39c6c30db8e0ada996977e170548ab9c76232da754d79e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
eaf905864c56e46365d5bd43df1c8ad4873cda76ba55a28fd13e187837e3e626
BLAKE2b-256 checksum
How to use checksums
84fe4c9ff2df7e412922d46d72a2654b90583ca503467dcc8bfed93f4dcbb5fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-musllinux_1_2_i686.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d90bb3b639fd8f8af1e34b302cb9d31feee153981a1802178bdb38a3835753a9
BLAKE2b-256 checksum
How to use checksums
c305fe6129fc988951efaadfee9da1b77be0364e6c2a85fa82d8a7c60978b943
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 289.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e509d1a1b3a110a94c8d3a05e27e1b0f538335b6a71f7f2e5fffc02474b32cc9
BLAKE2b-256 checksum
How to use checksums
7922078f8d659f937cbb3fa17b7e184e22f1db741bee7e82cdf60f10dc2941f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 283.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
af336d39693be02bdd340651b495852b66bcfdea080bd7b7793545c77e57d711
BLAKE2b-256 checksum
How to use checksums
d921aad9528e3afceeb97d983e990c3a7db37edcb967b67691f9fbab6a5a3447
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Size 72.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
54bdf52702908b7743c2253f14f997d0edde03f1cfcd2e7358da4c37c970943b
BLAKE2b-256 checksum
How to use checksums
f7877965bbd3c08d031ac7ddbd74d2d5af39f9a87f453b2d85d788eed654be14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl

Download URL json_autocomplete-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl
Size 72.9 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2ebc6a66696043d146cc99c1d8c3cb3e5f59ceaae992ca65ea57fdcfd1cc56b2
BLAKE2b-256 checksum
How to use checksums
cb9d789e8d68cf18c7a16bcba242f4134c6119c98f7754e3d0d573f0d0d59f51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-win_amd64.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-win_amd64.whl
Size 72.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
bb73653a5b1fcc2ba69ef9b002f26adb0a58eaca093a4c3c482ff841be627b6b
BLAKE2b-256 checksum
How to use checksums
b0b4d1b8e7a102d38433ba9f976a514bd86e4b90662db67f1a192550a104afa6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-win32.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-win32.whl
Size 70.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
2d0c378df005d3839170838f3d48a6587806904f47f82a8999ea8a91a151462a
BLAKE2b-256 checksum
How to use checksums
640afc80f632a8e5eb2ff0b9dab601d64bd2a5377494098c3dd56a4ada927090
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ff85a5d4bcc189f905e3c57d78769af35be2490700abac5a01c4176b03ff290b
BLAKE2b-256 checksum
How to use checksums
b2f6f265f9d02375ea0451f5e8ad2e2c9bd41170c20545e842ea9def928d87fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-musllinux_1_2_i686.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d34da5c45975030e2466de60097c5051b71ec1d94e479477430ec26f6f3c4cfe
BLAKE2b-256 checksum
How to use checksums
eeabb1a3a1c588c50649f764a48f2e6e0c109324f7945761d28cb3cc17bdea61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 284.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e0dc3b860ce89a33563f4f6a4f975a862dc6f19c36a2995ac86ef544bc3a86d0
BLAKE2b-256 checksum
How to use checksums
297d9ca1eb2a85f0c1eb6f6b101f27a516387769b67889707b6e656dae77e8e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 279.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ab47b6262071ac8dd4e0f593a38dcabd12a7e9b09b5ed05ffd8b2f69cb4a422a
BLAKE2b-256 checksum
How to use checksums
e28b008fa8e035b57c74d2bdab64cd0df24a5a31f05d87ee5ecf12a2a73b8b18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Size 72.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a4038539654aeab31042b63648a5c53b133abe82b70a982d1c3ede35be4ed353
BLAKE2b-256 checksum
How to use checksums
dd7f9af17a7ad877c082e1352705e9569a985538a16f2389dd3700a576bf4ebd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl

Download URL json_autocomplete-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl
Size 72.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
340bfb58c8a1a8d6fffefe8b27371825575a175b17300d7e3c0ccb24a327a204
BLAKE2b-256 checksum
How to use checksums
bc812b692a9a68f72e26d837008dd6b810890d01150698e8087afb6c0b912bf2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-win_amd64.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-win_amd64.whl
Size 72.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6f3199de717d8eb767b9d7bc3f77dc3859be5cdf1bd819c24f47dd691a52fe1f
BLAKE2b-256 checksum
How to use checksums
a0c7154ed613b33853d124597d01e47cb422993d38fe52601880ee6b5a1bd4ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-win32.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-win32.whl
Size 70.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
77df06c29d32458425b86f8347ad3fbb25a7e5a7a094bf6bc19c25580674f7a0
BLAKE2b-256 checksum
How to use checksums
7de5bf0dfa2b7f6bc94cbb66e7c180f0f3f21fc8514b725ae098b4678a21b52f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4c48602b6d7674b9f23a7ce5384aee2c2eab28f0d04952a8b4b5b6019ca33a49
BLAKE2b-256 checksum
How to use checksums
45593dc72fb19ef30f48a6f1d17ec108a86e1d2ff285df6683e1caf6310ae7e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-musllinux_1_2_i686.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5a14947828647f916da03445dbb631aca52fd621e91bd49afd4f171695eb5cbc
BLAKE2b-256 checksum
How to use checksums
e1d332c70d087e71f4fa23f9cd9334af167fa413dec1c442010f3a42a1a14808
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 280.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ea10d65e6efed72ed6bf3ba63f7510edcdd8428c669ba39a82be1452b6e9ef26
BLAKE2b-256 checksum
How to use checksums
c3483392f2fe2f03ef74cb1678b7ab3b404c03f133a99aef8fc91f8bcf534221
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 275.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2392a19b1b0219c49d79dd4d473afa76781a0d0d48384ab7249401c41d13b420
BLAKE2b-256 checksum
How to use checksums
df4bf0cc35fc7fae6e732f9c60ca235d8a6d0d375c64306d92f4e89a05779f42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-macosx_11_0_arm64.whl
Size 72.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fe3bbcad7e5c2fcfd9bad17c5b54dff2f87e587dda6f76e6a0f424e73dc18c43
BLAKE2b-256 checksum
How to use checksums
b93aa23cd7a2a8b2b907c631b935c5085ca7be873b9230e85c3b0b071cff7c54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl

Download URL json_autocomplete-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl
Size 72.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b0e28de76eb58a398c65cde11dc15112e193147d3c146e878ee966878ffb6ffc
BLAKE2b-256 checksum
How to use checksums
87a141c4200d416f047af56d69015cd74442d68d25a1c4ff749f71b2207d9a9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-win_amd64.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-win_amd64.whl
Size 72.7 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
635818952b8af2e3d6a7527f4c73abc71cd1c7259a4b2f157c571be0d1f57303
BLAKE2b-256 checksum
How to use checksums
0fd4829336978874cb808524b7502892ea1bd1e48ef256ee5f870a5b1ebd0cc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-win32.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-win32.whl
Size 70.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
00b2d8583fc18bcb6aa6223d444da4acc572327bbc62ac80423e532e08d887a4
BLAKE2b-256 checksum
How to use checksums
fc618178b4efb15a462030f221de6f91ad6786ca7aeffe4d1ce156ca5a88d96d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b2d57a0b3690eeaaa271ef7b325437db62b8c2fe8f5d387f450b58f703fc6c4b
BLAKE2b-256 checksum
How to use checksums
73941ca6743a15867475ef527a06f5d180fb78ef2fd8e8d88d9f85613169142d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-musllinux_1_2_i686.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
51a3495f33eca6aa5ea6a2c8ed83fa71b0398980815780473c2f39e3a575ca94
BLAKE2b-256 checksum
How to use checksums
a34b19edb53871ec4072baff4a90eff930a5c13379ee65dadde503a934e2f845
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 280.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
23d6807150155cd42cddb9d4787ceb66d13663277bc7a2de022509073e8c00fc
BLAKE2b-256 checksum
How to use checksums
45ee4803fc5a32282755abcd8e5cd22e597c52d301d5af345a4e303b194978e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 275.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
46670ee0126299ebb5e2b7149ebafd2675f821659078bd723b9369d3f0139982
BLAKE2b-256 checksum
How to use checksums
898bea27ab0422d39b395bb98b6db66c14202036ce7b705ff6fbe65d1df1a7d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-macosx_11_0_arm64.whl
Size 72.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ea5333354dd1e1baa4e69c70ce7428ecacb3c3c650c285798a7d88004bc8b86b
BLAKE2b-256 checksum
How to use checksums
d173b6944a42e1e61be4684f7470c8b311a2447fee3b45fb714bf95ff57b4e84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp39-cp39-macosx_10_9_x86_64.whl

Download URL json_autocomplete-0.2.5-cp39-cp39-macosx_10_9_x86_64.whl
Size 72.8 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
603b3324c7bdcfae0b5cf711af613c98194888c04703a57611a5a5de7b72bc44
BLAKE2b-256 checksum
How to use checksums
602286ac0708482367bcf6f660c0f0761fb17b1e5770d2a4adc9a04189b02c04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-win_amd64.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-win_amd64.whl
Size 72.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e4c46764e8714789436b6a186f95f89299a0f1bcedc7b24c2c7a543d187df2f4
BLAKE2b-256 checksum
How to use checksums
044065a12a4e281f56ac5b98eaa02154fe32406c27ca7ccfa95beec2a10e2e69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-win32.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-win32.whl
Size 70.6 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
95a13ab7658523d04916ed7f93bafff640362c347e4e25ecbc833b3ed063da65
BLAKE2b-256 checksum
How to use checksums
4345b0edce0ed2ada426419437a5936f38f5adc1f72223542f81727a15b0f61f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
50bd827cde43b53a2716a8734bcfec84daa55dbaf3597e42e6e8b91fc1e7ab29
BLAKE2b-256 checksum
How to use checksums
c58241fc5464a81b0c4ff9b1b7e5bb4292280ea6165f80b603587cff1bdb7c3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-musllinux_1_2_i686.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
df0305e52c5c8b47690f9b347b7273de18e146e68559e71321007fc3fea2b034
BLAKE2b-256 checksum
How to use checksums
cb367e5e8659a0cbbd2b935a10757cfbf440132daddba521feb3eacf683eb746
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 280.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b6e272e71fd329bcb2735427c43cdc534a145c7db1648b460318c3a061ed64a6
BLAKE2b-256 checksum
How to use checksums
04259a907f113fca31c70bfdda4aa65a7976675b3812c6c746743b59bd1573fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 275.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
958ee301d2a54502ae86efbe85ea06f95e9d3c021596cd4ce492a295242d0401
BLAKE2b-256 checksum
How to use checksums
406015f9d753ee101fa2c12ebce30a6fd146d68ade111e1b95df26aa77c8da31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-macosx_11_0_arm64.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-macosx_11_0_arm64.whl
Size 72.7 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
27da9ca445604f54eeaf67f629a94ec7cec83bef654f4bd2dc23d2c2f54ad014
BLAKE2b-256 checksum
How to use checksums
46840292368e1db9b528ffd218383d63d9979facfeae5bb72732c497a8978b23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / json_autocomplete-0.2.5-cp38-cp38-macosx_10_9_x86_64.whl

Download URL json_autocomplete-0.2.5-cp38-cp38-macosx_10_9_x86_64.whl
Size 72.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
70469f70b75e5a5552da15f5d265979674da49eb80fe2340de7e07bb02598493
BLAKE2b-256 checksum
How to use checksums
95ee802547a7134cc05c2cd738d060450298b279e45b121b93b02488b6a37b9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release history Release notifications | RSS feed

This release

0.2.5 This release

64 release files

0.2.4

69 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page