prance


Nameprance JSON
Version 23.6.21.0 PyPI version JSON
download
home_pagehttps://github.com/RonnyPfannschmidt/prance
SummaryResolving Swagger/OpenAPI 2.0 and 3.0.0 Parser
upload_time2023-06-21 20:01:57
maintainerRonny Pfannschmidt
docs_urlNone
authorJens Finkhaeuser
requires_python>=3.8
licenseMITNFA
keywords swagger openapi parsing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |License| |PyPI| |Python Versions| |Package Format| |Package Status|

|Logo|

Prance provides parsers for `Swagger/OpenAPI
2.0 and 3.0 <http://swagger.io/specification/>`__ API specifications in Python.
It uses `openapi\_spec\_validator <https://github.com/p1c2u/openapi-spec-validator>`__,
`swagger\_spec\_validator <https://github.com/Yelp/swagger_spec_validator>`__ or
`flex <https://github.com/pipermerriam/flex>`__
to validate specifications, but additionally resolves `JSON
references <https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03>`__
in accordance with the OpenAPI spec.

Mostly the latter involves handling non-URI references; OpenAPI is fine
with providing relative file paths, whereas JSON references require URIs
at this point in time.

Usage
=====

Installation
------------

Prance is available from PyPI, and can be installed via pip:

.. code:: bash

    $ pip install prance

Note that this will install the code, but additional subpackages must be specified
to unlock various pieces of functionality. At minimum, a parsing backend must be
installed. For the CLI functionality, you need further dependencies.

The recommended installation installs the CLI, uses ICU and installs one validation
backend:

.. code:: bash

    $ pip install prance[osv,icu,cli]

Make sure you have `ICU Unicode Library <http://site.icu-project.org/home>`__ installed,
as well as Python dev library before running the commands above. If not, use the
following commands:

.. code:: bash

    $ sudo apt-get install libicu-dev python3-dev # Ubuntu/Debian
    $ sudo dnf install libicu-devel python3-devel # Fedora


Command Line Interface
----------------------

After installing prance, a CLI is available for validating (and resolving
external references in) specs:

.. code:: bash

    # Validates with resolving
    $ prance validate path/to/swagger.yml

    # Validates without resolving
    $ prance validate --no-resolve path/to/swagger.yml

    # Fetch URL, validate and resolve.
    $ prance validate http://petstore.swagger.io/v2/swagger.json
    Processing "http://petstore.swagger.io/v2/swagger.json"...
     -> Resolving external references.
    Validates OK as Swagger/OpenAPI 2.0!

Validation is not the only feature of prance. One of the side effects of
resolving is that from a spec with references, one can create a fully resolved
output spec. In the past, this was done via options to the ``validate`` command,
but now there's a specific command just for this purpose:

.. code:: bash

    # Compile spec
    $ prance compile path/to/input.yml path/to/output.yml


Lastly, with the arrival of OpenAPI 3.0.0, it becomes useful for tooling to
convert older specs to the new standard. Instead of re-inventing the wheel,
prance just provides a CLI command for passing specs to the web API of
`swagger2openapi <https://github.com/Mermade/swagger2openapi>`__ - a working
internet connection is therefore required for this command:

.. code:: bash

    # Convert spec
    $ prance convert path/to/swagger.yml path/to/openapi.yml


Code
----

Most likely you have spec file and want to parse it:

.. code:: python

    from prance import ResolvingParser
    parser = ResolvingParser('path/to/my/swagger.yaml')
    parser.specification  # contains fully resolved specs as a dict

Prance also includes a non-resolving parser that does not follow JSON
references, in case you prefer that.

.. code:: python

    from prance import BaseParser
    parser = BaseParser('path/to/my/swagger.yaml')
    parser.specification  # contains specs as a dict still containing JSON references

On Windows, the code reacts correctly if you pass posix-like paths
(``/c:/swagger``) or if the path is relative.  If you pass absolute
windows path (like ``c:\swagger.yaml``), you can use
``prance.util.fs.abspath`` to convert them.

