Skip to main content

Iterative JSON parser with standard Python iterator interfaces

Project description

https://travis-ci.com/ICRAR/ijson.svg?branch=master https://ci.appveyor.com/api/projects/status/32wiho6ojw3eakp8/branch/master?svg=true https://coveralls.io/repos/github/ICRAR/ijson/badge.svg?branch=master https://badge.fury.io/py/ijson.svg https://img.shields.io/pypi/pyversions/ijson.svg https://img.shields.io/pypi/dd/ijson.svg https://img.shields.io/pypi/dw/ijson.svg https://img.shields.io/pypi/dm/ijson.svg

ijson

Ijson is an iterative JSON parser with standard Python iterator interfaces.

Installation

Ijson is hosted in PyPI, so you should be able to install it via pip:

pip install ijson

Binary wheels are provided for major platforms (Linux, MacOS, Windows) and python versions (2.7, 3.5+). These are built and published automatically using cibuildwheel via Travis CI.

Usage

All usage example will be using a JSON document describing geographical objects:

{
  "earth": {
    "europe": [
      {"name": "Paris", "type": "city", "info": { ... }},
      {"name": "Thames", "type": "river", "info": { ... }},
      // ...
    ],
    "america": [
      {"name": "Texas", "type": "state", "info": { ... }},
      // ...
    ]
  }
}

High-level interfaces

Most common usage is having ijson yield native Python objects out of a JSON stream located under a prefix. This is done using the items function. Here’s how to process all European cities:

import ijson

f = urlopen('http://.../')
objects = ijson.items(f, 'earth.europe.item')
cities = (o for o in objects if o['type'] == 'city')
for city in cities:
    do_something_with(city)

For how to build a prefix see the prefix section below.

Other times it might be useful to iterate over object members rather than objects themselves (e.g., when objects are too big). In that case one can use the kvitems function instead:

import ijson

f = urlopen('http://.../')
european_places = ijson.kvitems(f, 'earth.europe.item')
names = (v for k, v in european_places if k == 'name')
for name in names:
    do_something_with(name)

Lower-level interfaces

Sometimes when dealing with a particularly large JSON payload it may worth to not even construct individual Python objects and react on individual events immediately producing some result. This is achieved using the parse function:

import ijson

parser = ijson.parse(urlopen('http://.../'))
stream.write('<geo>')
for prefix, event, value in parser:
    if (prefix, event) == ('earth', 'map_key'):
        stream.write('<%s>' % value)
        continent = value
    elif prefix.endswith('.name'):
        stream.write('<object name="%s"/>' % value)
    elif (prefix, event) == ('earth.%s' % continent, 'end_map'):
        stream.write('</%s>' % continent)
stream.write('</geo>')

Even more bare-bones is the ability to react on individual events without even calculating a prefix using the basic_parse function:

import ijson

events = ijson.basic_parse(urlopen('http://.../'))
num_names = sum(1 for event, value in events
                if event == 'map_key' and value == 'name')

bytes/str support

Although not usually how they are meant to be run, all the functions above also accept bytes and str objects (and unicode in python 2.7) directly as inputs. These are then internally wrapped into a file object, and further processed. This is useful for testing and prototyping, but probably not extremely useful in real-life scenarios.

asyncio support

In python 3.5+ all of the methods above work also on file-like asynchronous objects, so they can be iterated asynchronously. In other words, something like this:

import asyncio
import ijson

async def run():
   f = await async_urlopen('http://..../')
   async for object in ijson.items(f, 'earth.europe.item'):
      if object['type'] == 'city':
         do_something_with(city)
asyncio.run(run())

An explicit set of *_async functions also exists offering the same functionality, except they will fail if anything other than a file-like asynchronous object is given to them. (so the example above can also be written using ijson.items_async). In fact in ijson version 3.0 this was the only way to access the asyncio support.

Intercepting events

The four routines shown above internally chain against each other: tuples generated by basic_parse are the input for parse, whose results are the input to kvitems and items.

Normally users don’t see this interaction, as they only care about the final output of the function they invoked, but there are occasions when tapping into this invocation chain this could be handy. This is supported by passing the output of one function (i.e., an iterable of events, usually a generator) as the input of another, opening the door for user event filtering or injection.

For instance if one wants to skip some content before full item parsing:

import io
import ijson

parse_events = ijson.parse(io.BytesIO(b'["skip", {"a": 1}, {"b": 2}, {"c": 3}]'))
while True:
    prefix, event, value = next(parse_event)
    if value == "skip":
        break
for obj in ijson.items(parse_events, 'item')
    print(obj)

Note that this interception only makes sense for the basic_parse -> parse, parse -> items and parse -> kvitems interactions.

Push interfaces

All examples above use a file-like object as the data input (both the normal case, and for asyncio support), and hence are “pull” interfaces, with the library reading data as necessary. If for whatever reason it’s not possible to use such method, you can still push data through yet a different interface: coroutines (via generators, not asyncio coroutines). Coroutines effectively allow users to send data to them at any point in time, with a final target coroutine-like object receiving the results.

