python-papi


Namepython-papi JSON
Version 6.0.0.2 PyPI version JSON
download
home_pagehttps://github.com/flozz/pypapi
SummaryPython binding for the PAPI library
upload_time2024-10-28 12:58:15
maintainerNone
docs_urlNone
authorFabien LOISON, Mathilde BOUTIGNY
requires_pythonNone
licenseWTFPL
keywords papi perf performance
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PyPAPI
======

|GitHub| |PyPI| |License| |Discord| |Github Actions| |Black|

PyPAPI is a Python binding for the `PAPI (Performance Application Programming
Interface) <http://icl.cs.utk.edu/papi/index.html>`__ library. PyPAPI
implements the whole PAPI High Level API and partially the Low Level API.

.. NOTE::

    Starting with **v5.5.1.4**, PyPAPI is only compatible with GCC 7.0 or
    higher. Please use previous releases for older GCC version.


Documentation:
--------------

* https://flozz.github.io/pypapi/


Installing PyPAPI
-----------------

See this page of the documentation:

* https://flozz.github.io/pypapi/install.html


Hacking
-------

Building PyPAPI For Local Development
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

To work on PyPAPI, you first have to clone this repositiory and
initialize and update submodules::

    git clone https://github.com/flozz/pypapi.git
    cd pypapi

    git submodule init
    git submodule update

Then you have to build both PAPI and the C library inside the ``pypapi``
module. This can be done with the following commands::

    python setup.py build
    python pypapi/papi_build.py


Linting and Code formatting
~~~~~~~~~~~~~~~~~~~~~~~~~~~

To build lint the code, you first need to install Nox::

    pip install nox

Then, run the following command::

    nox -s lint

To automatically coding style issues, run::

    nox -s black_fix


Generating Documentation
~~~~~~~~~~~~~~~~~~~~~~~~

To build the Sphinx documentation, you first need to install Nox::

    pip install nox

Then, run the following command::

    nox -s gendoc


Support this project
--------------------

Want to support this project?

* `☕️ Buy me a coffee <https://www.buymeacoffee.com/flozz>`__
* `💵️ Give me a tip on PayPal <https://www.paypal.me/0xflozz>`__
* `❤️ Sponsor me on GitHub <https://github.com/sponsors/flozz>`__


Changelog
---------


* **[NEXT]** (changes on ``master``, but not released yet):

  * Nothing yet ;)

* **v6.0.0.2:**

  * misc: Added Python 3.13 support (@flozz)
  * misc!: Removed Python 3.8 support (@flozz)