URLs can also be parsed:

.. code:: python

    parser = ResolvingParser('http://petstore.swagger.io/v2/swagger.json')

Largely, that's it. There is a whole slew of utility code that you may
or may not find useful, too. Look at the `full documentation
<https://prance.readthedocs.io/en/latest/#api-modules>`__ for details.


Compatibility
-------------

*Python Versions*

Version 0.16.2 is the last version supporting Python 2. It was released on
Nov 12th, 2019. Python 2 reaches end of life at the end of 2019. If you wish
for updates to the Python 2 supported packages, please contact the maintainer
directly.

Until fairly recently, we also tested with `PyPy <https://www.pypy.org/>`__.
Unfortunately, Travis isn't very good at supporting this. So in the absence
of spare time, they're disabled. `Issue 50 <https://github.com/jfinkhaeuser/prance/issues/50>`__
tracks progress on that.

Similarly, but less critically, Python 3.4 is no longer receiving a lot of
love from CI vendors, so automated builds on that version are no longer
supported.

*Backends*

Different validation backends support different features.

+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+
| Backend                | Python Version | OpenAPI Version | Strict Mode | Notes                                                 | Available From | Link                                                                              |
+========================+================+=================+=============+=======================================================+================+===================================================================================+
| swagger-spec-validator | 2 and 3        | 2.0 only        | yes         | Slow; does not accept integer keys (see strict mode). | prance 0.1     | `swagger\_spec\_validator <https://github.com/Yelp/swagger_spec_validator>`__     |
+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+
| flex                   | 2 and 3        | 2.0 only        | n/a         | Fastest; unfortunately deprecated.                    | prance 0.8     | `flex <https://github.com/pipermerriam/flex>`__                                   |
+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+
| openapi-spec-validator | 2 and 3        | 2.0 and 3.0     | yes         | Slow; does not accept integer keys (see strict mode). | prance 0.11    | `openapi\_spec\_validator <https://github.com/p1c2u/openapi-spec-validator>`__    |
+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+

You can select the backend in the constructor of the parser(s):

.. code:: python

    parser = ResolvingParser('http://petstore.swagger.io/v2/swagger.json', backend = 'openapi-spec-validator')


No backend is included in the dependencies; they are detected at run-time. If you install them,
they can be used:

.. code:: bash

    $ pip install openapi-spec-validator
    $ pip install prance
    $ prance validate --backend=openapi-spec-validator path/to/spec.yml

*A note on flex usage:* While flex is the fastest validation backend, unfortunately it is no longer
maintained and there are issues with its dependencies. For one thing, it depends on a version of `PyYAML`
that contains security flaws. For another, it depends explicitly on older versions of `click`.

If you use the flex subpackage, therefore, you do so at your own risk.

*Compatibility*

See `COMPATIBILITY.rst <https://github.com/jfinkhaeuser/prance/blob/master/COMPATIBILITY.rst>`__
for a list of known issues.


Partial Reference Resolution
----------------------------

It's possible to instruct the parser to only resolve some kinds of references.
This allows e.g. resolving references from external URLs, whilst keeping local
references (i.e. to local files, or file internal) intact.

.. code:: python

    from prance import ResolvingParser
    from prance.util.resolver import RESOLVE_HTTP

    parser = ResolvingParser('/path/to/spec', resolve_types = RESOLVE_HTTP)


Multiple types can be specified by OR-ing constants together:

.. code:: python

    from prance import ResolvingParser
    from prance.util.resolver import RESOLVE_HTTP, RESOLVE_FILES

    parser = ResolvingParser('/path/to/spec', resolve_types = RESOLVE_HTTP | RESOLVE_FILES)


Extensions
----------

Prance includes the ability to reference outside swagger definitions
in outside Python packages. Such a package must already be importable
(i.e. installed), and be accessible via the
`ResourceManager API <https://setuptools.readthedocs.io/en/latest/pkg_resources.html#resourcemanager-api>`__
(some more info `here <https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files>`__).