In the following example the user is doing the reading instead of letting the library do it:

import ijson

@ijson.coroutine
def print_cities():
   while True:
      obj = (yield)
      if obj['type'] != 'city':
         continue
      print(obj)

coro = ijson.items_coro(print_cities(), 'earth.europe.item')
f = urlopen('http://.../')
for chunk in iter(functools.partial(f.read, buf_size)):
   coro.send(chunk)
coro.close()

All four ijson iterators have a *_coro counterpart that work by pushing data into them. Instead of receiving a file-like object and option buffer size as arguments, they receive a single target argument, which should be a coroutine-like object (anything implementing a send method) through which results will be published.

An alternative to providing a coroutine is to use ijson.sendable_list to accumulate results, providing the list is cleared after each parsing iteration, like this:

import ijson

events = ijson.sendable_list()
coro = ijson.items_coro(events, 'earth.europe.item')
f = urlopen('http://.../')
for chunk in iter(functools.partial(f.read, buf_size)):
   coro.send(chunk)
   process_accumulated_events(events)
   del events[:]
coro.close()
process_accumulated_events(events)

Options

Additional options are supported by all ijson functions to give users more fine-grained control over certain operations:

  • The use_float option (defaults to False) controls how non-integer values are returned to the user. If set to True users receive float() values; otherwise Decimal values are constructed. Note that building float values is usually faster, but on the other hand there might be loss of precision (which most applications will not care about) and will raise an exception when overflow occurs (e.g., if 1e400 is encountered). This option also has the side-effect that integer numbers bigger than 2^64 (but sometimes 2^32, see backends) will also raise an overflow error, due to similar reasons. Future versions of ijson might change the default value of this option to True.

  • The multiple_values option (defaults to False) controls whether multiple top-level values are supported. JSON content should contain a single top-level value (see the JSON Grammar). However there are plenty of JSON files out in the wild that contain multiple top-level values, often separated by newlines. By default ijson will fail to process these with a parse error: trailing garbage error unless multiple_values=True is specified.

  • Similarly the allow_comments option (defaults to False) controls whether C-style comments (e.g., /* a comment */), which are not supported by the JSON standard, are allowed in the content or not.

  • For functions taking a file-like object, an additional buf_size option (defaults to 65536 or 64KB) specifies the amount of bytes the library should attempt to read each time.

  • The items and kvitems functions, and all their variants, have an optional map_type argument (defaults to dict) used to construct objects from the JSON stream. This should be a dict-like type supporting item assignment.

Events

When using the lower-level ijson.parse function, three-element tuples are generated containing a prefix, an event name, and a value. Events will be one of the following:

  • start_map and end_map indicate the beginning and end of a JSON object, respectively. They carry a None as their value.

  • start_array and end_array indicate the beginning and end of a JSON array, respectively. They also carry a None as their value.

  • map_key indicates the name of a field in a JSON object. Its associated value is the name itself.

  • null, boolean, integer, double, number and string all indicate actual content, which is stored in the associated value.

Prefix

A prefix represents the context within a JSON document where an event originates at. It works as follows:

  • It starts as an empty string.

  • A <name> part is appended when the parser starts parsing the contents of a JSON object member called name, and removed once the content finishes.

  • A literal item part is appended when the parser is parsing elements of a JSON array, and removed when the array ends.

  • Parts are separated by ..

When using the ijson.items function, the prefix works as the selection for which objects should be automatically built and returned by ijson.

Backends

Ijson provides several implementations of the actual parsing in the form of backends located in ijson/backends:

  • yajl2_c: a C extension using YAJL 2.x. This is the fastest, but might require a compiler and the YAJL development files to be present when installing this package. Binary wheel distributions exist for major platforms/architectures to spare users from having to compile the package.

  • yajl2_cffi: wrapper around YAJL 2.x using CFFI.

  • yajl2: wrapper around YAJL 2.x using ctypes, for when you can’t use CFFI for some reason.

  • yajl: deprecated YAJL 1.x + ctypes wrapper, for even older systems.

  • python: pure Python parser, good to use with PyPy

You can import a specific backend and use it in the same way as the top level library:

import ijson.backends.yajl2_cffi as ijson

for item in ijson.items(...):
    # ...

Importing the top level library as import ijson uses the first available backend in the same order of the list above, and its name is recorded under ijson.backend. If the IJSON_BACKEND environment variable is set its value takes precedence and is used to select the default backend.

You can also use the ijson.get_backend function to get a specific backend based on a name:

backend = ijson.get_backend('yajl2_c')
for item in backend.items(...):
    # ...

Performance tips

In more-or-less decreasing order, these are the most common actions you can take to ensure you get most of the performance out of ijson:

  • Make sure you use the fastest backend available. See backends for details.

  • If you know your JSON data contains only numbers that are “well behaved” consider turning on the use_float option. See options for details.

  • Make sure you feed ijson with binary data instead of text data. See faq #1 for details.

  • Play with the buf_size option, as depending on your data source and your system a value different from the default might show better performance. See options for details.