* **v6.0.0.1:**

  * feat!: Updated the PAPI library to v6.0.0.1 (@SerodioJ, #37)

* **v5.5.1.6:**

  * chore: Added code linting with Flake8 (@flozz)
  * chore: Added code formatter and reformatted all files with Black (@flozz)
  * chore: Added Nox to run code linting, code formatting, doc building tasks (@flozz)
  * chore: Updated dev dependnecies (@flozz)
  * chore: Automatically build and publish sdist package and wheels for Linux (@flozz, #39)
  * docs: Updated documentation (@flozz)

* **v5.5.1.5:**

  * fix: Fixed issue with module named ``types.py`` (@mcopik, #19)

* **v5.5.1.4:**

  * chore: Fixed compilation with GCC 8 and newer (@maresmar, #18)
  * chore!: PyPAPI is no more compatible with GCC < 7.0

* **v5.5.1.3:**

  * chore: Removed ``.o``, ``.lo`` and other generated objects from the package

* **v5.5.1.2:**

  * feat: Partial bindings for the low level API

* **v5.5.1.1:**

  * chore: Added missing files to build PAPI

* **v5.5.1.0:**

  * feat: Initial release (binding for papy 5.5.1)


.. |GitHub| image:: https://img.shields.io/github/stars/flozz/pypapi?label=GitHub&logo=github
   :target: https://github.com/flozz/pypapi

.. |PyPI| image:: https://img.shields.io/pypi/v/python_papi.svg
   :target: https://pypi.python.org/pypi/python_papi

.. |License| image:: https://img.shields.io/github/license/flozz/pypapi
   :target: https://flozz.github.io/pypapi/licenses.html

.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff
   :target: https://discord.gg/P77sWhuSs4

.. |Github Actions| image:: https://github.com/flozz/pypapi/actions/workflows/python-ci.yml/badge.svg
   :target: https://github.com/flozz/pypapi/actions

.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://black.readthedocs.io/en/stable

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/flozz/pypapi",
    "name": "python-papi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "papi perf performance",
    "author": "Fabien LOISON, Mathilde BOUTIGNY",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/fe/7b/1ed48f21e7c480d9b3a9baf182f68eb1a7ef34529962aef88fc18bebf7e7/python_papi-6.0.0.2.tar.gz",
    "platform": null,
    "description": "PyPAPI\n======\n\n|GitHub| |PyPI| |License| |Discord| |Github Actions| |Black|\n\nPyPAPI is a Python binding for the `PAPI (Performance Application Programming\nInterface) <http://icl.cs.utk.edu/papi/index.html>`__ library. PyPAPI\nimplements the whole PAPI High Level API and partially the Low Level API.\n\n.. NOTE::\n\n    Starting with **v5.5.1.4**, PyPAPI is only compatible with GCC 7.0 or\n    higher. Please use previous releases for older GCC version.\n\n\nDocumentation:\n--------------\n\n* https://flozz.github.io/pypapi/\n\n\nInstalling PyPAPI\n-----------------\n\nSee this page of the documentation:\n\n* https://flozz.github.io/pypapi/install.html\n\n\nHacking\n-------\n\nBuilding PyPAPI For Local Development\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo work on PyPAPI, you first have to clone this repositiory and\ninitialize and update submodules::\n\n    git clone https://github.com/flozz/pypapi.git\n    cd pypapi\n\n    git submodule init\n    git submodule update\n\nThen you have to build both PAPI and the C library inside the ``pypapi``\nmodule. This can be done with the following commands::\n\n    python setup.py build\n    python pypapi/papi_build.py\n\n\nLinting and Code formatting\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo build lint the code, you first need to install Nox::\n\n    pip install nox\n\nThen, run the following command::\n\n    nox -s lint\n\nTo automatically coding style issues, run::\n\n    nox -s black_fix\n\n\nGenerating Documentation\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo build the Sphinx documentation, you first need to install Nox::\n\n    pip install nox\n\nThen, run the following command::\n\n    nox -s gendoc\n\n\nSupport this project\n--------------------\n\nWant to support this project?\n\n* `\u2615\ufe0f Buy me a coffee <https://www.buymeacoffee.com/flozz>`__\n* `\ud83d\udcb5\ufe0f Give me a tip on PayPal <https://www.paypal.me/0xflozz>`__\n* `\u2764\ufe0f Sponsor me on GitHub <https://github.com/sponsors/flozz>`__\n\n\nChangelog\n---------\n\n\n* **[NEXT]** (changes on ``master``, but not released yet):\n\n  * Nothing yet ;)\n\n* **v6.0.0.2:**\n\n  * misc: Added Python 3.13 support (@flozz)\n  * misc!: Removed Python 3.8 support (@flozz)\n\n* **v6.0.0.1:**\n\n  * feat!: Updated the PAPI library to v6.0.0.1 (@SerodioJ, #37)\n\n* **v5.5.1.6:**\n\n  * chore: Added code linting with Flake8 (@flozz)\n  * chore: Added code formatter and reformatted all files with Black (@flozz)\n  * chore: Added Nox to run code linting, code formatting, doc building tasks (@flozz)\n  * chore: Updated dev dependnecies (@flozz)\n  * chore: Automatically build and publish sdist package and wheels for Linux (@flozz, #39)\n  * docs: Updated documentation (@flozz)\n\n* **v5.5.1.5:**\n\n  * fix: Fixed issue with module named ``types.py`` (@mcopik, #19)\n\n* **v5.5.1.4:**\n\n  * chore: Fixed compilation with GCC 8 and newer (@maresmar, #18)\n  * chore!: PyPAPI is no more compatible with GCC < 7.0\n\n* **v5.5.1.3:**\n\n  * chore: Removed ``.o``, ``.lo`` and other generated objects from the package\n\n* **v5.5.1.2:**\n\n  * feat: Partial bindings for the low level API\n\n* **v5.5.1.1:**\n\n  * chore: Added missing files to build PAPI\n\n* **v5.5.1.0:**\n\n  * feat: Initial release (binding for papy 5.5.1)\n\n\n.. |GitHub| image:: https://img.shields.io/github/stars/flozz/pypapi?label=GitHub&logo=github\n   :target: https://github.com/flozz/pypapi\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/python_papi.svg\n   :target: https://pypi.python.org/pypi/python_papi\n\n.. |License| image:: https://img.shields.io/github/license/flozz/pypapi\n   :target: https://flozz.github.io/pypapi/licenses.html\n\n.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff\n   :target: https://discord.gg/P77sWhuSs4\n\n.. |Github Actions| image:: https://github.com/flozz/pypapi/actions/workflows/python-ci.yml/badge.svg\n   :target: https://github.com/flozz/pypapi/actions\n\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://black.readthedocs.io/en/stable\n",
    "bugtrack_url": null,
    "license": "WTFPL",
    "summary": "Python binding for the PAPI library",
    "version": "6.0.0.2",
    "project_urls": {
        "Changelog": "https://github.com/flozz/pypapi#changelog",
        "Chat": "https://discord.gg/P77sWhuSs4",
        "Documentation": "https://flozz.github.io/pypapi/",
        "Donate": "https://github.com/flozz/pypapi#support-this-project",
        "Homepage": "https://github.com/flozz/pypapi",
        "Issues": "https://github.com/flozz/pypapi/issues",
        "Source Code": "https://github.com/flozz/pypapi"
    },
    "split_keywords": [
        "papi",
        "perf",
        "performance"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba89e8d3ad5ca59d09536cda071280517ddd1bbb8354e3b98fc08ff095540e3b",
                "md5": "6874a2f061a0c265292a1e2e4044c04d",
                "sha256": "9c9a098ccfe13978196804d4595cbe442c73bbb052dbece118d7d423e5786f83"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6874a2f061a0c265292a1e2e4044c04d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1007684,
            "upload_time": "2024-10-28T12:57:37",
            "upload_time_iso_8601": "2024-10-28T12:57:37.742689Z",
            "url": "https://files.pythonhosted.org/packages/ba/89/e8d3ad5ca59d09536cda071280517ddd1bbb8354e3b98fc08ff095540e3b/python_papi-6.0.0.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10fb5f8b7ac9862961e8c52e459fe86b50d359f8b1ae8ac9f5d95d2cc52dc7d3",
                "md5": "b389b95be56134f74b948f204b8702ec",
                "sha256": "4253fbe1e9ee94a46a99f35295268e2867a119b6aaad756dffa72c9bd9590b46"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b389b95be56134f74b948f204b8702ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1124552,
            "upload_time": "2024-10-28T12:57:39",
            "upload_time_iso_8601": "2024-10-28T12:57:39.380259Z",
            "url": "https://files.pythonhosted.org/packages/10/fb/5f8b7ac9862961e8c52e459fe86b50d359f8b1ae8ac9f5d95d2cc52dc7d3/python_papi-6.0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cb0cf791198031802b286beb1ebf82c5dfae78572d07025af7b222d50af2432",
                "md5": "8bfbdf37449482d90a2e135ae2f7412a",
                "sha256": "28f24ce4d3704e2f7215f2b4bf18b5759e02af6396786cc19e24a0e81103a5bc"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8bfbdf37449482d90a2e135ae2f7412a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1007680,
            "upload_time": "2024-10-28T12:57:40",
            "upload_time_iso_8601": "2024-10-28T12:57:40.681750Z",
            "url": "https://files.pythonhosted.org/packages/3c/b0/cf791198031802b286beb1ebf82c5dfae78572d07025af7b222d50af2432/python_papi-6.0.0.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "706247b6526abd0c3337b59bd99249dd3bf4f5ca80c60507a2db4272a2d0c979",
                "md5": "a0df1fd92464a94474147829d91dfaca",
                "sha256": "28ec7c81402f625767b35bad748dded388a3a12f7baec7092770be8af4ca296a"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0df1fd92464a94474147829d91dfaca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1124680,
            "upload_time": "2024-10-28T12:57:42",
            "upload_time_iso_8601": "2024-10-28T12:57:42.640562Z",
            "url": "https://files.pythonhosted.org/packages/70/62/47b6526abd0c3337b59bd99249dd3bf4f5ca80c60507a2db4272a2d0c979/python_papi-6.0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9be554824b46b4cc99c89af3cdc0087374bd93f09cf38b931beb4b0cd3231982",
                "md5": "b28d1ec84df1f699feb8ef41e09ffe2d",
                "sha256": "988e595b18915b262242118988933f6a1e8b69407a79495e7d8c44df9e63ebdb"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b28d1ec84df1f699feb8ef41e09ffe2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1008024,
            "upload_time": "2024-10-28T12:57:44",
            "upload_time_iso_8601": "2024-10-28T12:57:44.403449Z",
            "url": "https://files.pythonhosted.org/packages/9b/e5/54824b46b4cc99c89af3cdc0087374bd93f09cf38b931beb4b0cd3231982/python_papi-6.0.0.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "364bbbfc286e41917773f248c4735004ffe1994d1db0dbca5459163e34d863fa",
                "md5": "de5c900da17629b1a92f666089e2e1ed",
                "sha256": "5041c0675e7d8f0f4372222afd8040a5265b4a91e8e0699ad81ad0025cd5484c"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de5c900da17629b1a92f666089e2e1ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1125032,
            "upload_time": "2024-10-28T12:57:46",
            "upload_time_iso_8601": "2024-10-28T12:57:46.382162Z",
            "url": "https://files.pythonhosted.org/packages/36/4b/bbfc286e41917773f248c4735004ffe1994d1db0dbca5459163e34d863fa/python_papi-6.0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f42d3a5b1c188448b60c7e7d3b3a6ab4e5fb341b55a525910c85acdf784e7bc",
                "md5": "85afbb7a6a2f14737cb973eb23dd4459",
                "sha256": "3f27dfa9f9d5517ccaaea22b55232cdc965eada7bcfe02ce6a903bdeb78aee92"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "85afbb7a6a2f14737cb973eb23dd4459",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1008016,
            "upload_time": "2024-10-28T12:57:47",
            "upload_time_iso_8601": "2024-10-28T12:57:47.717864Z",
            "url": "https://files.pythonhosted.org/packages/1f/42/d3a5b1c188448b60c7e7d3b3a6ab4e5fb341b55a525910c85acdf784e7bc/python_papi-6.0.0.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92478331baedbd2f8fa2a032b3e39148d1135beb04a8ccd2963a9c891cb16c16",
                "md5": "df4e9a7e9920641553b0cc4264ea5472",
                "sha256": "dc2b4e994cbb2912ead0198621b3990f32c9f78f8812fe28640de7d8fc7d1429"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df4e9a7e9920641553b0cc4264ea5472",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1124901,
            "upload_time": "2024-10-28T12:57:49",
            "upload_time_iso_8601": "2024-10-28T12:57:49.027184Z",
            "url": "https://files.pythonhosted.org/packages/92/47/8331baedbd2f8fa2a032b3e39148d1135beb04a8ccd2963a9c891cb16c16/python_papi-6.0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86f311b079a042d96377d8b7f08a261a8383eef83a05f903bb9efe9db0e8659d",
                "md5": "ced3d199227e51c5baa5b39110bef7f9",
                "sha256": "a6aefaecac2f9e7f7e8778e9ba49bc0cc7eb6c2bfd108014ad9e76ac314da59a"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ced3d199227e51c5baa5b39110bef7f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1007521,
            "upload_time": "2024-10-28T12:57:50",
            "upload_time_iso_8601": "2024-10-28T12:57:50.207247Z",
            "url": "https://files.pythonhosted.org/packages/86/f3/11b079a042d96377d8b7f08a261a8383eef83a05f903bb9efe9db0e8659d/python_papi-6.0.0.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2967db6fc8c33bfeb7511b2571942528a5fcd59cfff74cfe91f77123dd8a822d",
                "md5": "7f5323f2be0146dfde3eb46594482c61",
                "sha256": "403d0782efb2aada5664360b567ae6cd8701c2abb32ed0cc80b39bdca5f0a35d"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f5323f2be0146dfde3eb46594482c61",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1124441,
            "upload_time": "2024-10-28T12:57:51",
            "upload_time_iso_8601": "2024-10-28T12:57:51.525675Z",
            "url": "https://files.pythonhosted.org/packages/29/67/db6fc8c33bfeb7511b2571942528a5fcd59cfff74cfe91f77123dd8a822d/python_papi-6.0.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5eec383b22b63b7b6fc7d424d7b9a5d0fcfdfec164983bc8c5e11aed70fef7b",
                "md5": "d4329dedf30abce3a5de8f0ed6f66490",
                "sha256": "7bc0b8eea9663fabac9739dbe8394daf7f522585dcba475bf115164aeab9a26a"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d4329dedf30abce3a5de8f0ed6f66490",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1007505,
            "upload_time": "2024-10-28T12:57:52",
            "upload_time_iso_8601": "2024-10-28T12:57:52.813167Z",
            "url": "https://files.pythonhosted.org/packages/a5/ee/c383b22b63b7b6fc7d424d7b9a5d0fcfdfec164983bc8c5e11aed70fef7b/python_papi-6.0.0.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c48e33f17bc8865cd346128392080383172f0e12b5a8237b593edd19f3f9cf3a",
                "md5": "734582985ce2fa97afa5e4f2187bc4eb",
                "sha256": "22dac9b79c4d2408870f114a39f223f38405c1d9d3f39aab3b98997c6e563ed9"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "734582985ce2fa97afa5e4f2187bc4eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1124439,
            "upload_time": "2024-10-28T12:57:55",
            "upload_time_iso_8601": "2024-10-28T12:57:55.582205Z",
            "url": "https://files.pythonhosted.org/packages/c4/8e/33f17bc8865cd346128392080383172f0e12b5a8237b593edd19f3f9cf3a/python_papi-6.0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fe1825475356ea68f2404925c89889c9ecb537c16ca468ef030007bc701642b",
                "md5": "540ad28a92bfb7c83b7c81cbff56c299",
                "sha256": "9ff9baa949c4e97600b15d7b0aaa9603e659386ca874a2141658cfa1ebffbd6a"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "540ad28a92bfb7c83b7c81cbff56c299",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1007994,
            "upload_time": "2024-10-28T12:57:57",
            "upload_time_iso_8601": "2024-10-28T12:57:57.385967Z",
            "url": "https://files.pythonhosted.org/packages/2f/e1/825475356ea68f2404925c89889c9ecb537c16ca468ef030007bc701642b/python_papi-6.0.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ead5555d933c3538b2cfb603f2f2bfd636f9405564569a41c757deec2f5b4720",
                "md5": "a86139a083ae0c90b60d583ada4e1dd7",
                "sha256": "a20b9bcd3cc03a44cb48281252f176ae5cc283b719751ee18e8a192ff46014ed"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a86139a083ae0c90b60d583ada4e1dd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1124824,
            "upload_time": "2024-10-28T12:57:58",
            "upload_time_iso_8601": "2024-10-28T12:57:58.784243Z",
            "url": "https://files.pythonhosted.org/packages/ea/d5/555d933c3538b2cfb603f2f2bfd636f9405564569a41c757deec2f5b4720/python_papi-6.0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f3d30909fd246543526775e85331849843bffba7b51cd6e1400aaca3adaa59c",
                "md5": "bcd7bb363c30bbc615769e4b27ad6f95",
                "sha256": "18e0d7b10af00ac071a9c5bf1f19dce70193e9a8f7b9ea23444804b063bbc4af"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bcd7bb363c30bbc615769e4b27ad6f95",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1007626,
            "upload_time": "2024-10-28T12:58:00",
            "upload_time_iso_8601": "2024-10-28T12:58:00.486998Z",
            "url": "https://files.pythonhosted.org/packages/7f/3d/30909fd246543526775e85331849843bffba7b51cd6e1400aaca3adaa59c/python_papi-6.0.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef35cbd4c4c587cfa5359e37b6e1acf89b5a76f9005fa30745a364fedeca1178",
                "md5": "6037b214fed931276ac9e544d95c76ac",
                "sha256": "c76bdfc13b643984af3c20f663621ad27f2586e4db34b4fd4b9b13c993029a8e"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6037b214fed931276ac9e544d95c76ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1124594,
            "upload_time": "2024-10-28T12:58:01",
            "upload_time_iso_8601": "2024-10-28T12:58:01.949142Z",
            "url": "https://files.pythonhosted.org/packages/ef/35/cbd4c4c587cfa5359e37b6e1acf89b5a76f9005fa30745a364fedeca1178/python_papi-6.0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef4be61a1fc845a47898bee7112f5c4296e40cea1ccd6cf76e4909b8dcb449cf",
                "md5": "42808dfc4da3e715ecf47ab99a90bdca",
                "sha256": "1670fb38c37c485a38b5c2d89d27c7cf5728febeb51a82451fec39cfbe1055c4"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "42808dfc4da3e715ecf47ab99a90bdca",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 957540,
            "upload_time": "2024-10-28T12:58:03",
            "upload_time_iso_8601": "2024-10-28T12:58:03.160321Z",
            "url": "https://files.pythonhosted.org/packages/ef/4b/e61a1fc845a47898bee7112f5c4296e40cea1ccd6cf76e4909b8dcb449cf/python_papi-6.0.0.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f93d6ccb138b58de2f1f5d32e17885df7c3e6b3b8d4127e464f04f5a8a55c93",
                "md5": "c1eeb12372ca611157e6d9b1275cc9f8",
                "sha256": "cef9ff4f31dfdd69abf03cad72cc4af6a1d6bf6a3a0029df00e45359a964006e"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1eeb12372ca611157e6d9b1275cc9f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1067512,
            "upload_time": "2024-10-28T12:58:04",
            "upload_time_iso_8601": "2024-10-28T12:58:04.789989Z",
            "url": "https://files.pythonhosted.org/packages/2f/93/d6ccb138b58de2f1f5d32e17885df7c3e6b3b8d4127e464f04f5a8a55c93/python_papi-6.0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0310977affa84d6c626bd986f524268c091d5d5f768cf56227e4fe01a7a19998",
                "md5": "6ff7de77a868bd30d7cf7a0f9acb25aa",
                "sha256": "22ab900584d7e71b43539584fb7c457f16995f98b8050fc716373c125926241b"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6ff7de77a868bd30d7cf7a0f9acb25aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 958482,
            "upload_time": "2024-10-28T12:58:06",
            "upload_time_iso_8601": "2024-10-28T12:58:06.038299Z",
            "url": "https://files.pythonhosted.org/packages/03/10/977affa84d6c626bd986f524268c091d5d5f768cf56227e4fe01a7a19998/python_papi-6.0.0.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1d3fa2f0268fcb35e758b2dcab09c938a914824d9a4dcc6277d3ef0a8d9997a",
                "md5": "e5b2b9b3fe5a9a1ffe26330d0fe1fcb3",
                "sha256": "6ac2ed38d49bc7425bcc0bdc41411993a63cc2591a8368134ff1932f30157b3f"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5b2b9b3fe5a9a1ffe26330d0fe1fcb3",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1069358,
            "upload_time": "2024-10-28T12:58:07",
            "upload_time_iso_8601": "2024-10-28T12:58:07.483377Z",
            "url": "https://files.pythonhosted.org/packages/b1/d3/fa2f0268fcb35e758b2dcab09c938a914824d9a4dcc6277d3ef0a8d9997a/python_papi-6.0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ff249ad894b3e3a1a1d645c5e398675b745fde1bde807128b0ebb4c78de0bd4",
                "md5": "fb5b7e6c9883377cf58a3774bd0fa07b",
                "sha256": "3995fd7e0c3f5f8297fab48e9df78e2ab2efec25cbed50685bf2b28fe8357cbc"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fb5b7e6c9883377cf58a3774bd0fa07b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 957531,
            "upload_time": "2024-10-28T12:58:08",
            "upload_time_iso_8601": "2024-10-28T12:58:08.924829Z",
            "url": "https://files.pythonhosted.org/packages/6f/f2/49ad894b3e3a1a1d645c5e398675b745fde1bde807128b0ebb4c78de0bd4/python_papi-6.0.0.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1ca32c48ca92cc6fd35d077050e85fa2fb510aace22134e26e09c699350f0df",
                "md5": "1f8387e318b6dd9933e7e674150f1d9b",
                "sha256": "a66bd7fcdb04492f78173cd1f2391fe3dc8f674caeb03d05858a9c4e877a0975"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f8387e318b6dd9933e7e674150f1d9b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1067505,
            "upload_time": "2024-10-28T12:58:10",
            "upload_time_iso_8601": "2024-10-28T12:58:10.919332Z",
            "url": "https://files.pythonhosted.org/packages/c1/ca/32c48ca92cc6fd35d077050e85fa2fb510aace22134e26e09c699350f0df/python_papi-6.0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9c65fa0efcffc7d24266ea0b195201db8130fee1fd6b2f7755f6f73ee9546b8",
                "md5": "4730d207b1a924e66e9e16ae125fc718",
                "sha256": "3033fae3b463de0e697710db8dddb181725dacd2d879120e0ab6019e9eaac132"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4730d207b1a924e66e9e16ae125fc718",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 957530,
            "upload_time": "2024-10-28T12:58:12",
            "upload_time_iso_8601": "2024-10-28T12:58:12.541554Z",
            "url": "https://files.pythonhosted.org/packages/d9/c6/5fa0efcffc7d24266ea0b195201db8130fee1fd6b2f7755f6f73ee9546b8/python_papi-6.0.0.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7feda05e1e8efa5d5ec357a51811e2193d7451133ae6a911a3084dd362e33b29",
                "md5": "6e3cb7e710bec53370e567ddf7fd41ad",
                "sha256": "23098a8f4b9d7bf1e42df4b4cfbd5d36d8e91722d8fb9ceb1a12371d5adf4b8b"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e3cb7e710bec53370e567ddf7fd41ad",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1067506,
            "upload_time": "2024-10-28T12:58:13",
            "upload_time_iso_8601": "2024-10-28T12:58:13.864056Z",
            "url": "https://files.pythonhosted.org/packages/7f/ed/a05e1e8efa5d5ec357a51811e2193d7451133ae6a911a3084dd362e33b29/python_papi-6.0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe7b1ed48f21e7c480d9b3a9baf182f68eb1a7ef34529962aef88fc18bebf7e7",
                "md5": "198fd08527b8adab7c58d1b164eaf0c5",
                "sha256": "d6dbd40719cd76912eb6af5e0fdcf27142ae2624efcf96651a33c57932be70d0"
            },
            "downloads": -1,
            "filename": "python_papi-6.0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "198fd08527b8adab7c58d1b164eaf0c5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4575423,
            "upload_time": "2024-10-28T12:58:15",
            "upload_time_iso_8601": "2024-10-28T12:58:15.284493Z",
            "url": "https://files.pythonhosted.org/packages/fe/7b/1ed48f21e7c480d9b3a9baf182f68eb1a7ef34529962aef88fc18bebf7e7/python_papi-6.0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-28 12:58:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "flozz",
    "github_project": "pypapi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "python-papi"
}
        
Elapsed time: 5.11526s