ijson


Nameijson JSON
Version 3.2.3 PyPI version JSON
download
home_pagehttps://github.com/ICRAR/ijson
SummaryIterative JSON parser with standard Python iterator interfaces
upload_time2023-07-22 06:09:44
maintainer
docs_urlNone
authorRodrigo Tobar, Ivan Sagalaev
requires_python
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. image:: https://github.com/ICRAR/ijson/actions/workflows/deploy-to-pypi.yml/badge.svg
    :target: https://github.com/ICRAR/ijson/actions/workflows/deploy-to-pypi.yml

.. image:: https://ci.appveyor.com/api/projects/status/32wiho6ojw3eakp8/branch/master?svg=true
    :target: https://ci.appveyor.com/project/rtobar/ijson/branch/master

.. image:: https://coveralls.io/repos/github/ICRAR/ijson/badge.svg?branch=master
    :target: https://coveralls.io/github/ICRAR/ijson?branch=master

.. image:: https://badge.fury.io/py/ijson.svg
    :target: https://badge.fury.io/py/ijson

.. image:: https://img.shields.io/pypi/pyversions/ijson.svg
    :target: https://pypi.python.org/pypi/ijson

.. image:: https://img.shields.io/pypi/dd/ijson.svg
    :target: https://pypi.python.org/pypi/ijson

.. image:: https://img.shields.io/pypi/dw/ijson.svg
    :target: https://pypi.python.org/pypi/ijson

.. image:: https://img.shields.io/pypi/dm/ijson.svg
    :target: https://pypi.python.org/pypi/ijson


=====
ijson
=====

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

.. contents::
   :local:


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
and python versions.
These are built and published automatically
using `cibuildwheel <https://cibuildwheel.readthedocs.io/en/stable/>`_
via Travis CI.


Usage
=====

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

.. code-block:: json

    {
      "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:

.. code-block::  python

    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:

.. code-block::  python

    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:

.. code-block::  python

    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:

.. code-block:: python

    import ijson

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


.. _command_line:

Command line
------------

A command line utility is included with ijson
to help visualise the output of each of the routines above.
It reads JSON from the standard input,
and it prints the results of the parsing method chosen by the user
to the standard output.

The tool is available by running the ``ijson.dump`` module.
For example::

 $> echo '{"A": 0, "B": [1, 2, 3, 4]}' | python -m ijson.dump -m parse
 #: path, name, value
 --------------------
 0: , start_map, None
 1: , map_key, A
 2: A, number, 0
 3: , map_key, B
 4: B, start_array, None
 5: B.item, number, 1
 6: B.item, number, 2
 7: B.item, number, 3
 8: B.item, number, 4
 9: B, end_array, None
 10: , end_map, None

Using ``-h/--help`` will show all available options.


``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:

.. code-block:: python

   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:

.. code-block:: python

  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_events)
      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.

Note also that event interception
is currently not supported
by the ``async`` functions.


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 <https://www.python.org/dev/peps/pep-0342/>`_
(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:

.. code-block:: python

   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:

.. code-block:: python

   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:

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 <https://tools.ietf.org/html/rfc7159#section-2>`_).
  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:

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:

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 <http://lloyd.github.com/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 <http://lloyd.github.com/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:

.. code-block::  python

    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:

.. code-block:: python

    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:

FAQ
===

#. **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.

#. **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.

#. **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 <https://docs.python.org/3/library/codecs.html#codecs.getincrementaldecoder>`_
     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 <https://github.com/ICRAR/ijson/blob/0157f3c65a7986970030d3faa75979ee205d3806/ijson/utils35.py#L19>`_
     for some inspiration).

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

#. **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.

#. **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 <http://softwaremaniacs.org/>`_.
In 2019 he
`handed over <https://github.com/isagalaev/ijson/pull/58#issuecomment-500596815>`_
the maintenance of the project and the PyPI ownership.

Python parser in ijson is relatively simple thanks to `Douglas Crockford
<http://www.crockford.com/>`_ who invented a strict, easy to parse syntax.

The `YAJL <https://lloyd.github.io/yajl>`__ library by `Lloyd Hilaiel
<http://lloyd.io/>`_ is the most popular and efficient way to parse JSON in an
iterative fashion.