For example, you might create a package ``common_swag`` with the file
``base.yaml`` containing the definition

.. code:: yaml

    definitions:
      Severity:
        type: string
        enum:
        - INFO
        - WARN
        - ERROR
        - FATAL

In the ``setup.py`` for ``common_swag`` you would add lines such as

.. code:: python

    packages=find_packages('src'),
    package_dir={'': 'src'},
    package_data={
        '': '*.yaml'
    }

Then, having installed ``common_swag`` into some application, you could
now write

.. code:: yaml

    definitions:
      Message:
        type: object
        properties:
          severity:
            $ref: 'python://common_swag/base.yaml#/definitions/Severity'
          code:
            type: string
          summary:
            type: string
          description:
            type: string
        required:
        - severity
        - summary

Contributing
============

See `CONTRIBUTING.md <https://github.com/jfinkhaeuser/prance/blob/master/CONTRIBUTING.md>`__ for details.

Professional support is available through `finkhaeuser consulting <https://finkhaeuser.de>`__.

License
=======

Licensed under MIT. See the `LICENSE.txt <https://github.com/RonnyPfannschmidt/prance/blob/master/LICENSE.txt>`__ file for details.

"Prancing unicorn" logo image Copyright (c) Jens Finkhaeuser.
Made by `Moreven B <http://morevenb.com/>`__. Use of the logo is permitted under
the `Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license <https://creativecommons.org/licenses/by-nc-sa/4.0/>`__.


.. |License| image:: https://img.shields.io/pypi/l/prance.svg
   :target: https://pypi.python.org/pypi/prance/
.. |PyPI| image:: https://img.shields.io/pypi/v/prance.svg
   :target: https://pypi.python.org/pypi/prance/
.. |Package Format| image:: https://img.shields.io/pypi/format/prance.svg
   :target: https://pypi.python.org/pypi/prance/
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/prance.svg
   :target: https://pypi.python.org/pypi/prance/
.. |Package Status| image:: https://img.shields.io/pypi/status/prance.svg
   :target: https://pypi.python.org/pypi/prance/