FAQ

  1. Q: Does ijson work with bytes or str values?

    A: In short: both are accepted as input, outputs are only str.

    All ijson functions expecting a file-like object should ideally be given one that is opened in binary mode (i.e., its read function returns bytes objects, not str). However if a text-mode file object is given then the library will automatically encode the strings into UTF-8 bytes. A warning is currently issued (but not visible by default) alerting users about this automatic conversion.

    On the other hand ijson always returns text data (JSON string values, object member names, event names, etc) as str objects in python 3, and unicode objects in python 2.7. This mimics the behavior of the system json module.

  2. Q: How are numbers dealt with?

    A: ijson returns int values for integers and decimal.Decimal values for floating-point numbers. This is mostly because of historical reasons. Since 3.1 a new use_float option (defaults to False) is available to return float values instead. See the options section for details.

  3. Q: I’m getting an UnicodeDecodeError, or an IncompleteJSONError with no message

    A: This error is caused by byte sequences that are not valid in UTF-8. In other words, the data given to ijson is not really UTF-8 encoded, or at least not properly.

    Depending on where the data comes from you have different options:

    • If you have control over the source of the data, fix it.

    • If you have a way to intercept the data flow, do so and pass it through a “byte corrector”. For instance, if you have a shell pipeline feeding data through stdin into your process you can add something like ... | iconv -f utf8 -t utf8 -c | ... in between to correct invalid byte sequences.

    • If you are working purely in python, you can create a UTF-8 decoder using codecs’ incrementaldecoder to leniently decode your bytes into strings, and feed those strings (using a file-like class) into ijson (see our string_reader_async internal class for some inspiration).

    In the future ijson might offer something out of the box to deal with invalid UTF-8 byte sequences.

  4. Q: I’m getting parse error: trailing garbage or Additional data found errors

    A: This error signals that the input contains more data than the top-level JSON value it’s meant to contain. This is usually caused by JSON data sources containing multiple values, and is usually solved by passing the multiple_values=True to the ijson function in use. See the options section for details.

  5. Q: Are there any differences between the backends?

    A: Apart from their performance, all backends are designed to support the same capabilities. There are however some small known differences:

    • The yajl backend doesn’t support multiple_values=True. It also doesn’t complain about additional data found after the end of the top-level JSON object. When using use_float=True it also doesn’t properly support values greater than 2^32 in 32-bit platforms or Windows. Numbers with leading zeros are not reported as invalid (although they are invalid JSON numbers). Incomplete JSON tokens at the end of an incomplete document (e.g., {"a": fals) are not reported as IncompleteJSONError.

    • The python backend doesn’t support allow_comments=True It also internally works with str objects, not bytes, but this is an internal detail that users shouldn’t need to worry about, and might change in the future.

Acknowledgements

ijson was originally developed and actively maintained until 2016 by Ivan Sagalaev. In 2019 he handed over the maintenance of the project and the PyPI ownership.

Python parser in ijson is relatively simple thanks to Douglas Crockford who invented a strict, easy to parse syntax.

The YAJL library by Lloyd Hilaiel is the most popular and efficient way to parse JSON in an iterative fashion.

Ijson was inspired by yajl-py wrapper by Hatem Nassrat. Though ijson borrows almost nothing from the actual yajl-py code it was used as an example of integration with yajl using ctypes.

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

ijson-3.1.4.tar.gz (56.8 kB view details)

Uploaded Source

Built Distributions

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

ijson-3.1.4-pp37-pypy37_pp73-win32.whl (46.3 kB view details)

Uploaded PyPyWindows x86

ijson-3.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl (60.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

ijson-3.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (50.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

ijson-3.1.4-pp36-pypy36_pp73-win32.whl (46.3 kB view details)

Uploaded PyPyWindows x86

ijson-3.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl (60.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

ijson-3.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (50.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

ijson-3.1.4-pp27-pypy_73-manylinux2010_x86_64.whl (57.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

ijson-3.1.4-pp27-pypy_73-manylinux1_x86_64.whl (57.7 kB view details)

Uploaded PyPy

ijson-3.1.4-pp27-pypy_73-macosx_10_9_x86_64.whl (48.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

ijson-3.1.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (133.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp39-cp39-win_amd64.whl (48.9 kB view details)

Uploaded CPython 3.9Windows x86-64

ijson-3.1.4-cp39-cp39-win32.whl (46.2 kB view details)

Uploaded CPython 3.9Windows x86

ijson-3.1.4-cp39-cp39-manylinux2014_aarch64.whl (129.4 kB view details)

Uploaded CPython 3.9

ijson-3.1.4-cp39-cp39-manylinux2010_x86_64.whl (131.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp39-cp39-manylinux2010_i686.whl (123.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

ijson-3.1.4-cp39-cp39-manylinux1_x86_64.whl (131.4 kB view details)

Uploaded CPython 3.9

ijson-3.1.4-cp39-cp39-manylinux1_i686.whl (123.7 kB view details)

Uploaded CPython 3.9

ijson-3.1.4-cp39-cp39-macosx_10_9_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ijson-3.1.4-cp38-cp38-win_amd64.whl (48.8 kB view details)

Uploaded CPython 3.8Windows x86-64

ijson-3.1.4-cp38-cp38-win32.whl (46.1 kB view details)

Uploaded CPython 3.8Windows x86

ijson-3.1.4-cp38-cp38-manylinux2014_aarch64.whl (131.1 kB view details)

Uploaded CPython 3.8

ijson-3.1.4-cp38-cp38-manylinux2010_x86_64.whl (133.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp38-cp38-manylinux2010_i686.whl (126.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

ijson-3.1.4-cp38-cp38-manylinux1_x86_64.whl (133.2 kB view details)

Uploaded CPython 3.8

ijson-3.1.4-cp38-cp38-manylinux1_i686.whl (126.1 kB view details)

Uploaded CPython 3.8

ijson-3.1.4-cp38-cp38-macosx_10_9_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ijson-3.1.4-cp37-cp37m-win_amd64.whl (48.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

ijson-3.1.4-cp37-cp37m-win32.whl (46.0 kB view details)

Uploaded CPython 3.7mWindows x86

ijson-3.1.4-cp37-cp37m-manylinux2014_aarch64.whl (126.7 kB view details)

Uploaded CPython 3.7m

ijson-3.1.4-cp37-cp37m-manylinux2010_x86_64.whl (126.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp37-cp37m-manylinux2010_i686.whl (121.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

ijson-3.1.4-cp37-cp37m-manylinux1_x86_64.whl (126.2 kB view details)

Uploaded CPython 3.7m

ijson-3.1.4-cp37-cp37m-manylinux1_i686.whl (121.1 kB view details)

Uploaded CPython 3.7m

ijson-3.1.4-cp37-cp37m-macosx_10_9_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ijson-3.1.4-cp36-cp36m-win_amd64.whl (48.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

ijson-3.1.4-cp36-cp36m-win32.whl (46.0 kB view details)

Uploaded CPython 3.6mWindows x86

ijson-3.1.4-cp36-cp36m-manylinux2014_aarch64.whl (121.5 kB view details)

Uploaded CPython 3.6m

ijson-3.1.4-cp36-cp36m-manylinux2010_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp36-cp36m-manylinux2010_i686.whl (115.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

ijson-3.1.4-cp36-cp36m-manylinux1_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.6m

ijson-3.1.4-cp36-cp36m-manylinux1_i686.whl (115.8 kB view details)

Uploaded CPython 3.6m

ijson-3.1.4-cp36-cp36m-macosx_10_9_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ijson-3.1.4-cp35-cp35m-win_amd64.whl (48.7 kB view details)

Uploaded CPython 3.5mWindows x86-64

ijson-3.1.4-cp35-cp35m-win32.whl (46.0 kB view details)

Uploaded CPython 3.5mWindows x86

ijson-3.1.4-cp35-cp35m-manylinux2014_aarch64.whl (120.5 kB view details)

Uploaded CPython 3.5m

ijson-3.1.4-cp35-cp35m-manylinux2010_x86_64.whl (120.2 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp35-cp35m-manylinux2010_i686.whl (114.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

ijson-3.1.4-cp35-cp35m-manylinux1_x86_64.whl (120.2 kB view details)

Uploaded CPython 3.5m

ijson-3.1.4-cp35-cp35m-manylinux1_i686.whl (114.7 kB view details)

Uploaded CPython 3.5m

ijson-3.1.4-cp35-cp35m-macosx_10_9_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

ijson-3.1.4-cp27-cp27mu-manylinux2010_x86_64.whl (118.2 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp27-cp27mu-manylinux2010_i686.whl (110.2 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

ijson-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl (118.2 kB view details)

Uploaded CPython 2.7mu

ijson-3.1.4-cp27-cp27mu-manylinux1_i686.whl (110.2 kB view details)

Uploaded CPython 2.7mu

ijson-3.1.4-cp27-cp27m-manylinux2010_x86_64.whl (118.1 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

ijson-3.1.4-cp27-cp27m-manylinux2010_i686.whl (110.2 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

ijson-3.1.4-cp27-cp27m-manylinux1_x86_64.whl (118.1 kB view details)

Uploaded CPython 2.7m

ijson-3.1.4-cp27-cp27m-manylinux1_i686.whl (110.2 kB view details)

Uploaded CPython 2.7m

ijson-3.1.4-cp27-cp27m-macosx_10_9_x86_64.whl (50.4 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file ijson-3.1.4.tar.gz.

File metadata

  • Download URL: ijson-3.1.4.tar.gz
  • Upload date:
  • Size: 56.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4.tar.gz
Algorithm Hash digest
SHA256 1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea
MD5 cefa8660ffdbe5d2950969994b33d2b2
BLAKE2b-256 a8daf4b5fda308b60c6c31aa4203f20133a3b5b472e41c0907bc14b7c555cde2

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 3d10eee52428f43f7da28763bb79f3d90bbbeea1accb15de01e40a00885b6e89
MD5 f21abbbe622fad6ea2ac953e84598f74
BLAKE2b-256 d948f36948b4b6b708385cbc434ab70329f5b6eef7f91b0995b42192e3e5bda4

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 60.5 kB
  • Tags: PyPy, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 97e4df67235fae40d6195711223520d2c5bf1f7f5087c2963fcde44d72ebf448
MD5 e17d54661f6ae37e78503a037f692e70
BLAKE2b-256 aeed894c8c2a53ea3b8d1e0dc44a5c1bd93a0bfc6742ac74e15098828e706b88

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 60.5 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee13ceeed9b6cf81b3b8197ef15595fc43fd54276842ed63840ddd49db0603da
MD5 8f806c584001b822e6fd9a362d470a35
BLAKE2b-256 9edb9c662895c964968791f2894aee6fb4c2d3145dc7ff87a721bb9278c1f36b

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: PyPy, 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f11da15ec04cc83ff0f817a65a3392e169be8d111ba81f24d6e09236597bb28c
MD5 214e47e38c72ced85aade5be2b8196eb
BLAKE2b-256 99041f261a4bc3643cd8de48e0c1ca03283b6f2f2a2511eed2a23033abdf379c

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 6774ec0a39647eea70d35fb76accabe3d71002a8701c0545b9120230c182b75b
MD5 d27569de6249e301c7016257ec9ad017
BLAKE2b-256 1bf019fba62b20d2601cf086b24525309a42fec96727dad9d9170a1bb2943de3

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 60.5 kB
  • Tags: PyPy, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15d5356b4d090c699f382c8eb6a2bcd5992a8c8e8b88c88bc6e54f686018328a
MD5 cb06f988bdfd3ef2aa00caf465cff254
BLAKE2b-256 781ac48ae8a129ea4b8fe6ed9def0416d19466f0584c386f0cfd1715e239c0ed

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 60.5 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 252defd1f139b5fb8c764d78d5e3a6df81543d9878c58992a89b261369ea97a7
MD5 c7545cb973a1c11fcb115bd3a4dad07c
BLAKE2b-256 5c39b5fb82d14929a724d5e7e9476fb9dc09326ec0bb1ff1c6f1a41d56ba3bd6

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 50.9 kB
  • Tags: PyPy, 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2844d4a38d27583897ed73f7946e205b16926b4cab2525d1ce17e8b08064c706
MD5 05a06f7b5ccec5cb0b68858b31499e4c
BLAKE2b-256 3e386124b9c1bb3f77c1aaf4ab8958e3d376acce29365d088a51516c41c1fd14

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 57.7 kB
  • Tags: PyPy, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28fc168f5faf5759fdfa2a63f85f1f7a148bbae98f34404a6ba19f3d08e89e87
MD5 dd67d089e5e54c0fdde29c51a2994aa5
BLAKE2b-256 d6599b3f841597002c13e95ea011ba52381814ec57bbebe65454a8895e2a7779

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 57.7 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a72eb0359ebff94754f7a2f00a6efe4c57716f860fc040c606dedcb40f49f233
MD5 24dc01bb7ee83ce3eee26c16c503ae7a
BLAKE2b-256 352a823dc36948350bf333d09bf3bcda28bd7b844846a008ec0db14fa5b1a925

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 48.8 kB
  • Tags: PyPy, 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d7e3fcc3b6de76a9dba1e9fc6ca23dad18f0fa6b4e6499415e16b684b2e9af1
MD5 59cb35171f46675ea69787d7dd9d1d8c
BLAKE2b-256 df529f63f4a4de8d8238f4fc6e862563ad18517a87da4df35cb180b13b0942d0

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 133.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.6 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7

File hashes

Hashes for ijson-3.1.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ea5fc50ba158f72943d5174fbc29ebefe72a2adac051c814c87438dc475cf78
MD5 51f904005ad1926fcb56683a9e40b032
BLAKE2b-256 b21f7014377e7e1b1af3c7dd3e4ccb2a91a90a647e93f0deccb51b5629b608d9

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 48.9 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bf2b64304321705d03fa5e403ec3f36fa5bb27bf661849ad62e0a3a49bc23e3
MD5 136979620b31d8547388e7a48bc158f1
BLAKE2b-256 a678dd78b32ac81a261ee4cf32d1e73844be3b60fbf86cc3f22f3be0da86bc4e

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 46.2 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 70ee3c8fa0eba18c80c5911639c01a8de4089a4361bad2862a9949e25ec9b1c8
MD5 8dc77e5c8e9a5a0585e75287f81b0933
BLAKE2b-256 ddeb81bd5aec3797b9d88a03938db42bda810f433b97449f6ef8524d4c91b394

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 129.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d17fd199f0d0a4ab6e0d541b4eec1b68b5bd5bb5d8104521e22243015b51049b
MD5 998577507dfdd0b00fe1e4c906b431e4
BLAKE2b-256 aa5e46ce46d2b0386c42b02a640141bd9f2554137c880e1c6e0ff5abab4a2683

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 131.4 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2a64c66a08f56ed45a805691c2fd2e1caef00edd6ccf4c4e5eff02cd94ad8364
MD5 d39b90772875ccd4e561456f857d7c67
BLAKE2b-256 8d44c30dd1a23b80efefe6cfd1942131faba7fa1a97d932d464afade148e0613

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 123.7 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9239973100338a4138d09d7a4602bd289861e553d597cd67390c33bfc452253e
MD5 68acfa8dd8f1dfe8bea9916f6020f23b
BLAKE2b-256 cb71a3b3e9c31675b5fb806b61d1af45abb71cb0f03d581511b2f3fd03e53f7c

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 131.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 297f26f27a04cd0d0a2f865d154090c48ea11b239cabe0a17a6c65f0314bd1ca
MD5 acf692ddad7467f00831d4e857fe6ef8
BLAKE2b-256 198d1b513b2fe104252f17ca5ba8c13e00d5815ebd48a3d10ef8cd5ba5a5e355

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 123.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9e01c55d501e9c3d686b6ee3af351c9c0c8c3e45c5576bd5601bee3e1300b09
MD5 c3b06e4cfb7ff86cb549e94a3665d857
BLAKE2b-256 d3fcea957e287a07340c3e5c7c56bb32832def3e811ac5ae0399c7d4cbcaa458

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.9 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8ee7dbb07cec9ba29d60cfe4954b3cc70adb5f85bba1f72225364b59c1cf82b
MD5 d8273b0db2abd7647cbeef61784df826
BLAKE2b-256 37be640cfe9072c9abfa53e676eaa4674063fff8f7264735778734fcc00ad84c

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 48.8 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a5965c315fbb2dc9769dfdf046eb07daf48ae20b637da95ec8d62b629be09df4
MD5 fa402ed56d7d439e9a7853734db49cd7
BLAKE2b-256 296808f6b9a1f94e5d9f185cf01455b20419e9a3a6201a7431b2a32d1004bfbc

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 46.1 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5b725f2e984ce70d464b195f206fa44bebbd744da24139b61fec72de77c03a16
MD5 17f00b9d68146cecf784c7fc6194a216
BLAKE2b-256 fd2c773bf37ae1ba7a22774c716c60a37384ee666973a3e42119de54cf5bd390

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 131.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93455902fdc33ba9485c7fae63ac95d96e0ab8942224a357113174bbeaff92e9
MD5 7f164a1f3bb5f4c55e8cd80b4e675389
BLAKE2b-256 189c0b810105154bf88e925f2f19b469a319b11741d61147be14962a60eb1a30

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 133.2 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9348e7d507eb40b52b12eecff3d50934fcc3d2a15a2f54ec1127a36063b9ba8f
MD5 1e41613ff2d1fa801fad39cb8eed8942
BLAKE2b-256 bef8ca57db856f63d8a100532f29fe87e6eec6c79feb8bb31749f2a7e8bbbcc5

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 126.1 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df641dd07b38c63eecd4f454db7b27aa5201193df160f06b48111ba97ab62504
MD5 877b809e83ab75db615f95d7d4e81b64
BLAKE2b-256 a07c335ead3d5c74f3a4b8e3e4ff078f8d3a1467d7a5ca972f0db057ea2990f8

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 133.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 667841591521158770adc90793c2bdbb47c94fe28888cb802104b8bbd61f3d51
MD5 bc386e366fd344d2cb5b1e3194d4efaf
BLAKE2b-256 3f828b47a05a1fd81165d99b0c4ed29613ae46aa14e9e2744b0e55999d4ad928

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 126.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 702ba9a732116d659a5e950ee176be6a2e075998ef1bcde11cbf79a77ed0f717
MD5 efd905de2593142600d5dd4a95b0bf2f
BLAKE2b-256 320cdb5b557842b0af75434202707559f8d6ffafdfed7228704aa655d02e47cc

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.9 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09c9d7913c88a6059cd054ff854958f34d757402b639cf212ffbec201a705a0d
MD5 c2834753c7f2c86e03dae2f1b100c761
BLAKE2b-256 147b6d311267dde18bf3d85136640103401eb69e76e25da9ee191038fea1d0df

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 48.7 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff8cf7507d9d8939264068c2cff0a23f99703fa2f31eb3cb45a9a52798843586
MD5 65c847cac8ffb01b5acb90012bf470a6
BLAKE2b-256 dd76e73b17044e099c3a620db111f167009136e7a52760669d92f9884d7e0917

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 46.0 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 26a6a550b270df04e3f442e2bf0870c9362db4912f0e7bdfd300f30ea43115a2
MD5 0a3904e316abd9c8d1782a6863ba7b7b
BLAKE2b-256 aab2492cdeaebf0671c82e7db6935381ac84fd6171e58a131b46293e78e0af4e

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 126.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179ed6fd42e121d252b43a18833df2de08378fac7bce380974ef6f5e522afefa
MD5 14b48f6707afb97f17430eae14b3f93d
BLAKE2b-256 6078d48d78314ac955fd034422cf325242bb0470ee2f673ee31967638916dde1

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 126.3 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 387c2ec434cc1bc7dc9bd33ec0b70d95d443cc1e5934005f26addc2284a437ab
MD5 cf0e1406c08d70b44a79fa0d0c8460ca
BLAKE2b-256 b30ce3b7bf52e23345d5f9a6a3ff6de0cad419c96491893ab60cbbe9161644a8

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 121.1 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 454918f908abbed3c50a0a05c14b20658ab711b155e4f890900e6f60746dd7cc
MD5 1168b77bf13e52926811b97153b39d14
BLAKE2b-256 8df45b255d8e532be19c0d7e920083ce0f1cb921e16114a652e456914b81e971

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 126.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f50337e3b8e72ec68441b573c2848f108a8976a57465c859b227ebd2a2342901
MD5 9cd54a1f1c7531f66d9190aada93ec19
BLAKE2b-256 c4cda271745e66983d5d660ebad355dafc188fa00244e7ce3eaea725c9d5d004

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 121.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a2f40c053c837591636dc1afb79d85e90b9a9d65f3d9963aae31d1eb11bfed2
MD5 7b37d3e34c3b188de4dba800cf9570b6
BLAKE2b-256 1e1696cc42667bd2ef9146c3efc41a6f7a04839bf442dd9bb397bfaf10ce0f7e

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.9 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcd6f04df44b1945b859318010234651317db2c4232f75e3933f8bb41c4fa055
MD5 a2a1ba3f7cdecfa04ccc4e723ca279f2
BLAKE2b-256 9b8e68485ba0f98b791476e179ba88d16d602d6833f343044a82703d41c43dd4

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 48.7 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ac9098470c1ff6e5c23ec0946818bc102bfeeeea474554c8d081dc934be20988
MD5 c88971ee7c77e20946fade44726788e1
BLAKE2b-256 68a4bd5d2b8edb4c0e2d1c17cbd64ca038d3dc86fae9ed788879d83b93f601cb

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 46.0 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4c53cc72f79a4c32d5fc22efb85aa22f248e8f4f992707a84bdc896cc0b1ecf9
MD5 8834f08f43a0a964feb21790cb081990
BLAKE2b-256 3915a64545c687f9e23e5382591b12ddd036487b109c574f50e2c74cb4c04bd0

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 121.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f91c75edd6cf1a66f02425bafc59a22ec29bc0adcbc06f4bfd694d92f424ceb3
MD5 a0fe79887f50937cf617fd3b70b8cd9d
BLAKE2b-256 a6b72bfba0fc44e54213e2edd222571cf54569423a3ac8f9e5c4d3aea1f53ea9

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 124.5 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3bb461352c0f0f2ec460a4b19400a665b8a5a3a2da663a32093df1699642ee3f
MD5 01127bc0e72eb6bb0961a342dc10210a
BLAKE2b-256 ec6882803c001c92d54e1ac63193dacd3fc01bb7f9f28767147b3b1ce30f8f95

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 115.8 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 68e295bb12610d086990cedc89fb8b59b7c85740d66e9515aed062649605d0bf
MD5 57a4468f7d78c18c295ed9f7a58b43d3
BLAKE2b-256 9c1bc9e619809d8ea50657c8f75bec764fa58f62df550286d17d6a48596b1172

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 124.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e6bd6ad95ab40c858592b905e2bbb4fe79bbff415b69a4923dafe841ffadcb4
MD5 673875ce0aa7c37a066c3de76906bc88
BLAKE2b-256 89ff5c908dbbdcb8387d11632904af0f9b60b8508a2655070a0baf511f0cec06

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 115.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 15507de59d74d21501b2a076d9c49abf927eb58a51a01b8f28a0a0565db0a99f
MD5 5c795693e3ad337f3259536774e07023
BLAKE2b-256 30a0a9a4b3788a98d97914af7a18633ba5d50a23a9c1fd11d022be1e16a32f6d

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.9 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0f2a87c423e8767368aa055310024fa28727f4454463714fef22230c9717f64
MD5 ab6e16f630fbd056f05b9f8f9dd91d25
BLAKE2b-256 e3e02f1ff2ff6d8b556d370f66ae3f19a1468c0f2bb1f079a6909d91eed9d8e6

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 48.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c4c1bf98aaab4c8f60d238edf9bcd07c896cfcc51c2ca84d03da22aad88957c5
MD5 3a5f38ebaa5decb6561a4da8877f4115
BLAKE2b-256 f0c3298ac7fd901537c2dfe2db444da3a127ab49f697e6da7e4ba6c4a465962d

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-win32.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.0

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 fa9a25d0bd32f9515e18a3611690f1de12cb7d1320bd93e9da835936b41ad3ff
MD5 0885bc7097194cb053bf5a23457f5439
BLAKE2b-256 abbaa965d0a771400e61c88a3b055be35c66556398cf2c01bded67802b33a6d1

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 120.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13f80aad0b84d100fb6a88ced24bade21dc6ddeaf2bba3294b58728463194f50
MD5 8151454df99bddc9c066c88bd1e1baf9
BLAKE2b-256 acfe1958d71fc76efd507486cc88f92bf2accc0469207ad1971bf6a90efe7346

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 120.2 kB
  • Tags: CPython 3.5m, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 24b58933bf777d03dc1caa3006112ec7f9e6f6db6ffe1f5f5bd233cb1281f719
MD5 9256da7e3773d231f471c82220ac2c88
BLAKE2b-256 e3357b0c374b55c94a2ae4b2cdbf56915d2eca57d8d982d5395f9c311b7b0d22

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 114.7 kB
  • Tags: CPython 3.5m, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 41e5886ff6fade26f10b87edad723d2db14dcbb1178717790993fcbbb8ccd333
MD5 3696c5f07ae8b402e349b406f33229a9
BLAKE2b-256 973da7a04cb7d69bc11944d429558dccef127799446a794498d8298c19db1876

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 120.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86884ac06ac69cea6d89ab7b84683b3b4159c4013e4a20276d3fc630fe9b7588
MD5 94e12bc57f52082b8386191232332144
BLAKE2b-256 73a5e9d34d5069acdc92881676d8224a9b4271bcc509da81e71c2fd9b0b8c010

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 114.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 068c692efba9692406b86736dcc6803e4a0b6280d7f0b7534bff3faec677ff38
MD5 1ddadd85d80f55d55ff7054e6b081377
BLAKE2b-256 4a2c16ca0f98ada413e1719ac94a0fe5c1b941fdafc5cd134b3cb4f9282b1d70

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: CPython 3.5m, 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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b98861a4280cf09d267986cefa46c3bd80af887eae02aba07488d80eb798afa
MD5 3fba2407d94c40756e0729d51855e38d
BLAKE2b-256 4fce83894833708a901c17145fb312df40f7f7bc537eda2fd62cbba038884023

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 118.2 kB
  • Tags: CPython 2.7mu, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 81cc8cee590c8a70cca3c9aefae06dd7cb8e9f75f3a7dc12b340c2e332d33a2a
MD5 a029c6d1fb5ed72c8b7f1b38bf275094
BLAKE2b-256 663ac4939bc66928b80f8a61f6907ab716b891638bd008442593f9ec357c0397

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 110.2 kB
  • Tags: CPython 2.7mu, 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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9a5bf5b9d8f2ceaca131ee21fc7875d0f34b95762f4f32e4d65109ca46472147
MD5 74b2715ac213b7eae0d43927642b0f77
BLAKE2b-256 2364f78cee4c59d9a43b689bed9f6fbf177e41e4c0902b03edbaf873d058f2b0

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 118.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fa10a1d88473303ec97aae23169d77c5b92657b7fb189f9c584974c00a79f383
MD5 a38c3d67d4afca866a76c7fcb10f6715
BLAKE2b-256 17a3818d6cd2e589fad41453fe75618b43baa09ddfeee611c7b1d208847a3e8a

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 110.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3997a2fdb28bc04b9ab0555db5f3b33ed28d91e9d42a3bf2c1842d4990beb158
MD5 2029f91c6a2ce4927d6e79ada983256f
BLAKE2b-256 dc93849cf95be7d3cf5bc91e2dad2a00ade074a55de5b72534f5592afb4d884c

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 118.1 kB
  • Tags: CPython 2.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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 446ef8980504da0af8d20d3cb6452c4dc3d8aa5fd788098985e899b913191fe6
MD5 1f0593a26091161ae702d9577fc80adc
BLAKE2b-256 e69ebe876654c61be71a88e71e8d9207bb78f9134fe4d25d3c66c061c9b08a62

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 110.2 kB
  • Tags: CPython 2.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/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 339b2b4c7bbd64849dd69ef94ee21e29dcd92c831f47a281fdd48122bb2a715a
MD5 ea1a5b82e89edfbf7add9bbc9148a2e0
BLAKE2b-256 a7cef392043cbed30a1f2cb4799bdfd7be4542f89a888f3e5bd6b4961c16e46b

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 118.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f587699b5a759e30accf733e37950cc06c4118b72e3e146edcea77dded467426
MD5 05444beab362edb48b5f8cc04f0bd568
BLAKE2b-256 d6515733fe6cca98ac8be44283a8afa3679260528e24683b63bf4845d05d2fe5

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 110.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7

File hashes

Hashes for ijson-3.1.4-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 475fc25c3d2a86230b85777cae9580398b42eed422506bf0b6aacfa936f7bfcd
MD5 66795e2410dd1dc3c2403c0305c76632
BLAKE2b-256 4a04f78a68e2ac104f69bce6512e1c82b06f166cd49376caf22e9e4df1bb37eb

See more details on using hashes here.

File details

Details for the file ijson-3.1.4-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ijson-3.1.4-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 50.4 kB
  • Tags: CPython 2.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.58.0 CPython/3.9.2

File hashes

Hashes for ijson-3.1.4-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c1a777096be5f75ffebb335c6d2ebc0e489b231496b7f2ca903aa061fe7d381
MD5 4daf6b66ca700b08fd04a89dc6a9740e
BLAKE2b-256 208dbf09bb894eaa5c62de061bdbd1bfe386c4b4635498dcd85af69b9782dd5f

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