Ijson was inspired by `yajl-py <http://pykler.github.com/yajl-py/>`_ wrapper by
`Hatem Nassrat <http://www.nassrat.ca/>`_. Though ijson borrows almost nothing
from the actual yajl-py code it was used as an example of integration with yajl
using ctypes.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ICRAR/ijson",
    "name": "ijson",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Rodrigo Tobar, Ivan Sagalaev",
    "author_email": "rtobar@icrar.org, maniac@softwaremaniacs.org",
    "download_url": "https://files.pythonhosted.org/packages/20/58/acdd87bd1b926fa2348a7f2ee5e1e7e2c9b808db78342317fc2474c87516/ijson-3.2.3.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/ICRAR/ijson/actions/workflows/deploy-to-pypi.yml/badge.svg\n    :target: https://github.com/ICRAR/ijson/actions/workflows/deploy-to-pypi.yml\n\n.. image:: https://ci.appveyor.com/api/projects/status/32wiho6ojw3eakp8/branch/master?svg=true\n    :target: https://ci.appveyor.com/project/rtobar/ijson/branch/master\n\n.. image:: https://coveralls.io/repos/github/ICRAR/ijson/badge.svg?branch=master\n    :target: https://coveralls.io/github/ICRAR/ijson?branch=master\n\n.. image:: https://badge.fury.io/py/ijson.svg\n    :target: https://badge.fury.io/py/ijson\n\n.. image:: https://img.shields.io/pypi/pyversions/ijson.svg\n    :target: https://pypi.python.org/pypi/ijson\n\n.. image:: https://img.shields.io/pypi/dd/ijson.svg\n    :target: https://pypi.python.org/pypi/ijson\n\n.. image:: https://img.shields.io/pypi/dw/ijson.svg\n    :target: https://pypi.python.org/pypi/ijson\n\n.. image:: https://img.shields.io/pypi/dm/ijson.svg\n    :target: https://pypi.python.org/pypi/ijson\n\n\n=====\nijson\n=====\n\nIjson is an iterative JSON parser with standard Python iterator interfaces.\n\n.. contents::\n   :local:\n\n\nInstallation\n============\n\nIjson is hosted in PyPI, so you should be able to install it via ``pip``::\n\n  pip install ijson\n\nBinary wheels are provided\nfor major platforms\nand python versions.\nThese are built and published automatically\nusing `cibuildwheel <https://cibuildwheel.readthedocs.io/en/stable/>`_\nvia Travis CI.\n\n\nUsage\n=====\n\nAll usage example will be using a JSON document describing geographical\nobjects:\n\n.. code-block:: json\n\n    {\n      \"earth\": {\n        \"europe\": [\n          {\"name\": \"Paris\", \"type\": \"city\", \"info\": { ... }},\n          {\"name\": \"Thames\", \"type\": \"river\", \"info\": { ... }},\n          // ...\n        ],\n        \"america\": [\n          {\"name\": \"Texas\", \"type\": \"state\", \"info\": { ... }},\n          // ...\n        ]\n      }\n    }\n\n\nHigh-level interfaces\n---------------------\n\nMost common usage is having ijson yield native Python objects out of a JSON\nstream located under a prefix.\nThis is done using the ``items`` function.\nHere's how to process all European cities:\n\n.. code-block::  python\n\n    import ijson\n\n    f = urlopen('http://.../')\n    objects = ijson.items(f, 'earth.europe.item')\n    cities = (o for o in objects if o['type'] == 'city')\n    for city in cities:\n        do_something_with(city)\n\nFor how to build a prefix see the prefix_ section below.\n\nOther times it might be useful to iterate over object members\nrather than objects themselves (e.g., when objects are too big).\nIn that case one can use the ``kvitems`` function instead:\n\n.. code-block::  python\n\n    import ijson\n\n    f = urlopen('http://.../')\n    european_places = ijson.kvitems(f, 'earth.europe.item')\n    names = (v for k, v in european_places if k == 'name')\n    for name in names:\n        do_something_with(name)\n\n\nLower-level interfaces\n----------------------\n\nSometimes when dealing with a particularly large JSON payload it may worth to\nnot even construct individual Python objects and react on individual events\nimmediately producing some result.\nThis is achieved using the ``parse`` function:\n\n.. code-block::  python\n\n    import ijson\n\n    parser = ijson.parse(urlopen('http://.../'))\n    stream.write('<geo>')\n    for prefix, event, value in parser:\n        if (prefix, event) == ('earth', 'map_key'):\n            stream.write('<%s>' % value)\n            continent = value\n        elif prefix.endswith('.name'):\n            stream.write('<object name=\"%s\"/>' % value)\n        elif (prefix, event) == ('earth.%s' % continent, 'end_map'):\n            stream.write('</%s>' % continent)\n    stream.write('</geo>')\n\nEven more bare-bones is the ability to react on individual events\nwithout even calculating a prefix\nusing the ``basic_parse`` function:\n\n.. code-block:: python\n\n    import ijson\n\n    events = ijson.basic_parse(urlopen('http://.../'))\n    num_names = sum(1 for event, value in events\n                    if event == 'map_key' and value == 'name')\n\n\n.. _command_line:\n\nCommand line\n------------\n\nA command line utility is included with ijson\nto help visualise the output of each of the routines above.\nIt reads JSON from the standard input,\nand it prints the results of the parsing method chosen by the user\nto the standard output.\n\nThe tool is available by running the ``ijson.dump`` module.\nFor example::\n\n $> echo '{\"A\": 0, \"B\": [1, 2, 3, 4]}' | python -m ijson.dump -m parse\n #: path, name, value\n --------------------\n 0: , start_map, None\n 1: , map_key, A\n 2: A, number, 0\n 3: , map_key, B\n 4: B, start_array, None\n 5: B.item, number, 1\n 6: B.item, number, 2\n 7: B.item, number, 3\n 8: B.item, number, 4\n 9: B, end_array, None\n 10: , end_map, None\n\nUsing ``-h/--help`` will show all available options.\n\n\n``bytes``/``str`` support\n-------------------------\n\nAlthough not usually how they are meant to be run,\nall the functions above also accept\n``bytes`` and ``str`` objects (and ``unicode`` in python 2.7)\ndirectly as inputs.\nThese are then internally wrapped into a file object,\nand further processed.\nThis is useful for testing and prototyping,\nbut probably not extremely useful in real-life scenarios.\n\n\n``asyncio`` support\n-------------------\n\nIn python 3.5+ all of the methods above\nwork also on file-like asynchronous objects,\nso they can be iterated asynchronously.\nIn other words, something like this:\n\n.. code-block:: python\n\n   import asyncio\n   import ijson\n\n   async def run():\n      f = await async_urlopen('http://..../')\n      async for object in ijson.items(f, 'earth.europe.item'):\n         if object['type'] == 'city':\n            do_something_with(city)\n   asyncio.run(run())\n\nAn explicit set of ``*_async`` functions also exists\noffering the same functionality,\nexcept they will fail if anything other\nthan a file-like asynchronous object is given to them.\n(so the example above can also be written using ``ijson.items_async``).\nIn fact in ijson version 3.0\nthis was the only way to access\nthe ``asyncio`` support.\n\n\nIntercepting events\n-------------------\n\nThe four routines shown above\ninternally chain against each other:\ntuples generated by ``basic_parse``\nare the input for ``parse``,\nwhose results are the input to ``kvitems`` and ``items``.\n\nNormally users don't see this interaction,\nas they only care about the final output\nof the function they invoked,\nbut there are occasions when tapping\ninto this invocation chain this could be handy.\nThis is supported\nby passing the output of one function\n(i.e., an iterable of events, usually a generator)\nas the input of another,\nopening the door for user event filtering or injection.\n\nFor instance if one wants to skip some content\nbefore full item parsing:\n\n.. code-block:: python\n\n  import io\n  import ijson\n\n  parse_events = ijson.parse(io.BytesIO(b'[\"skip\", {\"a\": 1}, {\"b\": 2}, {\"c\": 3}]'))\n  while True:\n      prefix, event, value = next(parse_events)\n      if value == \"skip\":\n          break\n  for obj in ijson.items(parse_events, 'item'):\n      print(obj)\n\n\nNote that this interception\nonly makes sense for the ``basic_parse -> parse``,\n``parse -> items`` and ``parse -> kvitems`` interactions.\n\nNote also that event interception\nis currently not supported\nby the ``async`` functions.\n\n\nPush interfaces\n---------------\n\nAll examples above use a file-like object as the data input\n(both the normal case, and for ``asyncio`` support),\nand hence are \"pull\" interfaces,\nwith the library reading data as necessary.\nIf for whatever reason it's not possible to use such method,\nyou can still **push** data\nthrough yet a different interface: `coroutines <https://www.python.org/dev/peps/pep-0342/>`_\n(via generators, not ``asyncio`` coroutines).\nCoroutines effectively allow users\nto send data to them at any point in time,\nwith a final *target* coroutine-like object\nreceiving the results.\n\nIn the following example\nthe user is doing the reading\ninstead of letting the library do it:\n\n.. code-block:: python\n\n   import ijson\n\n   @ijson.coroutine\n   def print_cities():\n      while True:\n         obj = (yield)\n         if obj['type'] != 'city':\n            continue\n         print(obj)\n\n   coro = ijson.items_coro(print_cities(), 'earth.europe.item')\n   f = urlopen('http://.../')\n   for chunk in iter(functools.partial(f.read, buf_size)):\n      coro.send(chunk)\n   coro.close()\n\nAll four ijson iterators\nhave a ``*_coro`` counterpart\nthat work by pushing data into them.\nInstead of receiving a file-like object\nand option buffer size as arguments,\nthey receive a single ``target`` argument,\nwhich should be a coroutine-like object\n(anything implementing a ``send`` method)\nthrough which results will be published.\n\nAn alternative to providing a coroutine\nis to use ``ijson.sendable_list`` to accumulate results,\nproviding the list is cleared after each parsing iteration,\nlike this:\n\n.. code-block:: python\n\n   import ijson\n\n   events = ijson.sendable_list()\n   coro = ijson.items_coro(events, 'earth.europe.item')\n   f = urlopen('http://.../')\n   for chunk in iter(functools.partial(f.read, buf_size)):\n      coro.send(chunk)\n      process_accumulated_events(events)\n      del events[:]\n   coro.close()\n   process_accumulated_events(events)\n\n\n.. _options:\n\nOptions\n=======\n\nAdditional options are supported by **all** ijson functions\nto give users more fine-grained control over certain operations:\n\n- The ``use_float`` option (defaults to ``False``)\n  controls how non-integer values are returned to the user.\n  If set to ``True`` users receive ``float()`` values;\n  otherwise ``Decimal`` values are constructed.\n  Note that building ``float`` values is usually faster,\n  but on the other hand there might be loss of precision\n  (which most applications will not care about)\n  and will raise an exception when overflow occurs\n  (e.g., if ``1e400`` is encountered).\n  This option also has the side-effect\n  that integer numbers bigger than ``2^64``\n  (but *sometimes* ``2^32``, see backends_)\n  will also raise an overflow error,\n  due to similar reasons.\n  Future versions of ijson\n  might change the default value of this option\n  to ``True``.\n- The ``multiple_values`` option (defaults to ``False``)\n  controls whether multiple top-level values are supported.\n  JSON content should contain a single top-level value\n  (see `the JSON Grammar <https://tools.ietf.org/html/rfc7159#section-2>`_).\n  However there are plenty of JSON files out in the wild\n  that contain multiple top-level values,\n  often separated by newlines.\n  By default ijson will fail to process these\n  with a ``parse error: trailing garbage`` error\n  unless ``multiple_values=True`` is specified.\n- Similarly the ``allow_comments`` option (defaults to ``False``)\n  controls whether C-style comments (e.g., ``/* a comment */``),\n  which are not supported by the JSON standard,\n  are allowed in the content or not.\n- For functions taking a file-like object,\n  an additional ``buf_size`` option (defaults to ``65536`` or 64KB)\n  specifies the amount of bytes the library\n  should attempt to read each time.\n- The ``items`` and ``kvitems`` functions, and all their variants,\n  have an optional ``map_type`` argument (defaults to ``dict``)\n  used to construct objects from the JSON stream.\n  This should be a dict-like type supporting item assignment.\n\n\nEvents\n======\n\nWhen using the lower-level ``ijson.parse`` function,\nthree-element tuples are generated\ncontaining a prefix, an event name, and a value.\nEvents will be one of the following:\n\n- ``start_map`` and ``end_map`` indicate\n  the beginning and end of a JSON object, respectively.\n  They carry a ``None`` as their value.\n- ``start_array`` and ``end_array`` indicate\n  the beginning and end of a JSON array, respectively.\n  They also carry a ``None`` as their value.\n- ``map_key`` indicates the name of a field in a JSON object.\n  Its associated value is the name itself.\n- ``null``, ``boolean``, ``integer``, ``double``, ``number`` and ``string``\n  all indicate actual content, which is stored in the associated value.\n\n\n.. _prefix:\n\nPrefix\n======\n\nA prefix represents the context within a JSON document\nwhere an event originates at.\nIt works as follows:\n\n- It starts as an empty string.\n- A ``<name>`` part is appended when the parser starts parsing the contents\n  of a JSON object member called ``name``,\n  and removed once the content finishes.\n- A literal ``item`` part is appended when the parser is parsing\n  elements of a JSON array,\n  and removed when the array ends.\n- Parts are separated by ``.``.\n\nWhen using the ``ijson.items`` function,\nthe prefix works as the selection\nfor which objects should be automatically built and returned by ijson.\n\n\n.. _backends:\n\nBackends\n========\n\nIjson provides several implementations of the actual parsing in the form of\nbackends located in ijson/backends:\n\n- ``yajl2_c``: a C extension using `YAJL <http://lloyd.github.com/yajl/>`__ 2.x.\n  This is the fastest, but *might* require a compiler and the YAJL development files\n  to be present when installing this package.\n  Binary wheel distributions exist for major platforms/architectures to spare users\n  from having to compile the package.\n- ``yajl2_cffi``: wrapper around `YAJL <http://lloyd.github.com/yajl/>`__ 2.x\n  using CFFI.\n- ``yajl2``: wrapper around YAJL 2.x using ctypes, for when you can't use CFFI\n  for some reason.\n- ``yajl``: deprecated YAJL 1.x + ctypes wrapper, for even older systems.\n- ``python``: pure Python parser, good to use with PyPy\n\nYou can import a specific backend and use it in the same way as the top level\nlibrary:\n\n.. code-block::  python\n\n    import ijson.backends.yajl2_cffi as ijson\n\n    for item in ijson.items(...):\n        # ...\n\nImporting the top level library as ``import ijson``\nuses the first available backend in the same order of the list above,\nand its name is recorded under ``ijson.backend``.\nIf the ``IJSON_BACKEND`` environment variable is set\nits value takes precedence and is used to select the default backend.\n\nYou can also use the ``ijson.get_backend`` function\nto get a specific backend based on a name:\n\n.. code-block:: python\n\n    backend = ijson.get_backend('yajl2_c')\n    for item in backend.items(...):\n        # ...\n\n\nPerformance tips\n================\n\nIn more-or-less decreasing order,\nthese are the most common actions you can take\nto ensure you get most of the performance\nout of ijson:\n\n- Make sure you use the fastest backend available.\n  See backends_ for details.\n- If you know your JSON data\n  contains only numbers that are \"well behaved\"\n  consider turning on the ``use_float`` option.\n  See options_ for details.\n- Make sure you feed ijson with binary data\n  instead of text data.\n  See faq_ #1 for details.\n- Play with the ``buf_size`` option,\n  as depending on your data source and your system\n  a value different from the default\n  might show better performance.\n  See options_ for details.\n\n\n.. _faq:\n\nFAQ\n===\n\n#. **Q**: Does ijson work with ``bytes`` or ``str`` values?\n\n   **A**: In short: both are accepted as input, outputs are only ``str``.\n\n   All ijson functions expecting a file-like object\n   should ideally be given one\n   that is opened in binary mode\n   (i.e., its ``read`` function returns ``bytes`` objects, not ``str``).\n   However if a text-mode file object is given\n   then the library will automatically\n   encode the strings into UTF-8 bytes.\n   A warning is currently issued (but not visible by default)\n   alerting users about this automatic conversion.\n\n   On the other hand ijson always returns text data\n   (JSON string values, object member names, event names, etc)\n   as ``str`` objects in python 3,\n   and ``unicode`` objects in python 2.7.\n   This mimics the behavior of the system ``json`` module.\n\n#. **Q**: How are numbers dealt with?\n\n   **A**: ijson returns ``int`` values for integers\n   and ``decimal.Decimal`` values for floating-point numbers.\n   This is mostly because of historical reasons.\n   Since 3.1 a new ``use_float`` option (defaults to ``False``)\n   is available to return ``float`` values instead.\n   See the options_ section for details.\n\n#. **Q**: I'm getting an ``UnicodeDecodeError``, or an ``IncompleteJSONError`` with no message\n\n   **A**: This error is caused by byte sequences that are not valid in UTF-8.\n   In other words, the data given to ijson is not *really* UTF-8 encoded,\n   or at least not properly.\n\n   Depending on where the data comes from you have different options:\n\n   * If you have control over the source of the data, fix it.\n\n   * If you have a way to intercept the data flow,\n     do so and pass it through a \"byte corrector\".\n     For instance, if you have a shell pipeline\n     feeding data through ``stdin`` into your process\n     you can add something like ``... | iconv -f utf8 -t utf8 -c | ...``\n     in between to correct invalid byte sequences.\n\n   * If you are working purely in python,\n     you can create a UTF-8 decoder\n     using codecs' `incrementaldecoder <https://docs.python.org/3/library/codecs.html#codecs.getincrementaldecoder>`_\n     to leniently decode your bytes into strings,\n     and feed those strings (using a file-like class) into ijson\n     (see our `string_reader_async internal class <https://github.com/ICRAR/ijson/blob/0157f3c65a7986970030d3faa75979ee205d3806/ijson/utils35.py#L19>`_\n     for some inspiration).\n\n   In the future ijson might offer something out of the box\n   to deal with invalid UTF-8 byte sequences.\n\n#. **Q**: I'm getting ``parse error: trailing garbage`` or ``Additional data found`` errors\n\n   **A**: This error signals that the input\n   contains more data than the top-level JSON value it's meant to contain.\n   This is *usually* caused by JSON data sources\n   containing multiple values, and is *usually* solved\n   by passing the ``multiple_values=True`` to the ijson function in use.\n   See the options_ section for details.\n\n#. **Q**: Are there any differences between the backends?\n\n   **A**: Apart from their performance,\n   all backends are designed to support the same capabilities.\n   There are however some small known differences:\n\n   * The ``yajl`` backend doesn't support ``multiple_values=True``.\n     It also doesn't complain about additional data\n     found after the end of the top-level JSON object.\n     When using ``use_float=True`` it also doesn't properly support\n     values greater than 2^32 in 32-bit platforms or Windows.\n     Numbers with leading zeros are not reported as invalid\n     (although they are invalid JSON numbers).\n     Incomplete JSON tokens at the end of an incomplete document\n     (e.g., ``{\"a\": fals``) are not reported as ``IncompleteJSONError``.\n\n   * The ``python`` backend doesn't support ``allow_comments=True``\n     It also internally works with ``str`` objects, not ``bytes``,\n     but this is an internal detail that users shouldn't need to worry about,\n     and might change in the future.\n\n\nAcknowledgements\n================\n\nijson was originally developed and actively maintained until 2016\nby `Ivan Sagalaev <http://softwaremaniacs.org/>`_.\nIn 2019 he\n`handed over <https://github.com/isagalaev/ijson/pull/58#issuecomment-500596815>`_\nthe maintenance of the project and the PyPI ownership.\n\nPython parser in ijson is relatively simple thanks to `Douglas Crockford\n<http://www.crockford.com/>`_ who invented a strict, easy to parse syntax.\n\nThe `YAJL <https://lloyd.github.io/yajl>`__ library by `Lloyd Hilaiel\n<http://lloyd.io/>`_ is the most popular and efficient way to parse JSON in an\niterative fashion.\n\nIjson was inspired by `yajl-py <http://pykler.github.com/yajl-py/>`_ wrapper by\n`Hatem Nassrat <http://www.nassrat.ca/>`_. Though ijson borrows almost nothing\nfrom the actual yajl-py code it was used as an example of integration with yajl\nusing ctypes.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Iterative JSON parser with standard Python iterator interfaces",
    "version": "3.2.3",
    "project_urls": {
        "Homepage": "https://github.com/ICRAR/ijson"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6135bc8afb2aff568e9397159402a5ed9f1745994849925f7acd6f5380670fbf",
                "md5": "3f8fdfd7272d4da61c33b721c679bbea",
                "sha256": "0a4ae076bf97b0430e4e16c9cb635a6b773904aec45ed8dcbc9b17211b8569ba"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3f8fdfd7272d4da61c33b721c679bbea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 81941,
            "upload_time": "2023-07-22T06:07:48",
            "upload_time_iso_8601": "2023-07-22T06:07:48.568000Z",
            "url": "https://files.pythonhosted.org/packages/61/35/bc8afb2aff568e9397159402a5ed9f1745994849925f7acd6f5380670fbf/ijson-3.2.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c571df6bea5031b232a7dad1f587f99732d9567a8ce53af3bd2dd567454f8a33",
                "md5": "051cb0b07ac12a9d4ab67848dbe87e45",
                "sha256": "cfced0a6ec85916eb8c8e22415b7267ae118eaff2a860c42d2cc1261711d0d31"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "051cb0b07ac12a9d4ab67848dbe87e45",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 54711,
            "upload_time": "2023-07-22T06:07:50",
            "upload_time_iso_8601": "2023-07-22T06:07:50.585748Z",
            "url": "https://files.pythonhosted.org/packages/c5/71/df6bea5031b232a7dad1f587f99732d9567a8ce53af3bd2dd567454f8a33/ijson-3.2.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38059f65674753e5405f433b1bae88a8447c2b85d1837ea8a47766cc5a798f52",
                "md5": "9c90ee6bb11a61bafac181212ecba502",
                "sha256": "0b9d1141cfd1e6d6643aa0b4876730d0d28371815ce846d2e4e84a2d4f471cf3"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9c90ee6bb11a61bafac181212ecba502",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 54124,
            "upload_time": "2023-07-22T06:07:52",
            "upload_time_iso_8601": "2023-07-22T06:07:52.198460Z",
            "url": "https://files.pythonhosted.org/packages/38/05/9f65674753e5405f433b1bae88a8447c2b85d1837ea8a47766cc5a798f52/ijson-3.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ad71469cc11fc35b204f1e1fae0eafedbd76ef108b139e0fd398ccda3cc62da",
                "md5": "14d99c8c3335cba7e19de42015a42bde",
                "sha256": "9e0a27db6454edd6013d40a956d008361aac5bff375a9c04ab11fc8c214250b5"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14d99c8c3335cba7e19de42015a42bde",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 114472,
            "upload_time": "2023-07-22T06:07:53",
            "upload_time_iso_8601": "2023-07-22T06:07:53.910659Z",
            "url": "https://files.pythonhosted.org/packages/9a/d7/1469cc11fc35b204f1e1fae0eafedbd76ef108b139e0fd398ccda3cc62da/ijson-3.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39b0915fb1ad9c05fd6ec9406f707ab41b4ff1d4740861a88f520c85401cea40",
                "md5": "6f66c4b732cf9543aabf49b5613da581",
                "sha256": "3c0d526ccb335c3c13063c273637d8611f32970603dfb182177b232d01f14c23"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6f66c4b732cf9543aabf49b5613da581",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 108092,
            "upload_time": "2023-07-22T06:07:55",
            "upload_time_iso_8601": "2023-07-22T06:07:55.008269Z",
            "url": "https://files.pythonhosted.org/packages/39/b0/915fb1ad9c05fd6ec9406f707ab41b4ff1d4740861a88f520c85401cea40/ijson-3.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b782cbeb7020a7a319d148c92331951cfc710864990e32ff6c7f4859729fb48",
                "md5": "380680034b21415c75aeb18ec02eeac3",
                "sha256": "545a30b3659df2a3481593d30d60491d1594bc8005f99600e1bba647bb44cbb5"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "380680034b21415c75aeb18ec02eeac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 111815,
            "upload_time": "2023-07-22T06:07:56",
            "upload_time_iso_8601": "2023-07-22T06:07:56.814187Z",
            "url": "https://files.pythonhosted.org/packages/6b/78/2cbeb7020a7a319d148c92331951cfc710864990e32ff6c7f4859729fb48/ijson-3.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "009c813e10e7650088aa4280b3ed00f7af42aa7058abf9d45add26ffbffd472d",
                "md5": "df04e3e841ac23f288b6e563139b9940",
                "sha256": "9680e37a10fedb3eab24a4a7e749d8a73f26f1a4c901430e7aa81b5da15f7307"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df04e3e841ac23f288b6e563139b9940",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 126548,
            "upload_time": "2023-07-22T06:07:58",
            "upload_time_iso_8601": "2023-07-22T06:07:58.568619Z",
            "url": "https://files.pythonhosted.org/packages/00/9c/813e10e7650088aa4280b3ed00f7af42aa7058abf9d45add26ffbffd472d/ijson-3.2.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1f188884213c4a36c2be1a9bef68d314cd3dd7562bc50283ef939453dd572f7",
                "md5": "09968fe4e6ded44418a44641bdbb6cdb",
                "sha256": "2a80c0bb1053055d1599e44dc1396f713e8b3407000e6390add72d49633ff3bb"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "09968fe4e6ded44418a44641bdbb6cdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 120145,
            "upload_time": "2023-07-22T06:08:00",
            "upload_time_iso_8601": "2023-07-22T06:08:00.264900Z",
            "url": "https://files.pythonhosted.org/packages/b1/f1/88884213c4a36c2be1a9bef68d314cd3dd7562bc50283ef939453dd572f7/ijson-3.2.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "514ec8aee10303bab934df38138e805d394e35bbf9cff2d90bc8b45cffb711bd",
                "md5": "62d995c1eaf11eb5cdd04053546556f3",
                "sha256": "f05ed49f434ce396ddcf99e9fd98245328e99f991283850c309f5e3182211a79"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62d995c1eaf11eb5cdd04053546556f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 124037,
            "upload_time": "2023-07-22T06:08:01",
            "upload_time_iso_8601": "2023-07-22T06:08:01.955840Z",
            "url": "https://files.pythonhosted.org/packages/51/4e/c8aee10303bab934df38138e805d394e35bbf9cff2d90bc8b45cffb711bd/ijson-3.2.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "654b06f4c1a5704878d85937b1cfe84e0d328eb126cf2b4bc20c536349927533",
                "md5": "e1098175a957c63be71ac7a1d3c49fba",
                "sha256": "b4eb2304573c9fdf448d3fa4a4fdcb727b93002b5c5c56c14a5ffbbc39f64ae4"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e1098175a957c63be71ac7a1d3c49fba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 46137,
            "upload_time": "2023-07-22T06:08:03",
            "upload_time_iso_8601": "2023-07-22T06:08:03.258449Z",
            "url": "https://files.pythonhosted.org/packages/65/4b/06f4c1a5704878d85937b1cfe84e0d328eb126cf2b4bc20c536349927533/ijson-3.2.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6f7a04ee973720cf0fda8bbb9cff72c8cca0516916a3292dbc2b8645f319156",
                "md5": "74545d9c50cb58f0b5f42211ceee61f6",
                "sha256": "923131f5153c70936e8bd2dd9dcfcff43c67a3d1c789e9c96724747423c173eb"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74545d9c50cb58f0b5f42211ceee61f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 48163,
            "upload_time": "2023-07-22T06:08:04",
            "upload_time_iso_8601": "2023-07-22T06:08:04.846232Z",
            "url": "https://files.pythonhosted.org/packages/b6/f7/a04ee973720cf0fda8bbb9cff72c8cca0516916a3292dbc2b8645f319156/ijson-3.2.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "669338fa3ca3ffec156b10b68180d972647a70305a8c4097fecdad5bcdb4d1de",
                "md5": "049fe70706d38c9f035c63bc7f4d898e",
                "sha256": "904f77dd3d87736ff668884fe5197a184748eb0c3e302ded61706501d0327465"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "049fe70706d38c9f035c63bc7f4d898e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 81949,
            "upload_time": "2023-07-22T06:08:05",
            "upload_time_iso_8601": "2023-07-22T06:08:05.954991Z",
            "url": "https://files.pythonhosted.org/packages/66/93/38fa3ca3ffec156b10b68180d972647a70305a8c4097fecdad5bcdb4d1de/ijson-3.2.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d88371bec0bdd4f5e91f7ba4710903c60a07b8784b777d02667a4e7f97ec983",
                "md5": "a7f1dd56580d05f8bfde0be47675b926",
                "sha256": "0974444c1f416e19de1e9f567a4560890095e71e81623c509feff642114c1e53"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7f1dd56580d05f8bfde0be47675b926",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 54735,
            "upload_time": "2023-07-22T06:08:07",
            "upload_time_iso_8601": "2023-07-22T06:08:07.503193Z",
            "url": "https://files.pythonhosted.org/packages/5d/88/371bec0bdd4f5e91f7ba4710903c60a07b8784b777d02667a4e7f97ec983/ijson-3.2.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c7b337152bf341be869fd5b2c8669713a6db4b22170d2676e137b44a4a22eab",
                "md5": "edd4d692daa3f94ded2193d6c0e1b517",
                "sha256": "c1a4b8eb69b6d7b4e94170aa991efad75ba156b05f0de2a6cd84f991def12ff9"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "edd4d692daa3f94ded2193d6c0e1b517",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 54121,
            "upload_time": "2023-07-22T06:08:09",
            "upload_time_iso_8601": "2023-07-22T06:08:09.121293Z",
            "url": "https://files.pythonhosted.org/packages/6c/7b/337152bf341be869fd5b2c8669713a6db4b22170d2676e137b44a4a22eab/ijson-3.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d16d0bcb4634a64eadd4f6d064bbfd170f556674a16c418b50a8a7d5272b9335",
                "md5": "7461f84f8395d5510d1067edad241844",
                "sha256": "d052417fd7ce2221114f8d3b58f05a83c1a2b6b99cafe0b86ac9ed5e2fc889df"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7461f84f8395d5510d1067edad241844",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 119206,
            "upload_time": "2023-07-22T06:08:10",
            "upload_time_iso_8601": "2023-07-22T06:08:10.426633Z",
            "url": "https://files.pythonhosted.org/packages/d1/6d/0bcb4634a64eadd4f6d064bbfd170f556674a16c418b50a8a7d5272b9335/ijson-3.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "188644fd5092c76d4156bc14cae39a6def99e42a5621d947085d55cd63272b7f",
                "md5": "338fd8fc95b83da5d3ce708ada863b91",
                "sha256": "7b8064a85ec1b0beda7dd028e887f7112670d574db606f68006c72dd0bb0e0e2"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "338fd8fc95b83da5d3ce708ada863b91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 112930,
            "upload_time": "2023-07-22T06:08:11",
            "upload_time_iso_8601": "2023-07-22T06:08:11.595304Z",
            "url": "https://files.pythonhosted.org/packages/18/86/44fd5092c76d4156bc14cae39a6def99e42a5621d947085d55cd63272b7f/ijson-3.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ccb8deea644d652eef65b8a7105d11b1b9df812306b59b115c3d42b34764320",
                "md5": "6198883b9ce29af9af98641fc3dcd3e7",
                "sha256": "eaac293853f1342a8d2a45ac1f723c860f700860e7743fb97f7b76356df883a8"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6198883b9ce29af9af98641fc3dcd3e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 116529,
            "upload_time": "2023-07-22T06:08:13",
            "upload_time_iso_8601": "2023-07-22T06:08:13.253440Z",
            "url": "https://files.pythonhosted.org/packages/2c/cb/8deea644d652eef65b8a7105d11b1b9df812306b59b115c3d42b34764320/ijson-3.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9c2103dec4e699c5d1fc2024d3f12f6e62550a0035d02f7b52f6f2285bf2c65",
                "md5": "47c00cd19260623a1534362ccc7016d6",
                "sha256": "6c32c18a934c1dc8917455b0ce478fd7a26c50c364bd52c5a4fb0fc6bb516af7"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "47c00cd19260623a1534362ccc7016d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 134754,
            "upload_time": "2023-07-22T06:08:14",
            "upload_time_iso_8601": "2023-07-22T06:08:14.368147Z",
            "url": "https://files.pythonhosted.org/packages/f9/c2/103dec4e699c5d1fc2024d3f12f6e62550a0035d02f7b52f6f2285bf2c65/ijson-3.2.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46098fc1acab4be0ad18df4210a8565cd78bcb59221535358147b5f6df06df3b",
                "md5": "315ee7daa165d33f61f8f3e1379157f7",
                "sha256": "713a919e0220ac44dab12b5fed74f9130f3480e55e90f9d80f58de129ea24f83"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "315ee7daa165d33f61f8f3e1379157f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 128049,
            "upload_time": "2023-07-22T06:08:15",
            "upload_time_iso_8601": "2023-07-22T06:08:15.465655Z",
            "url": "https://files.pythonhosted.org/packages/46/09/8fc1acab4be0ad18df4210a8565cd78bcb59221535358147b5f6df06df3b/ijson-3.2.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42fa70d8c1fe7e27b37f3614e3fe93ab6ad3c3e44ba2391a4f2317f00b6349f4",
                "md5": "5a5cc4b5ad17f43dca411d945ec4e058",
                "sha256": "4a3a6a2fbbe7550ffe52d151cf76065e6b89cfb3e9d0463e49a7e322a25d0426"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a5cc4b5ad17f43dca411d945ec4e058",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 132664,
            "upload_time": "2023-07-22T06:08:17",
            "upload_time_iso_8601": "2023-07-22T06:08:17.217711Z",
            "url": "https://files.pythonhosted.org/packages/42/fa/70d8c1fe7e27b37f3614e3fe93ab6ad3c3e44ba2391a4f2317f00b6349f4/ijson-3.2.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dab299bf1a1a5d987d2bf5ab1443f74a8649a0bf84af8892312ae54aeb4c7891",
                "md5": "245958398567fcd2bc9d8a4347a8bfe8",
                "sha256": "6a4db2f7fb9acfb855c9ae1aae602e4648dd1f88804a0d5cfb78c3639bcf156c"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "245958398567fcd2bc9d8a4347a8bfe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 46136,
            "upload_time": "2023-07-22T06:08:18",
            "upload_time_iso_8601": "2023-07-22T06:08:18.841883Z",
            "url": "https://files.pythonhosted.org/packages/da/b2/99bf1a1a5d987d2bf5ab1443f74a8649a0bf84af8892312ae54aeb4c7891/ijson-3.2.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f122d9a51a116291589feeeb7c6ab38dfad2a48afe7e22476ce2a0df8e43443",
                "md5": "adef4debd2b80f1d36a1a8dd889dae51",
                "sha256": "ccd6be56335cbb845f3d3021b1766299c056c70c4c9165fb2fbe2d62258bae3f"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "adef4debd2b80f1d36a1a8dd889dae51",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 48169,
            "upload_time": "2023-07-22T06:08:20",
            "upload_time_iso_8601": "2023-07-22T06:08:20.624289Z",
            "url": "https://files.pythonhosted.org/packages/3f/12/2d9a51a116291589feeeb7c6ab38dfad2a48afe7e22476ce2a0df8e43443/ijson-3.2.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "783ee948c65aaafbd685a4e9dedbdec2341d1c673c0868902bddd7eaf8963685",
                "md5": "1d8922c757a78001cbc02a6f9b53981c",
                "sha256": "eeb286639649fb6bed37997a5e30eefcacddac79476d24128348ec890b2a0ccb"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d8922c757a78001cbc02a6f9b53981c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 54392,
            "upload_time": "2023-07-22T06:08:21",
            "upload_time_iso_8601": "2023-07-22T06:08:21.731856Z",
            "url": "https://files.pythonhosted.org/packages/78/3e/e948c65aaafbd685a4e9dedbdec2341d1c673c0868902bddd7eaf8963685/ijson-3.2.3-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51d77615f8dcf83798db3c877e482e05c283687490ce7e870316426b6740b13a",
                "md5": "ee442b35d7df48b9f8560dd2c1852b17",
                "sha256": "396338a655fb9af4ac59dd09c189885b51fa0eefc84d35408662031023c110d1"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee442b35d7df48b9f8560dd2c1852b17",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 106537,
            "upload_time": "2023-07-22T06:08:23",
            "upload_time_iso_8601": "2023-07-22T06:08:23.836449Z",
            "url": "https://files.pythonhosted.org/packages/51/d7/7615f8dcf83798db3c877e482e05c283687490ce7e870316426b6740b13a/ijson-3.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bb4fa9a309c4be6ca62d6ba14478b3bf0a1b18b32e4001cfcc6d74aaa2698c1",
                "md5": "861bdb6519a56fe35eafe4bef844acfe",
                "sha256": "0e0243d166d11a2a47c17c7e885debf3b19ed136be2af1f5d1c34212850236ac"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "861bdb6519a56fe35eafe4bef844acfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 100084,
            "upload_time": "2023-07-22T06:08:24",
            "upload_time_iso_8601": "2023-07-22T06:08:24.992986Z",
            "url": "https://files.pythonhosted.org/packages/1b/b4/fa9a309c4be6ca62d6ba14478b3bf0a1b18b32e4001cfcc6d74aaa2698c1/ijson-3.2.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1a34e8cd2e36ba6747f350e146608b16fb30ce4ca92158d9a017fafd4acc2ab",
                "md5": "58a4a6062eea80a169fab7ce48f367e1",
                "sha256": "85afdb3f3a5d0011584d4fa8e6dccc5936be51c27e84cd2882fe904ca3bd04c5"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58a4a6062eea80a169fab7ce48f367e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 104486,
            "upload_time": "2023-07-22T06:08:26",
            "upload_time_iso_8601": "2023-07-22T06:08:26.113435Z",
            "url": "https://files.pythonhosted.org/packages/a1/a3/4e8cd2e36ba6747f350e146608b16fb30ce4ca92158d9a017fafd4acc2ab/ijson-3.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb697c2000a52d8575c3262f9a4918e43323d3d1211f5d63df22c0a17b016b88",
                "md5": "9827651513979aa0319bd54adb085714",
                "sha256": "4fc35d569eff3afa76bfecf533f818ecb9390105be257f3f83c03204661ace70"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9827651513979aa0319bd54adb085714",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 115426,
            "upload_time": "2023-07-22T06:08:27",
            "upload_time_iso_8601": "2023-07-22T06:08:27.869093Z",
            "url": "https://files.pythonhosted.org/packages/fb/69/7c2000a52d8575c3262f9a4918e43323d3d1211f5d63df22c0a17b016b88/ijson-3.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93be829dd01619cd89e6a18dba2333f4929d1b55b1849ea6bbe0484bd9cad993",
                "md5": "9c39b0ba69ec793b03dc25bbef03f47c",
                "sha256": "455d7d3b7a6aacfb8ab1ebcaf697eedf5be66e044eac32508fccdc633d995f0e"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9c39b0ba69ec793b03dc25bbef03f47c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 110450,
            "upload_time": "2023-07-22T06:08:29",
            "upload_time_iso_8601": "2023-07-22T06:08:29.249387Z",
            "url": "https://files.pythonhosted.org/packages/93/be/829dd01619cd89e6a18dba2333f4929d1b55b1849ea6bbe0484bd9cad993/ijson-3.2.3-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f142139ae49d7f76aece26abe461a56013feb12c9220ca771791e365edc6890",
                "md5": "bc09f5120deaf55063ccc7c7ea6d839b",
                "sha256": "c63f3d57dbbac56cead05b12b81e8e1e259f14ce7f233a8cbe7fa0996733b628"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc09f5120deaf55063ccc7c7ea6d839b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 113887,
            "upload_time": "2023-07-22T06:08:31",
            "upload_time_iso_8601": "2023-07-22T06:08:31.013027Z",
            "url": "https://files.pythonhosted.org/packages/9f/14/2139ae49d7f76aece26abe461a56013feb12c9220ca771791e365edc6890/ijson-3.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6b8d1a3749d5930c610d23310e2e2405b41993f44d28e00b515f7c16211dfca",
                "md5": "7095fedc14653315dcbf3d4cd927eb69",
                "sha256": "a4d7fe3629de3ecb088bff6dfe25f77be3e8261ed53d5e244717e266f8544305"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "7095fedc14653315dcbf3d4cd927eb69",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 47669,
            "upload_time": "2023-07-22T06:08:32",
            "upload_time_iso_8601": "2023-07-22T06:08:32.202873Z",
            "url": "https://files.pythonhosted.org/packages/d6/b8/d1a3749d5930c610d23310e2e2405b41993f44d28e00b515f7c16211dfca/ijson-3.2.3-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7620c4d6a4585ba040189d70051836a1b0c3062ea7fc888f180e9760c82c11d9",
                "md5": "14ae5991cc7d46900cee39d9b0db41f5",
                "sha256": "96190d59f015b5a2af388a98446e411f58ecc6a93934e036daa75f75d02386a0"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "14ae5991cc7d46900cee39d9b0db41f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 50196,
            "upload_time": "2023-07-22T06:08:33",
            "upload_time_iso_8601": "2023-07-22T06:08:33.513216Z",
            "url": "https://files.pythonhosted.org/packages/76/20/c4d6a4585ba040189d70051836a1b0c3062ea7fc888f180e9760c82c11d9/ijson-3.2.3-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c88d9f3dfa3b6da347a319c0eca7c51ca05bf1c17b7a303499eea3831d284433",
                "md5": "45537c8df7410c5823230d9351748690",
                "sha256": "35194e0b8a2bda12b4096e2e792efa5d4801a0abb950c48ade351d479cd22ba5"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45537c8df7410c5823230d9351748690",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 54450,
            "upload_time": "2023-07-22T06:08:34",
            "upload_time_iso_8601": "2023-07-22T06:08:34.730523Z",
            "url": "https://files.pythonhosted.org/packages/c8/8d/9f3dfa3b6da347a319c0eca7c51ca05bf1c17b7a303499eea3831d284433/ijson-3.2.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfe04ca00094b947ce16eb0e30134d4367d64ced8f447449770e5e6887e05a26",
                "md5": "4bf4fa374075e58d8f3fab88a06956b9",
                "sha256": "d1053fb5f0b010ee76ca515e6af36b50d26c1728ad46be12f1f147a835341083"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4bf4fa374075e58d8f3fab88a06956b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 106518,
            "upload_time": "2023-07-22T06:08:36",
            "upload_time_iso_8601": "2023-07-22T06:08:36.531462Z",
            "url": "https://files.pythonhosted.org/packages/df/e0/4ca00094b947ce16eb0e30134d4367d64ced8f447449770e5e6887e05a26/ijson-3.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a440cfbe2b1dedfd2f06d86be7246781a18563b309f4ce2bebfba73960fd73a",
                "md5": "78a1a9ca76172f91a690a6afd3ab2cf2",
                "sha256": "211124cff9d9d139dd0dfced356f1472860352c055d2481459038b8205d7d742"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78a1a9ca76172f91a690a6afd3ab2cf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 100035,
            "upload_time": "2023-07-22T06:08:38",
            "upload_time_iso_8601": "2023-07-22T06:08:38.051465Z",
            "url": "https://files.pythonhosted.org/packages/8a/44/0cfbe2b1dedfd2f06d86be7246781a18563b309f4ce2bebfba73960fd73a/ijson-3.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2534fc6b087b1e21dc396efb50038725d6166bf8371544c012dfc1af0e81a64a",
                "md5": "2b86158e0f9e06b41b6985d4afb0f6e0",
                "sha256": "92dc4d48e9f6a271292d6079e9fcdce33c83d1acf11e6e12696fb05c5889fe74"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b86158e0f9e06b41b6985d4afb0f6e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 104460,
            "upload_time": "2023-07-22T06:08:40",
            "upload_time_iso_8601": "2023-07-22T06:08:40.055341Z",
            "url": "https://files.pythonhosted.org/packages/25/34/fc6b087b1e21dc396efb50038725d6166bf8371544c012dfc1af0e81a64a/ijson-3.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b74a6fbcaa841be90ec4c9afc3f46eb19d05875d2c1db0879eebc11488b4ca0b",
                "md5": "fe22cae934572d94e6ac93b85f887a7f",
                "sha256": "3dcc33ee56f92a77f48776014ddb47af67c33dda361e84371153c4f1ed4434e1"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe22cae934572d94e6ac93b85f887a7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 116327,
            "upload_time": "2023-07-22T06:08:41",
            "upload_time_iso_8601": "2023-07-22T06:08:41.999476Z",
            "url": "https://files.pythonhosted.org/packages/b7/4a/6fbcaa841be90ec4c9afc3f46eb19d05875d2c1db0879eebc11488b4ca0b/ijson-3.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7325e07bbb446fe3782c327a9f7519419d67649d505878f67de2ad5ba039c65b",
                "md5": "a1c10f9a9524c5c35df34b2077a0097a",
                "sha256": "98c6799925a5d1988da4cd68879b8eeab52c6e029acc45e03abb7921a4715c4b"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a1c10f9a9524c5c35df34b2077a0097a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 110750,
            "upload_time": "2023-07-22T06:08:43",
            "upload_time_iso_8601": "2023-07-22T06:08:43.898550Z",
            "url": "https://files.pythonhosted.org/packages/73/25/e07bbb446fe3782c327a9f7519419d67649d505878f67de2ad5ba039c65b/ijson-3.2.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b2c35e41bc3fe5e06fb583956ea7ec59ae36e95af2a3b24abcbf0839c92a1a0",
                "md5": "86adcc44109e422bf91228535b94f574",
                "sha256": "4252e48c95cd8ceefc2caade310559ab61c37d82dfa045928ed05328eb5b5f65"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86adcc44109e422bf91228535b94f574",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 114304,
            "upload_time": "2023-07-22T06:08:45",
            "upload_time_iso_8601": "2023-07-22T06:08:45.849967Z",
            "url": "https://files.pythonhosted.org/packages/8b/2c/35e41bc3fe5e06fb583956ea7ec59ae36e95af2a3b24abcbf0839c92a1a0/ijson-3.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75548d127a199691cce4aadac05b445039c3cd6a4141edab9a360b15a043d285",
                "md5": "9698cdbae0d17148db3ba4e781dae474",
                "sha256": "644f4f03349ff2731fd515afd1c91b9e439e90c9f8c28292251834154edbffca"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "9698cdbae0d17148db3ba4e781dae474",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 46051,
            "upload_time": "2023-07-22T06:08:47",
            "upload_time_iso_8601": "2023-07-22T06:08:47.097638Z",
            "url": "https://files.pythonhosted.org/packages/75/54/8d127a199691cce4aadac05b445039c3cd6a4141edab9a360b15a043d285/ijson-3.2.3-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54a5d3b520512b245716721c867717b3004be6f02d90deffc0cbf16c96b91dc8",
                "md5": "506f470ff7df4042d397d8b085c6f7e2",
                "sha256": "ba33c764afa9ecef62801ba7ac0319268a7526f50f7601370d9f8f04e77fc02b"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "506f470ff7df4042d397d8b085c6f7e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 48106,
            "upload_time": "2023-07-22T06:08:48",
            "upload_time_iso_8601": "2023-07-22T06:08:48.902542Z",
            "url": "https://files.pythonhosted.org/packages/54/a5/d3b520512b245716721c867717b3004be6f02d90deffc0cbf16c96b91dc8/ijson-3.2.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbbedc61f750b335525accb8df1e1dbace816d387b9c098db7407ba5e9300ef4",
                "md5": "802ec8e15ad9e1ac5ece1d785ca1a7ea",
                "sha256": "4b2ec8c2a3f1742cbd5f36b65e192028e541b5fd8c7fd97c1fc0ca6c427c704a"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "802ec8e15ad9e1ac5ece1d785ca1a7ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 81969,
            "upload_time": "2023-07-22T06:08:50",
            "upload_time_iso_8601": "2023-07-22T06:08:50.626303Z",
            "url": "https://files.pythonhosted.org/packages/fb/be/dc61f750b335525accb8df1e1dbace816d387b9c098db7407ba5e9300ef4/ijson-3.2.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4dd9bafdb9efe7eb637bc2af1a9d50c2324e4714de5949efaae5dadc01858665",
                "md5": "44d4d6868eeb73ca0b146f52c1176aa2",
                "sha256": "7dc357da4b4ebd8903e77dbcc3ce0555ee29ebe0747c3c7f56adda423df8ec89"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44d4d6868eeb73ca0b146f52c1176aa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 54723,
            "upload_time": "2023-07-22T06:08:51",
            "upload_time_iso_8601": "2023-07-22T06:08:51.783917Z",
            "url": "https://files.pythonhosted.org/packages/4d/d9/bafdb9efe7eb637bc2af1a9d50c2324e4714de5949efaae5dadc01858665/ijson-3.2.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beba42672c609456107e827d165eb02d67dc5a87a9aa72335c0e1c02ed8a73ea",
                "md5": "5b0b74595df2db1e4a9aa788e5f7e62c",
                "sha256": "bcc51c84bb220ac330122468fe526a7777faa6464e3b04c15b476761beea424f"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b0b74595df2db1e4a9aa788e5f7e62c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 54131,
            "upload_time": "2023-07-22T06:08:53",
            "upload_time_iso_8601": "2023-07-22T06:08:53.755731Z",
            "url": "https://files.pythonhosted.org/packages/be/ba/42672c609456107e827d165eb02d67dc5a87a9aa72335c0e1c02ed8a73ea/ijson-3.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2dc6c59e1f533c71e296f4b3650e51e5c383d5068172a538e608e7787a8c43a",
                "md5": "c4e0232c6cd22a075a498c342f3263aa",
                "sha256": "f8d54b624629f9903005c58d9321a036c72f5c212701bbb93d1a520ecd15e370"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c4e0232c6cd22a075a498c342f3263aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 115621,
            "upload_time": "2023-07-22T06:08:55",
            "upload_time_iso_8601": "2023-07-22T06:08:55.324635Z",
            "url": "https://files.pythonhosted.org/packages/c2/dc/6c59e1f533c71e296f4b3650e51e5c383d5068172a538e608e7787a8c43a/ijson-3.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6fa1806b4962b49a0d6283163974d5b5e4f18c2e3f881cfa8cdedab98e7e926",
                "md5": "91675cf9eb4ba6929ff996e06a5b4ba8",
                "sha256": "d6ea7c7e3ec44742e867c72fd750c6a1e35b112f88a917615332c4476e718d40"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "91675cf9eb4ba6929ff996e06a5b4ba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 109551,
            "upload_time": "2023-07-22T06:08:58",
            "upload_time_iso_8601": "2023-07-22T06:08:58.031477Z",
            "url": "https://files.pythonhosted.org/packages/c6/fa/1806b4962b49a0d6283163974d5b5e4f18c2e3f881cfa8cdedab98e7e926/ijson-3.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aaaa4552cf271ac94469ebe14f2acb4a38c5ba1bcc0db954f53b9f29408983af",
                "md5": "1c28048980fc857ba39fde50dc723833",
                "sha256": "916acdc5e504f8b66c3e287ada5d4b39a3275fc1f2013c4b05d1ab9933671a6c"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c28048980fc857ba39fde50dc723833",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 113248,
            "upload_time": "2023-07-22T06:09:00",
            "upload_time_iso_8601": "2023-07-22T06:09:00.019814Z",
            "url": "https://files.pythonhosted.org/packages/aa/aa/4552cf271ac94469ebe14f2acb4a38c5ba1bcc0db954f53b9f29408983af/ijson-3.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ae96230cf96258d3a1c9c5dd200b6ecaac3194c1f3bec9012ea3c0e010bfa7e",
                "md5": "26e731e47cb6ee4534a618e7843c970c",
                "sha256": "81815b4184b85ce124bfc4c446d5f5e5e643fc119771c5916f035220ada29974"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "26e731e47cb6ee4534a618e7843c970c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 126228,
            "upload_time": "2023-07-22T06:09:01",
            "upload_time_iso_8601": "2023-07-22T06:09:01.707465Z",
            "url": "https://files.pythonhosted.org/packages/7a/e9/6230cf96258d3a1c9c5dd200b6ecaac3194c1f3bec9012ea3c0e010bfa7e/ijson-3.2.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd7928b8d193c27b7d2ecbfb0f73cb9ed0ffc771c24eada4a66251e0ababfcdf",
                "md5": "bb7effab4728c30cd4f6693debd82bba",
                "sha256": "b49fd5fe1cd9c1c8caf6c59f82b08117dd6bea2ec45b641594e25948f48f4169"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bb7effab4728c30cd4f6693debd82bba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 120629,
            "upload_time": "2023-07-22T06:09:03",
            "upload_time_iso_8601": "2023-07-22T06:09:03.184483Z",
            "url": "https://files.pythonhosted.org/packages/dd/79/28b8d193c27b7d2ecbfb0f73cb9ed0ffc771c24eada4a66251e0ababfcdf/ijson-3.2.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b7a73355dca3d648da57cbc9aa00d7fe73a846f3d820b92e750548aca7fc31b",
                "md5": "86f8960ce8d9a2974219910e1e81a2ad",
                "sha256": "86b3c91fdcb8ffb30556c9669930f02b7642de58ca2987845b04f0d7fe46d9a8"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86f8960ce8d9a2974219910e1e81a2ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 124223,
            "upload_time": "2023-07-22T06:09:04",
            "upload_time_iso_8601": "2023-07-22T06:09:04.559782Z",
            "url": "https://files.pythonhosted.org/packages/1b/7a/73355dca3d648da57cbc9aa00d7fe73a846f3d820b92e750548aca7fc31b/ijson-3.2.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5c7986ac8e7c6b342424e297cfa831e3c8f68979d09ffb6f84ce65fe9522482",
                "md5": "b7e0df4e262169f0925351376e469573",
                "sha256": "a729b0c8fb935481afe3cf7e0dadd0da3a69cc7f145dbab8502e2f1e01d85a7c"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "b7e0df4e262169f0925351376e469573",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 46184,
            "upload_time": "2023-07-22T06:09:05",
            "upload_time_iso_8601": "2023-07-22T06:09:05.901075Z",
            "url": "https://files.pythonhosted.org/packages/a5/c7/986ac8e7c6b342424e297cfa831e3c8f68979d09ffb6f84ce65fe9522482/ijson-3.2.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85b2356cc6d10333d75ac7bb7b6e4ceaa4b3e8abb5c2910e1f48743fb803ad82",
                "md5": "f2b2082464e27f8ef65da76125798e8e",
                "sha256": "d34e049992d8a46922f96483e96b32ac4c9cffd01a5c33a928e70a283710cd58"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2b2082464e27f8ef65da76125798e8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 48191,
            "upload_time": "2023-07-22T06:09:07",
            "upload_time_iso_8601": "2023-07-22T06:09:07.376049Z",
            "url": "https://files.pythonhosted.org/packages/85/b2/356cc6d10333d75ac7bb7b6e4ceaa4b3e8abb5c2910e1f48743fb803ad82/ijson-3.2.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce4f05ee1b53f990191126c85c1a32161c1902fa106193154552ce1a65777c8f",
                "md5": "b66d743214a538d03dfe900108a5d365",
                "sha256": "9c2a12dcdb6fa28f333bf10b3a0f80ec70bc45280d8435be7e19696fab2bc706"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b66d743214a538d03dfe900108a5d365",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 81988,
            "upload_time": "2023-07-22T06:09:08",
            "upload_time_iso_8601": "2023-07-22T06:09:08.593040Z",
            "url": "https://files.pythonhosted.org/packages/ce/4f/05ee1b53f990191126c85c1a32161c1902fa106193154552ce1a65777c8f/ijson-3.2.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9162f7bb45ea600755b45d5fcc5857c308f0df036b022cf8b091ca739403525e",
                "md5": "9c1b1ad9fdbc7eda1af0d576a5a269f9",
                "sha256": "1844c5b57da21466f255a0aeddf89049e730d7f3dfc4d750f0e65c36e6a61a7c"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c1b1ad9fdbc7eda1af0d576a5a269f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 54734,
            "upload_time": "2023-07-22T06:09:09",
            "upload_time_iso_8601": "2023-07-22T06:09:09.769068Z",
            "url": "https://files.pythonhosted.org/packages/91/62/f7bb45ea600755b45d5fcc5857c308f0df036b022cf8b091ca739403525e/ijson-3.2.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03f09b0b163a38211195a9a340252f0684f14c91c11f388c680d56ca168ea730",
                "md5": "cd957e37336614b98ad777bb988497df",
                "sha256": "2ec3e5ff2515f1c40ef6a94983158e172f004cd643b9e4b5302017139b6c96e4"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd957e37336614b98ad777bb988497df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 54132,
            "upload_time": "2023-07-22T06:09:10",
            "upload_time_iso_8601": "2023-07-22T06:09:10.916555Z",
            "url": "https://files.pythonhosted.org/packages/03/f0/9b0b163a38211195a9a340252f0684f14c91c11f388c680d56ca168ea730/ijson-3.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4fa17bb67264702afb0e5d8f2792a354b2b05f23b97d9485a20f9e28418b7e5",
                "md5": "734adda2b18c739088df4ccbf72f1fd2",
                "sha256": "46bafb1b9959872a1f946f8dd9c6f1a30a970fc05b7bfae8579da3f1f988e598"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "734adda2b18c739088df4ccbf72f1fd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 113667,
            "upload_time": "2023-07-22T06:09:13",
            "upload_time_iso_8601": "2023-07-22T06:09:13.119986Z",
            "url": "https://files.pythonhosted.org/packages/d4/fa/17bb67264702afb0e5d8f2792a354b2b05f23b97d9485a20f9e28418b7e5/ijson-3.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4fb542abcd90002cd91424f61bbb54bf2f5a237e616b018b4d6dc702b238479f",
                "md5": "78ec5f2bfd0ffe22ce383fd734b245d1",
                "sha256": "ab4db9fee0138b60e31b3c02fff8a4c28d7b152040553b6a91b60354aebd4b02"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78ec5f2bfd0ffe22ce383fd734b245d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 107291,
            "upload_time": "2023-07-22T06:09:14",
            "upload_time_iso_8601": "2023-07-22T06:09:14.520344Z",
            "url": "https://files.pythonhosted.org/packages/4f/b5/42abcd90002cd91424f61bbb54bf2f5a237e616b018b4d6dc702b238479f/ijson-3.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9ae2d754d4f0968aaf152f8fbfad0d9b564e2dbda614b6f9d4a338e49aac960",
                "md5": "970d0cef14f380b9612fe9444f4acba5",
                "sha256": "f4bc87e69d1997c6a55fff5ee2af878720801ff6ab1fb3b7f94adda050651e37"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "970d0cef14f380b9612fe9444f4acba5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 111061,
            "upload_time": "2023-07-22T06:09:15",
            "upload_time_iso_8601": "2023-07-22T06:09:15.789468Z",
            "url": "https://files.pythonhosted.org/packages/d9/ae/2d754d4f0968aaf152f8fbfad0d9b564e2dbda614b6f9d4a338e49aac960/ijson-3.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a399110eb844a941ed557784936e5c345cf83827e309f51120d02b9bd47af8a",
                "md5": "e2543daa54f2caa3bb846ae05a242faa",
                "sha256": "e9fd906f0c38e9f0bfd5365e1bed98d649f506721f76bb1a9baa5d7374f26f19"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2543daa54f2caa3bb846ae05a242faa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 125530,
            "upload_time": "2023-07-22T06:09:17",
            "upload_time_iso_8601": "2023-07-22T06:09:17.182429Z",
            "url": "https://files.pythonhosted.org/packages/2a/39/9110eb844a941ed557784936e5c345cf83827e309f51120d02b9bd47af8a/ijson-3.2.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9688367e332eb08dc040957ba5cefb09b865bc65242e7afed432d0effe6c3180",
                "md5": "ac06594bbae6cc35d641e0576c9d4424",
                "sha256": "e84d27d1acb60d9102728d06b9650e5b7e5cb0631bd6e3dfadba8fb6a80d6c2f"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ac06594bbae6cc35d641e0576c9d4424",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 119345,
            "upload_time": "2023-07-22T06:09:18",
            "upload_time_iso_8601": "2023-07-22T06:09:18.941276Z",
            "url": "https://files.pythonhosted.org/packages/96/88/367e332eb08dc040957ba5cefb09b865bc65242e7afed432d0effe6c3180/ijson-3.2.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d6d3c2947bbebca249b4174b1b88de984b584be58a3f30ed2076111e2ffa7ff",
                "md5": "7861baca4bccf08b9c18619561032fd4",
                "sha256": "2cc04fc0a22bb945cd179f614845c8b5106c0b3939ee0d84ce67c7a61ac1a936"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7861baca4bccf08b9c18619561032fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 123224,
            "upload_time": "2023-07-22T06:09:20",
            "upload_time_iso_8601": "2023-07-22T06:09:20.087572Z",
            "url": "https://files.pythonhosted.org/packages/7d/6d/3c2947bbebca249b4174b1b88de984b584be58a3f30ed2076111e2ffa7ff/ijson-3.2.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3638a55da92896c472944dc3347df392670800918fa0422fa93e7aae79a5306",
                "md5": "ff56c08f0f8b88800f1369781a8d594d",
                "sha256": "e641814793a037175f7ec1b717ebb68f26d89d82cfd66f36e588f32d7e488d5f"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ff56c08f0f8b88800f1369781a8d594d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 46159,
            "upload_time": "2023-07-22T06:09:21",
            "upload_time_iso_8601": "2023-07-22T06:09:21.247874Z",
            "url": "https://files.pythonhosted.org/packages/f3/63/8a55da92896c472944dc3347df392670800918fa0422fa93e7aae79a5306/ijson-3.2.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "248ba24c3470042bb1a297d28e29639e5c4d232f52ec29170663bae390f94bfe",
                "md5": "e1549d8083ddf4565266a70db355c3d6",
                "sha256": "6bd3e7e91d031f1e8cea7ce53f704ab74e61e505e8072467e092172422728b22"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e1549d8083ddf4565266a70db355c3d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 48185,
            "upload_time": "2023-07-22T06:09:22",
            "upload_time_iso_8601": "2023-07-22T06:09:22.548643Z",
            "url": "https://files.pythonhosted.org/packages/24/8b/a24c3470042bb1a297d28e29639e5c4d232f52ec29170663bae390f94bfe/ijson-3.2.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "324309f72daa9b3f02460639218c31e8f35f7c33532cfcfbaeae7466b3b732ac",
                "md5": "f647b6e0bbe92032554fc114a1e3fcc9",
                "sha256": "06f9707da06a19b01013f8c65bf67db523662a9b4a4ff027e946e66c261f17f0"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f647b6e0bbe92032554fc114a1e3fcc9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 51229,
            "upload_time": "2023-07-22T06:09:23",
            "upload_time_iso_8601": "2023-07-22T06:09:23.784576Z",
            "url": "https://files.pythonhosted.org/packages/32/43/09f72daa9b3f02460639218c31e8f35f7c33532cfcfbaeae7466b3b732ac/ijson-3.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c87be7314f05a9740544412745c05e3d9b7371e8e7fb9e019b881616112f3bb1",
                "md5": "f2ef1ce239ef6648e485dd1b1cb6d15f",
                "sha256": "be8495f7c13fa1f622a2c6b64e79ac63965b89caf664cc4e701c335c652d15f2"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f2ef1ce239ef6648e485dd1b1cb6d15f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 63266,
            "upload_time": "2023-07-22T06:09:24",
            "upload_time_iso_8601": "2023-07-22T06:09:24.970329Z",
            "url": "https://files.pythonhosted.org/packages/c8/7b/e7314f05a9740544412745c05e3d9b7371e8e7fb9e019b881616112f3bb1/ijson-3.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68b000f5d3bd2814b5777f88e6911d2d8ba8fb19fa85799449e868d780326c2d",
                "md5": "3f0c4d4f1a1ed1d2489cc9488a14dd99",
                "sha256": "7596b42f38c3dcf9d434dddd50f46aeb28e96f891444c2b4b1266304a19a2c09"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3f0c4d4f1a1ed1d2489cc9488a14dd99",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 64085,
            "upload_time": "2023-07-22T06:09:26",
            "upload_time_iso_8601": "2023-07-22T06:09:26.141950Z",
            "url": "https://files.pythonhosted.org/packages/68/b0/00f5d3bd2814b5777f88e6911d2d8ba8fb19fa85799449e868d780326c2d/ijson-3.2.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "875532e87f91d903611e3dbfd50b544119026d66755539aca14c728f6eedde3a",
                "md5": "baeb964ab0f1b1e27454db7528bd5156",
                "sha256": "fbac4e9609a1086bbad075beb2ceec486a3b138604e12d2059a33ce2cba93051"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baeb964ab0f1b1e27454db7528bd5156",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 61519,
            "upload_time": "2023-07-22T06:09:27",
            "upload_time_iso_8601": "2023-07-22T06:09:27.278057Z",
            "url": "https://files.pythonhosted.org/packages/87/55/32e87f91d903611e3dbfd50b544119026d66755539aca14c728f6eedde3a/ijson-3.2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c78de71e970721ff1991a22fa723fcecd4252c5bd2fd1ec230b845c9328fc6b",
                "md5": "c5a0f52d8c6c0c4510dd2f1c7883446a",
                "sha256": "db2d6341f9cb538253e7fe23311d59252f124f47165221d3c06a7ed667ecd595"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5a0f52d8c6c0c4510dd2f1c7883446a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 48383,
            "upload_time": "2023-07-22T06:09:28",
            "upload_time_iso_8601": "2023-07-22T06:09:28.585564Z",
            "url": "https://files.pythonhosted.org/packages/5c/78/de71e970721ff1991a22fa723fcecd4252c5bd2fd1ec230b845c9328fc6b/ijson-3.2.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1c74249b399f6e06b0f389d17b9141d0de9a659c01ab749b6102abc656db984",
                "md5": "909b75252436a87507a8f421036f1252",
                "sha256": "fa8b98be298efbb2588f883f9953113d8a0023ab39abe77fe734b71b46b1220a"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "909b75252436a87507a8f421036f1252",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 51233,
            "upload_time": "2023-07-22T06:09:29",
            "upload_time_iso_8601": "2023-07-22T06:09:29.928664Z",
            "url": "https://files.pythonhosted.org/packages/e1/c7/4249b399f6e06b0f389d17b9141d0de9a659c01ab749b6102abc656db984/ijson-3.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cbba9b875c0f35ebed0ead1c7d98feef11cccac5e0928156f012490cdf20b95",
                "md5": "02465c68a529600598a8a482e10be5e4",
                "sha256": "674e585361c702fad050ab4c153fd168dc30f5980ef42b64400bc84d194e662d"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "02465c68a529600598a8a482e10be5e4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 63208,
            "upload_time": "2023-07-22T06:09:31",
            "upload_time_iso_8601": "2023-07-22T06:09:31.161876Z",
            "url": "https://files.pythonhosted.org/packages/8c/bb/a9b875c0f35ebed0ead1c7d98feef11cccac5e0928156f012490cdf20b95/ijson-3.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1dea768c38db2aa1548d637730683bdc2433aeb176379246f6a383f9caffca2",
                "md5": "1c545d9ed7865a47ade4d8636946f0cb",
                "sha256": "fd12e42b9cb9c0166559a3ffa276b4f9fc9d5b4c304e5a13668642d34b48b634"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1c545d9ed7865a47ade4d8636946f0cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 63952,
            "upload_time": "2023-07-22T06:09:32",
            "upload_time_iso_8601": "2023-07-22T06:09:32.907699Z",
            "url": "https://files.pythonhosted.org/packages/f1/de/a768c38db2aa1548d637730683bdc2433aeb176379246f6a383f9caffca2/ijson-3.2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bcd5afe1bb68325b42e65a331b60db669ab6144fc4578bfb9cb5221c031daff",
                "md5": "b9c319eac20b79590fd38e2298b20984",
                "sha256": "d31e0d771d82def80cd4663a66de277c3b44ba82cd48f630526b52f74663c639"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9c319eac20b79590fd38e2298b20984",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 61484,
            "upload_time": "2023-07-22T06:09:34",
            "upload_time_iso_8601": "2023-07-22T06:09:34.289209Z",
            "url": "https://files.pythonhosted.org/packages/1b/cd/5afe1bb68325b42e65a331b60db669ab6144fc4578bfb9cb5221c031daff/ijson-3.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fdc8cb813200cdd5b23ffbc300437d8f0f5e2c0c0c8250ef9a61dd5c855330d",
                "md5": "016720520471f3b7e5390b80b767e7c5",
                "sha256": "7ce4c70c23521179d6da842bb9bc2e36bb9fad1e0187e35423ff0f282890c9ca"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "016720520471f3b7e5390b80b767e7c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 48368,
            "upload_time": "2023-07-22T06:09:36",
            "upload_time_iso_8601": "2023-07-22T06:09:36.070192Z",
            "url": "https://files.pythonhosted.org/packages/1f/dc/8cb813200cdd5b23ffbc300437d8f0f5e2c0c0c8250ef9a61dd5c855330d/ijson-3.2.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e583474f96ff7b76c78eec559f877589d46da72860d3da04bbf7601c4fd9b32d",
                "md5": "6e639099f455f82b27f6b40c542bd662",
                "sha256": "39f551a6fbeed4433c85269c7c8778e2aaea2501d7ebcb65b38f556030642c17"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e639099f455f82b27f6b40c542bd662",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 51241,
            "upload_time": "2023-07-22T06:09:37",
            "upload_time_iso_8601": "2023-07-22T06:09:37.276911Z",
            "url": "https://files.pythonhosted.org/packages/e5/83/474f96ff7b76c78eec559f877589d46da72860d3da04bbf7601c4fd9b32d/ijson-3.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75c4bf15c8aefbb6cccd40b97eba5b09d9bc16f72fb0945c7071e6723f14b2dd",
                "md5": "599a11c1043e73963477628b2ef6cc64",
                "sha256": "3b14d322fec0de7af16f3ef920bf282f0dd747200b69e0b9628117f381b7775b"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "599a11c1043e73963477628b2ef6cc64",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 63250,
            "upload_time": "2023-07-22T06:09:38",
            "upload_time_iso_8601": "2023-07-22T06:09:38.515577Z",
            "url": "https://files.pythonhosted.org/packages/75/c4/bf15c8aefbb6cccd40b97eba5b09d9bc16f72fb0945c7071e6723f14b2dd/ijson-3.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1831904ee13b144b5c47b1e037f4507faf7fe21184a500490d7421e467c0af58",
                "md5": "7da7278c85f0da14abadeb7b8cf70211",
                "sha256": "7851a341429b12d4527ca507097c959659baf5106c7074d15c17c387719ffbcd"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7da7278c85f0da14abadeb7b8cf70211",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 64017,
            "upload_time": "2023-07-22T06:09:39",
            "upload_time_iso_8601": "2023-07-22T06:09:39.924991Z",
            "url": "https://files.pythonhosted.org/packages/18/31/904ee13b144b5c47b1e037f4507faf7fe21184a500490d7421e467c0af58/ijson-3.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1663379288ee38453166dca4a433ef5ad75525cdaa57c5df24bfcfb441400b14",
                "md5": "4f0c58730129bf987eddcad9cd0d70aa",
                "sha256": "db3bf1b42191b5cc9b6441552fdcb3b583594cb6b19e90d1578b7cbcf80d0fae"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f0c58730129bf987eddcad9cd0d70aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 61437,
            "upload_time": "2023-07-22T06:09:41",
            "upload_time_iso_8601": "2023-07-22T06:09:41.686397Z",
            "url": "https://files.pythonhosted.org/packages/16/63/379288ee38453166dca4a433ef5ad75525cdaa57c5df24bfcfb441400b14/ijson-3.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cf05190fdbc34f6f79a838304854198fe62c55ea860025328f1a5b60ed3ffd1",
                "md5": "6688b03972c4b3e4f9ae1bf40434b52a",
                "sha256": "6f662dc44362a53af3084d3765bb01cd7b4734d1f484a6095cad4cb0cbfe5374"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6688b03972c4b3e4f9ae1bf40434b52a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 48304,
            "upload_time": "2023-07-22T06:09:42",
            "upload_time_iso_8601": "2023-07-22T06:09:42.849784Z",
            "url": "https://files.pythonhosted.org/packages/1c/f0/5190fdbc34f6f79a838304854198fe62c55ea860025328f1a5b60ed3ffd1/ijson-3.2.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2058acdd87bd1b926fa2348a7f2ee5e1e7e2c9b808db78342317fc2474c87516",
                "md5": "19cbb9aa28d8c5a86a916515615dece7",
                "sha256": "10294e9bf89cb713da05bc4790bdff616610432db561964827074898e174f917"
            },
            "downloads": -1,
            "filename": "ijson-3.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "19cbb9aa28d8c5a86a916515615dece7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 57596,
            "upload_time": "2023-07-22T06:09:44",
            "upload_time_iso_8601": "2023-07-22T06:09:44.232969Z",
            "url": "https://files.pythonhosted.org/packages/20/58/acdd87bd1b926fa2348a7f2ee5e1e7e2c9b808db78342317fc2474c87516/ijson-3.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-22 06:09:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ICRAR",
    "github_project": "ijson",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "appveyor": true,
    "tox": true,
    "lcname": "ijson"
}
        
Elapsed time: 0.10405s