.. |Logo| image:: https://raw.githubusercontent.com/RonnyPfannschmidt/prance/master/docs/images/prance_logo_256.png

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/RonnyPfannschmidt/prance",
    "name": "prance",
    "maintainer": "Ronny Pfannschmidt",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "opensource@ronnypfannschmidt.de",
    "keywords": "swagger openapi parsing",
    "author": "Jens Finkhaeuser",
    "author_email": "jens@finkhaeuser.de",
    "download_url": "https://files.pythonhosted.org/packages/73/f0/bcb5ffc8b7ab8e3d02dbef3bd945cf8fd6e12c146774f900659406b9fce1/prance-23.6.21.0.tar.gz",
    "platform": null,
    "description": "|License| |PyPI| |Python Versions| |Package Format| |Package Status|\n\n|Logo|\n\nPrance provides parsers for `Swagger/OpenAPI\n2.0 and 3.0 <http://swagger.io/specification/>`__ API specifications in Python.\nIt uses `openapi\\_spec\\_validator <https://github.com/p1c2u/openapi-spec-validator>`__,\n`swagger\\_spec\\_validator <https://github.com/Yelp/swagger_spec_validator>`__ or\n`flex <https://github.com/pipermerriam/flex>`__\nto validate specifications, but additionally resolves `JSON\nreferences <https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03>`__\nin accordance with the OpenAPI spec.\n\nMostly the latter involves handling non-URI references; OpenAPI is fine\nwith providing relative file paths, whereas JSON references require URIs\nat this point in time.\n\nUsage\n=====\n\nInstallation\n------------\n\nPrance is available from PyPI, and can be installed via pip:\n\n.. code:: bash\n\n    $ pip install prance\n\nNote that this will install the code, but additional subpackages must be specified\nto unlock various pieces of functionality. At minimum, a parsing backend must be\ninstalled. For the CLI functionality, you need further dependencies.\n\nThe recommended installation installs the CLI, uses ICU and installs one validation\nbackend:\n\n.. code:: bash\n\n    $ pip install prance[osv,icu,cli]\n\nMake sure you have `ICU Unicode Library <http://site.icu-project.org/home>`__ installed,\nas well as Python dev library before running the commands above. If not, use the\nfollowing commands:\n\n.. code:: bash\n\n    $ sudo apt-get install libicu-dev python3-dev # Ubuntu/Debian\n    $ sudo dnf install libicu-devel python3-devel # Fedora\n\n\nCommand Line Interface\n----------------------\n\nAfter installing prance, a CLI is available for validating (and resolving\nexternal references in) specs:\n\n.. code:: bash\n\n    # Validates with resolving\n    $ prance validate path/to/swagger.yml\n\n    # Validates without resolving\n    $ prance validate --no-resolve path/to/swagger.yml\n\n    # Fetch URL, validate and resolve.\n    $ prance validate http://petstore.swagger.io/v2/swagger.json\n    Processing \"http://petstore.swagger.io/v2/swagger.json\"...\n     -> Resolving external references.\n    Validates OK as Swagger/OpenAPI 2.0!\n\nValidation is not the only feature of prance. One of the side effects of\nresolving is that from a spec with references, one can create a fully resolved\noutput spec. In the past, this was done via options to the ``validate`` command,\nbut now there's a specific command just for this purpose:\n\n.. code:: bash\n\n    # Compile spec\n    $ prance compile path/to/input.yml path/to/output.yml\n\n\nLastly, with the arrival of OpenAPI 3.0.0, it becomes useful for tooling to\nconvert older specs to the new standard. Instead of re-inventing the wheel,\nprance just provides a CLI command for passing specs to the web API of\n`swagger2openapi <https://github.com/Mermade/swagger2openapi>`__ - a working\ninternet connection is therefore required for this command:\n\n.. code:: bash\n\n    # Convert spec\n    $ prance convert path/to/swagger.yml path/to/openapi.yml\n\n\nCode\n----\n\nMost likely you have spec file and want to parse it:\n\n.. code:: python\n\n    from prance import ResolvingParser\n    parser = ResolvingParser('path/to/my/swagger.yaml')\n    parser.specification  # contains fully resolved specs as a dict\n\nPrance also includes a non-resolving parser that does not follow JSON\nreferences, in case you prefer that.\n\n.. code:: python\n\n    from prance import BaseParser\n    parser = BaseParser('path/to/my/swagger.yaml')\n    parser.specification  # contains specs as a dict still containing JSON references\n\nOn Windows, the code reacts correctly if you pass posix-like paths\n(``/c:/swagger``) or if the path is relative.  If you pass absolute\nwindows path (like ``c:\\swagger.yaml``), you can use\n``prance.util.fs.abspath`` to convert them.\n\nURLs can also be parsed:\n\n.. code:: python\n\n    parser = ResolvingParser('http://petstore.swagger.io/v2/swagger.json')\n\nLargely, that's it. There is a whole slew of utility code that you may\nor may not find useful, too. Look at the `full documentation\n<https://prance.readthedocs.io/en/latest/#api-modules>`__ for details.\n\n\nCompatibility\n-------------\n\n*Python Versions*\n\nVersion 0.16.2 is the last version supporting Python 2. It was released on\nNov 12th, 2019. Python 2 reaches end of life at the end of 2019. If you wish\nfor updates to the Python 2 supported packages, please contact the maintainer\ndirectly.\n\nUntil fairly recently, we also tested with `PyPy <https://www.pypy.org/>`__.\nUnfortunately, Travis isn't very good at supporting this. So in the absence\nof spare time, they're disabled. `Issue 50 <https://github.com/jfinkhaeuser/prance/issues/50>`__\ntracks progress on that.\n\nSimilarly, but less critically, Python 3.4 is no longer receiving a lot of\nlove from CI vendors, so automated builds on that version are no longer\nsupported.\n\n*Backends*\n\nDifferent validation backends support different features.\n\n+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+\n| Backend                | Python Version | OpenAPI Version | Strict Mode | Notes                                                 | Available From | Link                                                                              |\n+========================+================+=================+=============+=======================================================+================+===================================================================================+\n| swagger-spec-validator | 2 and 3        | 2.0 only        | yes         | Slow; does not accept integer keys (see strict mode). | prance 0.1     | `swagger\\_spec\\_validator <https://github.com/Yelp/swagger_spec_validator>`__     |\n+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+\n| flex                   | 2 and 3        | 2.0 only        | n/a         | Fastest; unfortunately deprecated.                    | prance 0.8     | `flex <https://github.com/pipermerriam/flex>`__                                   |\n+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+\n| openapi-spec-validator | 2 and 3        | 2.0 and 3.0     | yes         | Slow; does not accept integer keys (see strict mode). | prance 0.11    | `openapi\\_spec\\_validator <https://github.com/p1c2u/openapi-spec-validator>`__    |\n+------------------------+----------------+-----------------+-------------+-------------------------------------------------------+----------------+-----------------------------------------------------------------------------------+\n\nYou can select the backend in the constructor of the parser(s):\n\n.. code:: python\n\n    parser = ResolvingParser('http://petstore.swagger.io/v2/swagger.json', backend = 'openapi-spec-validator')\n\n\nNo backend is included in the dependencies; they are detected at run-time. If you install them,\nthey can be used:\n\n.. code:: bash\n\n    $ pip install openapi-spec-validator\n    $ pip install prance\n    $ prance validate --backend=openapi-spec-validator path/to/spec.yml\n\n*A note on flex usage:* While flex is the fastest validation backend, unfortunately it is no longer\nmaintained and there are issues with its dependencies. For one thing, it depends on a version of `PyYAML`\nthat contains security flaws. For another, it depends explicitly on older versions of `click`.\n\nIf you use the flex subpackage, therefore, you do so at your own risk.\n\n*Compatibility*\n\nSee `COMPATIBILITY.rst <https://github.com/jfinkhaeuser/prance/blob/master/COMPATIBILITY.rst>`__\nfor a list of known issues.\n\n\nPartial Reference Resolution\n----------------------------\n\nIt's possible to instruct the parser to only resolve some kinds of references.\nThis allows e.g. resolving references from external URLs, whilst keeping local\nreferences (i.e. to local files, or file internal) intact.\n\n.. code:: python\n\n    from prance import ResolvingParser\n    from prance.util.resolver import RESOLVE_HTTP\n\n    parser = ResolvingParser('/path/to/spec', resolve_types = RESOLVE_HTTP)\n\n\nMultiple types can be specified by OR-ing constants together:\n\n.. code:: python\n\n    from prance import ResolvingParser\n    from prance.util.resolver import RESOLVE_HTTP, RESOLVE_FILES\n\n    parser = ResolvingParser('/path/to/spec', resolve_types = RESOLVE_HTTP | RESOLVE_FILES)\n\n\nExtensions\n----------\n\nPrance includes the ability to reference outside swagger definitions\nin outside Python packages. Such a package must already be importable\n(i.e. installed), and be accessible via the\n`ResourceManager API <https://setuptools.readthedocs.io/en/latest/pkg_resources.html#resourcemanager-api>`__\n(some more info `here <https://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files>`__).\n\nFor example, you might create a package ``common_swag`` with the file\n``base.yaml`` containing the definition\n\n.. code:: yaml\n\n    definitions:\n      Severity:\n        type: string\n        enum:\n        - INFO\n        - WARN\n        - ERROR\n        - FATAL\n\nIn the ``setup.py`` for ``common_swag`` you would add lines such as\n\n.. code:: python\n\n    packages=find_packages('src'),\n    package_dir={'': 'src'},\n    package_data={\n        '': '*.yaml'\n    }\n\nThen, having installed ``common_swag`` into some application, you could\nnow write\n\n.. code:: yaml\n\n    definitions:\n      Message:\n        type: object\n        properties:\n          severity:\n            $ref: 'python://common_swag/base.yaml#/definitions/Severity'\n          code:\n            type: string\n          summary:\n            type: string\n          description:\n            type: string\n        required:\n        - severity\n        - summary\n\nContributing\n============\n\nSee `CONTRIBUTING.md <https://github.com/jfinkhaeuser/prance/blob/master/CONTRIBUTING.md>`__ for details.\n\nProfessional support is available through `finkhaeuser consulting <https://finkhaeuser.de>`__.\n\nLicense\n=======\n\nLicensed under MIT. See the `LICENSE.txt <https://github.com/RonnyPfannschmidt/prance/blob/master/LICENSE.txt>`__ file for details.\n\n\"Prancing unicorn\" logo image Copyright (c) Jens Finkhaeuser.\nMade by `Moreven B <http://morevenb.com/>`__. Use of the logo is permitted under\nthe `Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license <https://creativecommons.org/licenses/by-nc-sa/4.0/>`__.\n\n\n.. |License| image:: https://img.shields.io/pypi/l/prance.svg\n   :target: https://pypi.python.org/pypi/prance/\n.. |PyPI| image:: https://img.shields.io/pypi/v/prance.svg\n   :target: https://pypi.python.org/pypi/prance/\n.. |Package Format| image:: https://img.shields.io/pypi/format/prance.svg\n   :target: https://pypi.python.org/pypi/prance/\n.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/prance.svg\n   :target: https://pypi.python.org/pypi/prance/\n.. |Package Status| image:: https://img.shields.io/pypi/status/prance.svg\n   :target: https://pypi.python.org/pypi/prance/\n.. |Logo| image:: https://raw.githubusercontent.com/RonnyPfannschmidt/prance/master/docs/images/prance_logo_256.png\n",
    "bugtrack_url": null,
    "license": "MITNFA",
    "summary": "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser",
    "version": "23.6.21.0",
    "project_urls": {
        "Homepage": "https://github.com/RonnyPfannschmidt/prance"
    },
    "split_keywords": [
        "swagger",
        "openapi",
        "parsing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9db4fb4901ee61274d0ab97746461fc5f2637e5d73aa73f34ee28e941a699a1",
                "md5": "5d9fefb8f25bcdc2b4a494603f85b931",
                "sha256": "6a4276fa07ed9f22feda4331097d7503c4adc3097e46ffae97425f2c1026bd9f"
            },
            "downloads": -1,
            "filename": "prance-23.6.21.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5d9fefb8f25bcdc2b4a494603f85b931",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 36279,
            "upload_time": "2023-06-21T20:01:54",
            "upload_time_iso_8601": "2023-06-21T20:01:54.936069Z",
            "url": "https://files.pythonhosted.org/packages/c9/db/4fb4901ee61274d0ab97746461fc5f2637e5d73aa73f34ee28e941a699a1/prance-23.6.21.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73f0bcb5ffc8b7ab8e3d02dbef3bd945cf8fd6e12c146774f900659406b9fce1",
                "md5": "680989e93589066bd206a9224eb9fe10",
                "sha256": "d8c15f8ac34019751cc4945f866d8d964d7888016d10de3592e339567177cabe"
            },
            "downloads": -1,
            "filename": "prance-23.6.21.0.tar.gz",
            "has_sig": false,
            "md5_digest": "680989e93589066bd206a9224eb9fe10",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2798776,
            "upload_time": "2023-06-21T20:01:57",
            "upload_time_iso_8601": "2023-06-21T20:01:57.142876Z",
            "url": "https://files.pythonhosted.org/packages/73/f0/bcb5ffc8b7ab8e3d02dbef3bd945cf8fd6e12c146774f900659406b9fce1/prance-23.6.21.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-21 20:01:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "RonnyPfannschmidt",
    "github_project": "prance",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [],
    "tox": true,
    "lcname": "prance"
}
        
Elapsed time: 0.07879s