Truncated JSON completer
Project description
truncjson
A library to complete truncated JSON strings.
Install
pip install truncjson
Use Cases
- When you possess a JSON file that is truncated, and you wish to parse its current content.
- When you are receiving JSON content as a stream from services like ChatGPT. This allows you to parse the JSON content each time you receive a new chunk.
Simple Usage
from truncjson import complete
result = complete('{"k1":"v1","k2":20.5,"k3":[12')
print(result)
# Output: {"k1":"v1","k2":20.5,"k3":[12]}
Stream Usage
Here we created a dummy stream with a list of chunks.
from truncjson import Stream
chunks = [
'Here yo',
'u go {"k1":"v1","k2":2',
'0.5,"k3":[12,34,"56",tr',
'ue,{"k31":"v31","k32":false,"k33":n',
'ull}]}\nAnd ano',
'ther one {"k',
'ey":1.',
'12} {"a',
'b":"cd"}'
]
stream = Stream()
for chunk in chunks:
print(stream.extract(chunk))
# Output:
# []
# ['{"k1":"v1","k2":2}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true]}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true,{"k31":"v31","k32":false,"k33":null}]}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true,{"k31":"v31","k32":false,"k33":null}]}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true,{"k31":"v31","k32":false,"k33":null}]}', '{"k":null}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true,{"k31":"v31","k32":false,"k33":null}]}', '{"key":1.0}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true,{"k31":"v31","k32":false,"k33":null}]}', '{"key":1.12}', '{"a":null}']
# ['{"k1":"v1","k2":20.5,"k3":[12,34,"56",true,{"k31":"v31","k32":false,"k33":null}]}', '{"key":1.12}', '{"ab":"cd"}']
ChatGPT Usage
import openai
import json
from truncjson import Stream
openai.api_key = '###'
chat = openai.ChatCompletion.create(
model='gpt-3.5-turbo',
messages=[
{'role': 'system', 'content': 'You are a intelligent assistant.'},
{'role': 'user', 'content': 'Return 3 different random JSON objects each has more than 500 characters.'},
],
stream=True
)
stream = Stream()
for chunk_obj in chat:
chunk_content = chunk_obj['choices'][0]['delta'].get('content', '')
for obj in stream.extract(chunk_content):
print(json.loads(obj))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file truncjson-1.2.12.tar.gz
.
File metadata
- Download URL: truncjson-1.2.12.tar.gz
- Upload date:
- Size: 132.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34debd594b71db84633ad86086e9132338230d2fe80710661eeb5b239324ab71 |
|
MD5 | bf0c58d99834daad15058a014d485640 |
|
BLAKE2b-256 | 729d41467e20e1ec359b2ee377d61a2c391ac9c631e6858bc5ef84c1cf6589b9 |
File details
Details for the file truncjson-1.2.12-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 57.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fed303700dae66ec73b8c5ef89ccf8bc737ab295b7d0eca0e78a9d34c7ff9ca |
|
MD5 | c4afa1ad4de2fc10cb236b718e93331e |
|
BLAKE2b-256 | 82848313103f55cfcc38ac57e3f602b4fc6f1d834ac4cf1f880d9e9038c52873 |
File details
Details for the file truncjson-1.2.12-cp312-cp312-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-win32.whl
- Upload date:
- Size: 50.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6996a41ff336db635650ec14c36a025663b0df71398050acb0ffc3c95a773e52 |
|
MD5 | d77758110e3427c40ea34124231890eb |
|
BLAKE2b-256 | fe12a43aea2a3b604eb3e3f058e3dce49e35e5efe71f600a5cee73de4566660b |
File details
Details for the file truncjson-1.2.12-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 348.8 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6121cd4c128f6522d3c9eff94b1a8ea184edf0b68ed0f6b3342d6aab8ad75542 |
|
MD5 | 0327fa41cfae531007ff9c24c6c02b6f |
|
BLAKE2b-256 | c23729475a8d89f82a7f82e588e2fc9a745b599b847c147a52774d55f3ee383a |
File details
Details for the file truncjson-1.2.12-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 331.3 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d507e0786967f836b6731fb2d458d4a1a4df1ac958f7ba4b659ba5208ea4368b |
|
MD5 | 534764329135fbf2f2bc38bb80de7b78 |
|
BLAKE2b-256 | 28d030c83dd8831a5b5ce492ecea74e288f2a3129efe7cc7047585c6d38a8b25 |
File details
Details for the file truncjson-1.2.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 349.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66b667060642a99dc35c39b0a058bd5f94bd357d2c47854b0e2dd4403e938c58 |
|
MD5 | 89714bcc3e39d0d8ea9a6d31e6e5d3cc |
|
BLAKE2b-256 | 2a2eb224b4266e2ce0c6fbaae9c9fcddcf00ec2de614ae5c6371b6005dd811e5 |
File details
Details for the file truncjson-1.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 328.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9601e1b36f493152db0aece158d20d06e1955fb0cddb0119f95b78e32a636df9 |
|
MD5 | e87536109a2969098ca14ac08032fccb |
|
BLAKE2b-256 | 8eb55137c1e44ee3cc4c9001757f36f956b1e172661a2be5cc1fca8617eec038 |
File details
Details for the file truncjson-1.2.12-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 58.8 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 758dd889f10bf34187ef021fb0cc2a4358a5dabe2dc0dc969eb118c61e36c1cf |
|
MD5 | 798b1ade5c033dc2c7bbdc28429fbd32 |
|
BLAKE2b-256 | 760da43d4d5518c4139608b9d5c4b7e0b4b4ae3fc1be1b84bb8575ed1cabb8f8 |
File details
Details for the file truncjson-1.2.12-cp312-cp312-macosx_10_9_universal2.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 113.2 kB
- Tags: CPython 3.12, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 020c15140e568618536198804bca51c261643205eb0150bc51cbe655c14429e3 |
|
MD5 | 007bcf656943710fae1d5b9a35b1d09a |
|
BLAKE2b-256 | d6044250bd4d63173e1bf4f4f3e8fdc65eafb72a670f21a41d1cc62202956728 |
File details
Details for the file truncjson-1.2.12-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 57.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a4e71086b978de850b50b71a304696770a759c564df3fe9d9859517a064776b |
|
MD5 | 5c19dd9204df6b1f83ce0358946bcdc4 |
|
BLAKE2b-256 | 104c8d2832341eaad54d3e17cd30e12274ea5ea588c50deef1f77815d908afbe |
File details
Details for the file truncjson-1.2.12-cp311-cp311-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-win32.whl
- Upload date:
- Size: 50.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b800ff7497dfe74667054dff8995a6f4df79de7e314b4bd7fe73457d39d4d59 |
|
MD5 | a486d85751f40ddd492296e3cacac739 |
|
BLAKE2b-256 | 1ecb9b0ea73ac673d2df9841d50ef1afdcc2869f1831f077184b490e985d87db |
File details
Details for the file truncjson-1.2.12-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 335.3 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b73ca0badd4c18b025946dc674c4ca2f56f9bc5f23a1fe8b2daead6b61770b7a |
|
MD5 | 96377ce19ec1e08650d4e281dfe0e967 |
|
BLAKE2b-256 | ed1c3f91284811fdcb52bc408a6971ad7d504833693c580bdaf1f0e0cfe16d8c |
File details
Details for the file truncjson-1.2.12-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 320.6 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1b57a0ab643d3bacf43493abe44ccb416c11226d0a942fcd20f052da1399484 |
|
MD5 | 43e21d438f14e3ece3e34d305e92a171 |
|
BLAKE2b-256 | 0f2f762f10b7bd15a06793a21b1070711f13a76834c8a184b38516a425b49bd9 |
File details
Details for the file truncjson-1.2.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 334.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d11e43e0352583feb104009c1338711ed8c097417956c4a9833639e6f6b56f48 |
|
MD5 | 3814de3b4fc2ceb79c3b72ee289336e3 |
|
BLAKE2b-256 | 1f0acd1fe5b6ef0394daba0b8dc24ed70c5b3fd2ab038ff6bc4c1077ac97d8cf |
File details
Details for the file truncjson-1.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 319.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fdadf8ecadf49b048e0bb5c3b3b16af040d5170ca5f793eea55171d872db0a0 |
|
MD5 | af29763882d694c75299247840015033 |
|
BLAKE2b-256 | d47410009c4df2903769d723c077b0c54b98ce38b359deef73a9d8ec7a10e27d |
File details
Details for the file truncjson-1.2.12-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 58.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bdcf6bc6a227c5a70fe52180e23dfc5b7c7c4c7a074e30be31c72e7caa1b48f |
|
MD5 | ac8a4a3eebcfa81977e61fc9e7bea124 |
|
BLAKE2b-256 | dae434fe199d8e4ee233b162bc09270c1e904e8cf6a0a4de9f106fbbc4b89ce6 |
File details
Details for the file truncjson-1.2.12-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 113.1 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96baf97398691a4830fa65092eef1ca3d4e5c6166f4344e542d9322015e27078 |
|
MD5 | 9b07b06e2c0db202a15ee732dc9d7798 |
|
BLAKE2b-256 | 54be7e2cb4b378c1401ee7345a384a8ad9b5f68bc40d7dc8ca04900d4723a10e |
File details
Details for the file truncjson-1.2.12-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 56.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1112df1f6c96070f9653cc81e42058de58368277eda91c6958f50c0cc2de904f |
|
MD5 | ce2c42586c44b76ff52ff2c715066ad9 |
|
BLAKE2b-256 | 5c05d20b97f10790757e7f5ffc6322717070768db53fee3d17647f1eb5bb100d |
File details
Details for the file truncjson-1.2.12-cp310-cp310-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-win32.whl
- Upload date:
- Size: 51.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae371ad17eafbc582f5c0128ab0910294ab8fa11120497d5036fb91764dd613e |
|
MD5 | c4dce0846bd0c7b28153cbb1ca23f179 |
|
BLAKE2b-256 | fcd8ee2bd5a14124ed52f4d2da6cd730bd9b797d3e4de4f37d8316c83601f0dd |
File details
Details for the file truncjson-1.2.12-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 312.5 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8893d5ac39d58d51518b8250f4da4e678750bef117eb473e5603dbf4bb885a2e |
|
MD5 | ad18d69e8f5ab8d97bede123ee6020c7 |
|
BLAKE2b-256 | 4734304c050c28bfdddc56d2acdaf272c079d8ecf12fef05b69ebf43606f4670 |
File details
Details for the file truncjson-1.2.12-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 298.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99dcc48b28615e376e60f41bd7f5e246f7a2872e237898d6f107f9271cb145fc |
|
MD5 | ede7d8c3d17f45a9c0c5fc71365103a1 |
|
BLAKE2b-256 | 8fda5f43725038f3dd2d3ae84ba250443a55ea9f35aa7fbbc5ee201e66812660 |
File details
Details for the file truncjson-1.2.12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 307.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bc78b35c3d700a74d32cb8d1e0fba34c1707da372f38762c5ab622470582427 |
|
MD5 | 9d9c0d2d847abb85d780d0a1e107ae7e |
|
BLAKE2b-256 | fc9edcafd55669ec0d360f39ecf685e810e5d4f7d829d57d83ed566b835fd5c7 |
File details
Details for the file truncjson-1.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 294.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3d9c175e34f2ba60671d81c87e918a3f76b76dcdc2be7ddf88d51a984621e91 |
|
MD5 | 53569ee679ead86e0ac292ecd8433b10 |
|
BLAKE2b-256 | a8637cf3294603412fb1f78121945a7a1ffbfe2d9a0e1ca5f70ee729a27329ad |
File details
Details for the file truncjson-1.2.12-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 58.4 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58ed02d906611df37ae97590092e740e06db62e05deb5d4dcb39144aedb645ed |
|
MD5 | 1eb6d05244bf60a5c278eb7f63ae7046 |
|
BLAKE2b-256 | 77821c54e8268356758d7d88fbae818fdeb78f5b61fe56187b92ab569ff9fb2b |
File details
Details for the file truncjson-1.2.12-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 113.0 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52e04ec7dd61eb6a7bccb030558ceef8b16665277fda00b585cda74b2053722b |
|
MD5 | e6349aa2c8220ec914cf7b2d724db722 |
|
BLAKE2b-256 | a469ded0e770bd72e958f183a75a33188fc48eef884bf9b28042b80d55ddad42 |
File details
Details for the file truncjson-1.2.12-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 57.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b4add4d1cee85a8a21509da74c6ece436180b0412f1f1bf0cbf457fe4f3b12e |
|
MD5 | dbd520e3c5f2a53c9b4ff3620560817d |
|
BLAKE2b-256 | 37af37637cf5da7a74b57638f94011421758a91efe489b5b75537a8333631adc |
File details
Details for the file truncjson-1.2.12-cp39-cp39-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-win32.whl
- Upload date:
- Size: 52.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f8836dc351346dbdeff41c3a3f41fc00739cf508ae3d72f7e4213358de16021 |
|
MD5 | 72707eca354084d192d78e74a33621cc |
|
BLAKE2b-256 | 0ac08b34c05d235d4a2ebe3d54d839b2e7204cd459546e2ba3d286bc2a2e7a3b |
File details
Details for the file truncjson-1.2.12-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 322.1 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f35913e732377728b0a57d6894b922ad81d13cf9fb69b991ea57e2d2dc31ec09 |
|
MD5 | 2f6163cd758f7dd49a1c25c878db98b3 |
|
BLAKE2b-256 | f7e0e764b958848689022176390668eaa45c4b4336b86e009ea39cc6c81d77bf |
File details
Details for the file truncjson-1.2.12-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 308.8 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31ef470dc959066eee4f246bca84698f2de17c39b84c809b50c4fe0da240279c |
|
MD5 | e514f60013a293a3dd59c8b330cd9b64 |
|
BLAKE2b-256 | 9192bad7af355df6d543da6244efe42a2294dd65dc21c0e1103f72dc043d3a13 |
File details
Details for the file truncjson-1.2.12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 315.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 945a85b3cd5ccf363bea93f2dbf9ea78fb2e62386cdafc8276dfb2dbc8951267 |
|
MD5 | c02efbeb786b33c2827496d55c5c3cba |
|
BLAKE2b-256 | d2d42bbc4de8df12a584ab4005544b707baa5647ada19e5f22f6b1c003b631de |
File details
Details for the file truncjson-1.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 302.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7650becfff30673f62aa11297106dac4b49bdaf95a3550cfcb038324b358725e |
|
MD5 | 21498917e8181c05e97184ff0a5d696b |
|
BLAKE2b-256 | a2a56f23ad74eebfb97c3ca6b954b6ce77c9149849a7ea8de8c3dfdbe64fac00 |
File details
Details for the file truncjson-1.2.12-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.0 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d82a601df26acc91c5ee54cd4cf4066382077dd4b49e8c1a32367d61a324fe5 |
|
MD5 | 1a42a013d30934f23f12c36c427a49a2 |
|
BLAKE2b-256 | 03f0dfafe8c02f07b0d29036ed101493aff0f045837bb86125eb4fa62c0aa138 |
File details
Details for the file truncjson-1.2.12-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 116.4 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3c2beae0625c597372188c6a9c8c5c0f6f44e079f58c2aa7d776e7a2cfb7159 |
|
MD5 | 99fad388413ab05b07354b59eb50c9da |
|
BLAKE2b-256 | 00e0ae3ed1511510095ecaf1ce69de3299e6c4a120ef9d20b5f83cbe4b6715d4 |
File details
Details for the file truncjson-1.2.12-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 58.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 683481c30faaf987b1dadb8e6854243ac9ae383a97c8c1e6ca3d7ad0172a24db |
|
MD5 | 327e8917aa77d2379149ba666e044437 |
|
BLAKE2b-256 | 9560c73f8168cab0f59130198f48b0acc728e61d2b4d0b7f9ca5002bda5d9403 |
File details
Details for the file truncjson-1.2.12-cp38-cp38-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-win32.whl
- Upload date:
- Size: 52.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d294fc874db8900cacdbb69313bf9c87cd35176a8509d9e61f75e44be3ec0fd |
|
MD5 | f6dc57d529284ec1eafba7c955ad2b45 |
|
BLAKE2b-256 | 867c6727c14daff3c1863a3e9b6391f0a8fbdccd9b81b0e8febf55a2fefc9b89 |
File details
Details for the file truncjson-1.2.12-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 330.6 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a027537a0c2ebffbb634b4b4a062290762fea72452a904b3d156159cc65eccf |
|
MD5 | d1822d62ab70f937653eda74178bedf3 |
|
BLAKE2b-256 | 7cb1a3f93e13d857caf2092a957f42d7c231b0a5294eebbc460ac853136209b8 |
File details
Details for the file truncjson-1.2.12-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 318.0 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f67197687820a695acf42f751fb80c82b2b8344d0ba7d6204468ad2a95790028 |
|
MD5 | aad894417ec00a052c2e3f9ba25f6a15 |
|
BLAKE2b-256 | ebd43344cf0ce61d799fef158a203a618087ceab449f4240efa6c7c6fbbb985b |
File details
Details for the file truncjson-1.2.12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 314.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99ed60fcfa458f3058edd829388092b1faf8f219e2683ad9173e9838ec0c5120 |
|
MD5 | ffda842d8ae271c00516ee22ae8c72a7 |
|
BLAKE2b-256 | 9304ca3cd567c3464c72cc81899404dc6b3b2dd3303ae6685bf16070548bdb6b |
File details
Details for the file truncjson-1.2.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 301.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a13058ac3e55bb0752c03ea61402c674ff8638710cd9ccf99c3c40fe5124cceb |
|
MD5 | f4826c0bda2675180a419c7d41d8565a |
|
BLAKE2b-256 | 5e6d6028bdf52b36befd8a952d2ee3a1b7caa1b1cbe07751fd9b2f7ad81e80d3 |
File details
Details for the file truncjson-1.2.12-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.3 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2405823254cc07cdceecc224f7577d5e5859aee52c01b6ddcdac681511333e43 |
|
MD5 | 5902cad8a70de819e9132f639947f6de |
|
BLAKE2b-256 | 97061a5c40cb1da8eaa89211a57189c375522a768acd4af2a62e8d4a07d4bff4 |
File details
Details for the file truncjson-1.2.12-cp38-cp38-macosx_10_9_universal2.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 117.0 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d05715f3d98e7da5fb3b82f87f367a38a17310959bb8228c74b0968a76cf52d |
|
MD5 | 104c7b537e6ee609b63e7984e2baf426 |
|
BLAKE2b-256 | b063692b84afc3c0e09ea967df3a6636e16d3b76b7258d59a9df8e940a8b691f |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 58.2 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aaac2877a4023f71462768dbc86d430908fcae8585854df7918c821909712b5 |
|
MD5 | 5028c16e08e5a4c10ac47ecafee83e15 |
|
BLAKE2b-256 | deac0650cd5b8ba9e051a1b2927023f264c21e5e0a8290df0dce442a19971135 |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-win32.whl
- Upload date:
- Size: 52.1 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e216b0b8a24e1b43dc8c3432816b8a1f5b1a0ae7572ea5616702b3d2a499f736 |
|
MD5 | 0e0d3a4e5080885454edd75ee3c2c4f2 |
|
BLAKE2b-256 | 5d3b292a2d122133efad99a717ccb45aa249b2c520f123ab379fd0d9a89d5632 |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 292.4 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c089fd55a84928f4e411a5388589134fcd7e7be49d643d1fdf2b721797a61d91 |
|
MD5 | 6f013c9308236ad1d5449361d37dadd2 |
|
BLAKE2b-256 | 6b5b2eebea11fea54db98a3681a0930f879b2c2dfd1564e371c8e5bb942ffff1 |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 287.2 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36b261f6690b0bf1830ec13fa96ffa372aea65ee67fab7d13dd3d551c14e4701 |
|
MD5 | ff04268b6358a6e2c4c42348e3607b9a |
|
BLAKE2b-256 | 692c6b78f81ee4f6d53b46b6ae046a571765ee6688d8d1050d4335543f423813 |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 290.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4393cb27200594f1e86fdb33df7bacd12db5bd45a9c975d30658b302cf73f4eb |
|
MD5 | 2edd1ea386aaa7d0874db4afa27301c1 |
|
BLAKE2b-256 | c071168111d73f9b4776f9f1e947693428b9b78536836a205e200a0e1ae5f10c |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 277.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49b3f47be09470f29c30c88cd7d4b0a585890ee69fa037af882eedd6fd42f1a7 |
|
MD5 | 7a03a7462b8193a4569024959807bc13 |
|
BLAKE2b-256 | 4c97161cec6611b499a08bd9af784ffa4ed872732039af5aabab67822f119318 |
File details
Details for the file truncjson-1.2.12-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.4 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 720a24130c39d6c76adf8c65d86edaa5e34ee015ac138be3345c6fa68a8f2973 |
|
MD5 | 231439cb372975d0686062e6e7995392 |
|
BLAKE2b-256 | 57c7d9f16a395139b44d6e37b12c2f720ab7f990e51417f62b4cc487c71306a0 |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 66.5 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f83224ab16345b4c1a3608174db445ef3a3e5ce61063bbfa478e8cd264375fb6 |
|
MD5 | b3462cd1f9b5315a42c729e65c8e7ee8 |
|
BLAKE2b-256 | 363c7874169dffe5e238fa35f6d7fd56d07150125bd940088a1de076e347fedb |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-win32.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-win32.whl
- Upload date:
- Size: 56.7 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffea293f360b6494d0ffae8a7093ebcf898b5ac76f7a361fce69915d966911d8 |
|
MD5 | eb974a8f40a95bdd210b19aec0669045 |
|
BLAKE2b-256 | e3f79133716ab1c54cdfbfc4f6d72bf09c8c8c0e49483e0a9b55921dad633980 |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 275.2 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c5284ebcda01c97adc81cfe6b86fb99f1347f4f58dda26a2a12fc77ce1129e6 |
|
MD5 | b5e89182f56078876f053513b41b2479 |
|
BLAKE2b-256 | 165fc8cb30f0b638bb7c64749e38d19a8b502c259f9317653fbc85cb8d2f9129 |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-musllinux_1_1_i686.whl
- Upload date:
- Size: 274.0 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ad710bc917b3e140324e1ad9e3568cdc6f27e591082e8081297bdc473d68cf3 |
|
MD5 | dafbe459ed2cd563abaa651279a97409 |
|
BLAKE2b-256 | d321bf31d210bf61fb68cdc71b9928e195644dd7a7a7bd139f0365ab11708f2f |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 271.6 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c9441c841815b9a63e776fa1a8231a7f797917a2ad809ea5bbbc7ead067007c |
|
MD5 | f5f38c516eb998b02c2015f45be59d11 |
|
BLAKE2b-256 | 34e071a87cb8c16f25ae02d153ecff4c931ee9516f348da612ecc09ced6fde7e |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 261.2 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a955dc0a9cdeae4b3d6702d7e2db3716869284b3c02a611ab67161f82adead1 |
|
MD5 | 935e2854c8b924715a774d9bb0d0005d |
|
BLAKE2b-256 | 3111098047d8787d05bf4a6bb5b1c38ba058ff738c4ca5225e52db137fb88dc0 |
File details
Details for the file truncjson-1.2.12-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: truncjson-1.2.12-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 57.2 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1e244fa17383ad2a411e5434ab3deeb025eeba8472623f9dffcc64dff4a267f |
|
MD5 | 079ff80a7eef996e6af9c6f4a95df0f4 |
|
BLAKE2b-256 | 18a29ef2fa2ab142e7d9e9926a0fd601ef52db7ca3e64f0c145919a9adadb235 |