Skip to main content

Converts QJSON, a human readable JSON, into JSON

Project description

qjson to json converter

json is a very popular data encoding with a good support in many programming languages. It may thus seam a good idea to use it for manually managed data like configuration files. Unfortunately, json is not very convenient for such application because every string must be quoted and elements must be separated by commas. It is easy to parse by a program and to verify that it is correct, but it’s not connvenient to write.

For this reason, different alternatives to json have been proposed which are more human friendly like [yaml] or hjson for instance.

qjson is inspired by hjson by being a human readable and extended json. The difference between qjson and hjson is that qjson extends its functionality and relax some rules.

Here is a list of qjson text properties:

  • comments of the form //... #... or /.../
  • commas between array values and object members are optional
  • double quote, single quote and quoteless strings
  • non-breaking space is considered as a white space character
  • newline is \n or \r\n, report \r alone or \n\r as an error
  • numbers are integer, floating point, hexadecimal, octal or binary
  • numbers may contain underscore '_' as separator
  • numbers may be simple mathematical expression with parenthesis
  • member identifiers may be quoteless strings including spaces
  • the newline type in multiline string is explicitely specified
  • backspace and form feed controls are invalid characters except in /.../ comments or multiline strings
  • time durations expressed with w, d, h, m, s suffix are converted to seconds
  • time specified in ISO format is converted to UTC time is seconds

Usage

Install the qjson to json converter package with the command

python3 -m pip install qjson2json

Onced installed, it can be used.

$python3
>>> import qjson2json
>>> qjson2json.decode('a:b')
'{"a":"b"}'

Reliability

qjson2json is a python extension using the C library qjson-c. qjson-c is a direct translation of qjson-go that has been extensively tested with manualy defined tests (100% coverage). AFL fuzzing was run on qjson-c for many months without finding a simple hang or crash. For this fuzzing test, the json text produced, when the input was valid, was checked with json-c to detect invalid json. All json output in the tests are valid json.

This code should thus not crash or hang your program, and json output is valid. What could not be extensively and automatically tested is if the output is the expected output. It was only verified in the manual tests of qjson-go.

For bug reports in this qjson2json package, fill an issue in the qjson-py3 project.

Contributing

qjson is a recently developped package. It is thus a good time to suggest changes or extensions to the syntax since the user base is very small.

For suggestions or problems relative to syntax, fill an issue in the qjson-syntax project.

Any contribution is welcome.

License

The licences is the 3-BSD clause.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qjson2json-0.0.5.tar.gz (19.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

qjson2json-0.0.5-cp39-cp39-win_amd64.whl (27.1 kB view details)

Uploaded CPython 3.9Windows x86-64

qjson2json-0.0.5-cp39-cp39-win32.whl (23.9 kB view details)

Uploaded CPython 3.9Windows x86

qjson2json-0.0.5-cp39-cp39-manylinux2010_x86_64.whl (63.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

qjson2json-0.0.5-cp39-cp39-manylinux2010_i686.whl (61.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

qjson2json-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (27.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

qjson2json-0.0.5-cp38-cp38-win_amd64.whl (27.1 kB view details)

Uploaded CPython 3.8Windows x86-64

qjson2json-0.0.5-cp38-cp38-win32.whl (23.9 kB view details)

Uploaded CPython 3.8Windows x86

qjson2json-0.0.5-cp38-cp38-manylinux2010_x86_64.whl (63.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

qjson2json-0.0.5-cp38-cp38-manylinux2010_i686.whl (61.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qjson2json-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl (27.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qjson2json-0.0.5-cp37-cp37m-win_amd64.whl (27.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

qjson2json-0.0.5-cp37-cp37m-win32.whl (23.9 kB view details)

Uploaded CPython 3.7mWindows x86

qjson2json-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl (64.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

qjson2json-0.0.5-cp37-cp37m-manylinux2010_i686.whl (62.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qjson2json-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (27.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

qjson2json-0.0.5-cp36-cp36m-win_amd64.whl (27.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

qjson2json-0.0.5-cp36-cp36m-win32.whl (23.9 kB view details)

Uploaded CPython 3.6mWindows x86

qjson2json-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl (64.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

qjson2json-0.0.5-cp36-cp36m-manylinux2010_i686.whl (61.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qjson2json-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl (27.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file qjson2json-0.0.5.tar.gz.

File metadata

  • Download URL: qjson2json-0.0.5.tar.gz
  • Upload date:
  • Size: 19.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5.tar.gz
Algorithm Hash digest
SHA256 3c82a4e6bd50859d40faf53b0f7886ab140947219aedd8ef9f9465735c111500
MD5 700d4f012850f3474b0c84ff7574957c
BLAKE2b-256 c5d57dcda9d9731c3ef59f219b1e8e6cc7ee24b6741839279d50fffea4321457

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 27.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 70dabee9ef4b3b35b2b0843f25d19b06c2143ed5a167c84ac70bdd7406132074
MD5 1aaa346a6d770f54f16ee7607f0cd740
BLAKE2b-256 e408bd1638234de1669422b15979450925a8e5f3b517a782df3ed79e08865234

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 275e8d850a49d95168bc7cc67e68fb02e65d3057f04d723da58f08f48ca79055
MD5 1cab584b646a5624d4bdf8ca5be17f72
BLAKE2b-256 4f715be309651918cfcbb6a569e05adcbaea2432c9cd3db9be29fa4e78ac4394

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 63.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 71fcaa41ed576724ac824f469d96ea8f723450a451af629af3efacec0632e99f
MD5 db2586d96607388e7ca2f1fea2642064
BLAKE2b-256 c39203543f2ab9c096ed86d98af7eb122841231bc5a9054cba847eb7e9a0d672

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3ad5e49a15749b9598e0f8b338d3f2e38020f8c7e4bd0418750b3daa3263a5c9
MD5 e9944c1554bc33a4309f5ef60feddded
BLAKE2b-256 446478d0c5df1de430f71bdf34d5cc47d885484eed475f7e37e84a85f0ef5d2f

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a3570451428af6658c5d548bd96f3334585ea2d55c72a755487e38df068b8f8
MD5 65dc270fe422d2c71eb132a0012b57c1
BLAKE2b-256 db0ee46db2be354fde1119bdd90984687a7c97fd0213f3b36cebe0529c2119d1

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 27.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 01cc3b91990e383d31e38ebd8aed7d98948e511cd82a80ac8dcbb577d06a65c2
MD5 e73f4540638a5256f15906e6ca99c7ef
BLAKE2b-256 766118515c53e97e7c60498446285734807d50c04f91f3dfedbacacff085c549

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a61c54eebe9c0194de4712508d172c8c40536d4e1155aceb22687efa5f66f610
MD5 713ac73b3f7de990865eb127dfa9b5e8
BLAKE2b-256 4a9e4f296dd642c6efe46ee09bafa6e5547560cdd017eb50342cae8cf7a192a1

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 63.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 217030cd2a5c367e0500ba55ee168961ab06aee8b2f0a3e748f0a3a70d45103d
MD5 667d76a57afa6542d276d679e1510da6
BLAKE2b-256 4a6f2b1304a936fc019e886d3f180a86e903bafd99f11932ec4f586c4bf6dcd3

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 61.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f52a210cc444b929b2a2a1e303e4c6c49cec67056a21c181fcbc2396ddb06afc
MD5 8d12aa3d6c9e18faf3368b6451be0dc1
BLAKE2b-256 55a641d789ab7946700c2065686e86c7f3e8dc0004388ae04d7242a797184a83

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56942faada50585cc51aa11f5323c39ba6372d0c029e08a79b23df9ba534aa4e
MD5 45f34fe7b71727aad82e91ff7902680f
BLAKE2b-256 049ba2616a7d4757efbf2da45fb582883b6c907194c721e658afa4fd66e199e6

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 27.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 df8b2a3bd8da5132f7567b6df6e60d8b8d8bd4cfdf4eca992c6a27c8a6989283
MD5 82dfd233ce9ad7d31df18337ee9a680d
BLAKE2b-256 302b5ad90816cc6d91c7f3f0b26e7ce84b72315b8bb4cb850f3e7d8517315df4

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 17290c490d473c9e21b0661454dc4fb916f37ea9fb9db4eccb90a1739603fd11
MD5 0c0021de898de6c59a940f72b0675631
BLAKE2b-256 3d7c4473af557c6bb1931bf08e6352d5ae0a49c4ae13e32da737eff46b837a33

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5169a5ad16f3b31cbe66c2e68f9075199b40fdccf0f6170f01b8e3ef906d3e84
MD5 382dbe846fded96c5e0c6e48deba0b95
BLAKE2b-256 351ce9530d09f386161b9558faf77a804c0083ac82a297e54eb3e51770f5695f

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9131b986766abd8075f0b4563cef388ca34edbfb9d15c09ea728122e30d3f1e0
MD5 b4cf6fcfe667fc481806d57f677838f5
BLAKE2b-256 33c65a581538b018c6f4309ee7dfd2325736814b5e518fde62398710ad6c47b7

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 532ff37072233443c6921957d57c3506665c971ec989949f24d19d210cdbee56
MD5 eae949eea5f0d113301868932a673010
BLAKE2b-256 c39e47144700e16e9e20d7f4d7e8bdfc36531d89fd133408249ee063c735d887

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 27.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8a91d5b385aaa5ca647e94a3d8678630e054377db7871e9ace37c5c8dd4e3d18
MD5 ac2f1846812c0fb67cefe51098230948
BLAKE2b-256 2a36fe14c0a58e1c1739142ab3b7cde397f1033ef9cea09aa9723aa83423e669

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 870494c3065b6f2e1543510956cf0ea1e7d6652a27be83a4009da221542ab119
MD5 006e678a52b87ae02fbdb80aa774a818
BLAKE2b-256 0bd4731b76545cdda0e489bc023a69f748c3715b32a367b660b2c7d195da2b31

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 64.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b9b3202976531ec539cf0b0cb3e9f6e11031a9ae4f8141680b822dfeb773d5cd
MD5 a8808c09a28af625abc2fdcdfc48d259
BLAKE2b-256 d0327c6d1f725e133f237d81296b2a273a63bfce365bff038669b0ec00e5b956

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 61.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8f0a1d74784548205604370ddbf96f39f94ef0c6149fcf0eaac25e15705233d0
MD5 7e13f352e1f4ef1fa8d920cf478209cc
BLAKE2b-256 adbc52f7d76f41b8cdc67460abb1b10ec2e141134ffe161a20de40c5729d424b

See more details on using hashes here.

File details

Details for the file qjson2json-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qjson2json-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for qjson2json-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42798939d052c4f7234cc3364b35d5102110a747f53c8acbb8fd5c6c761fedf2
MD5 b2679391ce6e4a8bac9671838bfe40ba
BLAKE2b-256 ea01e5ffaf2c5e6a77330a0dbfc1fcdde8449fac2736d08392ab7580fdb63483

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page