setproctitle


Namesetproctitle JSON
Version 1.3.7 PyPI version JSON
download
home_pagehttps://github.com/dvarrazzo/py-setproctitle
SummaryA Python module to customize the process title
upload_time2025-09-05 12:51:25
maintainerNone
docs_urlNone
authorDaniele Varrazzo
requires_python>=3.8
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            A Python module to customize the process title
==============================================

.. image:: https://github.com/dvarrazzo/py-setproctitle/workflows/Tests/badge.svg
    :target: https://github.com/dvarrazzo/py-setproctitle/actions?query=workflow%3ATests
    :alt: Tests

:author: Daniele Varrazzo

The ``setproctitle`` module allows a process to change its title (as displayed
by system tools such as ``ps``, ``top`` or MacOS Activity Monitor).

Changing the title is mostly useful in multi-process systems, for example
when a master process is forked: changing the children's title allows to
identify the task each process is busy with.  The technique is used by
PostgreSQL_ and the `OpenSSH Server`_ for example.

The procedure is hardly portable across different systems.  PostgreSQL provides
a good `multi-platform implementation`__:  this package was born as a wrapper
around PostgreSQL code.

- `Homepage <https://github.com/dvarrazzo/py-setproctitle>`__
- `Download <http://pypi.python.org/pypi/setproctitle/>`__
- `Bug tracker <https://github.com/dvarrazzo/py-setproctitle/issues>`__


.. _PostgreSQL: http://www.postgresql.org
.. _OpenSSH Server: http://www.openssh.com/
.. __: http://doxygen.postgresql.org/ps__status_8c_source.html


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

``setproctitle`` is a C extension: in order to build it you will need a C
compiler and the Python development support (the ``python-dev`` or
``python3-dev`` package in most Linux distributions). No further external
dependencies are required.

You can use ``pip`` to install the module::

    pip install setproctitle

You can use ``pip -t`` or ``virtualenv`` for local installations, ``sudo pip``
for a system-wide one... the usual stuff. Read pip_ or virtualenv_ docs for
all the details.

.. _pip: https://pip.readthedocs.org/
.. _virtualenv: https://virtualenv.readthedocs.org/


Usage
-----

.. note::
   You should import and use the module (even just calling ``getproctitle()``)
   pretty early in your program lifetime: code writing env vars `may
   interfere`__ with the module initialisation.

    .. __: https://github.com/dvarrazzo/py-setproctitle/issues/42


The ``setproctitle`` module exports the following functions:

``setproctitle(title)``
    Set *title* as the title for the current process.

``getproctitle()``
    Return the current process title.

The process title is usually visible in files such as ``/proc/PID/cmdline``,
``/proc/PID/status``, ``/proc/PID/comm``, depending on the operating system
and kernel version. These information are used by user-space tools such as
``ps`` and ``top``.


``setthreadtitle(title)``
    Set *title* as the title for the current thread.

``getthreadtitle()``
    Get the current thread title.

The thread title is exposed by some operating systems as the file
``/proc/PID/task/TID/comm``, which is used by certain tools such as ``htop``.


Environment variables
~~~~~~~~~~~~~~~~~~~~~

A few environment variables can be used to customize the module behavior:

``SPT_NOENV``
    Avoid clobbering ``/proc/PID/environ``.

    On many platforms, setting the process title will clobber the
    ``environ`` memory area. ``os.environ`` will work as expected from within
    the Python process, but the content of the file ``/proc/PID/environ`` will
    be overwritten.  If you require this file not to be broken you can set the
    ``SPT_NOENV`` environment variable to any non-empty value: in this case
    the maximum length for the title will be limited to the length of the
    command line.

``SPT_DEBUG``
    Print debug information on ``stderr``.

    If the module doesn't work as expected you can set this variable to a
    non-empty value to generate information useful for debugging.  Note that
    the most useful information is printed when the module is imported, not
    when the functions are called.


Module status
-------------

The module can be currently compiled and effectively used on the following
platforms:

- GNU/Linux
- BSD
- MacOS X
- Windows

Note that on Windows there is no way to change the process string:
what the module does is to create a *Named Object* whose value can be read
using a tool such as `Process Explorer`_ (contribution of a more useful tool
to be used together with ``setproctitle`` would be well accepted).

The module can probably work on HP-UX, but I haven't found any to test with.
It is unlikely that it can work on Solaris instead.

.. _Process Explorer: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

Releases history
----------------

Version 1.3.7
-------------

- Add support for Python 3.14 (issue #152).


Version 1.3.6
-------------

- Add support for free-threading (issue #147).


Version 1.3.5
-------------

- Fix bouncing Dock icon on macOS (issue #143).
- Fix building on C23 compilers (issue #145).


Version 1.3.4
-------------

- Add support for Python 3.13 (issue #139).
- Drop support for Python 3.7.


Version 1.3.3
-------------

- Add support for Python 3.12.
- Fix package metadata to include Python 3.11, 3.12.


Version 1.3.2
-------------

- Restore import-time initialization of macOS to avoid crash on thread+fork
  (issue #113).


Version 1.3.1
-------------

- Fixed segfault on macOS 12.5 in forked processes (issue #111).
  Note that, as a workaround, Activity Monitor will show the title of the
  parent.


Version 1.3.0
-------------

- Added fallback no-op implementation if building the extension fails.
- Added support for displaying title as the process name in MacOS Activity
  Monitor (issue #10).
- Fixed "Symbol not found: _Py_GetArgcArgv" error when using Xcode provided
  Python (issues #82, #103).
- Fixed FreeBSD support, broken in 1.2 (issue #94).
- Added package type annotations (issue #101).
- Dropped support for Python 3.6.


Version 1.2.3
-------------

- Added Python 3.10 packages (issue #102).
- Added Wheel packages for macOS (issue #96).
- Package build moved to cibuildwheel, other wheels provided (issue #47).


Version 1.2.2
-------------

- Fixed Windows build (issues #89, #90).
- Added wheel packages for Windows (issues #47, #90).
- Added wheel packages for aarch64 (issue #95).


Version 1.2.1
-------------

- Fixed segfault after ``os.environ.clear()`` (issue #88).


Version 1.2
~~~~~~~~~~~

- added ``getthreadtitle()`` and ``setthreadtitle()``.
- Initialisation of the module moved to the first usage: importing the module
  doesn't cause side effects.
- Manage much longer command lines (issue #52)
- Improved build on BSD, dropped ancient versions (issue #67).
- Fixed build for Python 3.8 (issues #66, #72)
- Added support for Python 3.9
- Dropped support for Python < 3.6


Version 1.1.10
~~~~~~~~~~~~~~

- Fixed building with certain ``prctl.h`` implementations (issue #44).
- Use ``setuptools`` if available (issue #48).


Version 1.1.9
~~~~~~~~~~~~~

- Fixed build on VC (issues #20, #33).
- Added ``MANIFEST.in`` to the source distribution to help with RPM building
  (issue #30).


Version 1.1.8
~~~~~~~~~~~~~

- Added support for Python "diehard" 2.4 (pull request #3).
- Fixed build on Mac OS X 10.9 Maverick (issue #27).


Version 1.1.7
~~~~~~~~~~~~~

- Added PyPy support, courtesy of Ozan Turksever - http://www.logsign.net
  (pull request #2).


Version 1.1.6
~~~~~~~~~~~~~

- The module can be compiled again on Windows (issue #21).


Version 1.1.5
~~~~~~~~~~~~~

- No module bug, but a packaging issue: files ``README`` and ``HISTORY``
  added back into the distribution.


Version 1.1.4
~~~~~~~~~~~~~

- The module works correctly in embedded Python.
- ``setproctitle()`` accepts a keyword argument.
- Debug output support always compiled in: the variable ``SPT_DEBUG`` can be
  used to emit debug log.


Version 1.1.3
~~~~~~~~~~~~~

- Don't clobber environ if the variable ``SPT_NOENV`` is set (issue #16).


Version 1.1.2
~~~~~~~~~~~~~

- Find the setproctitle include file on OpenBSD (issue #11).
- Skip test with unicode if the file system encoding wouldn't make it pass
  (issue #13).


Version 1.1.1
~~~~~~~~~~~~~

- Fixed segfault when the module is imported under mod_wsgi (issue #9).


Version 1.1
~~~~~~~~~~~

- The module works correctly with Python 3.


Version 1.0.1
~~~~~~~~~~~~~

- ``setproctitle()`` works even when Python messes up with argv, e.g. when run
  with the -m option (issue #8).


Version 1.0
~~~~~~~~~~~

No major change since the previous version.  The module has been heavily used
in production environment without any problem reported, so it's time to declare
it stable.


Version 0.4
~~~~~~~~~~~

- Module works on BSD (tested on FreeBSD 7.2).

- Module works on Windows. Many thanks to `Develer`_ for providing a neat `GCC
  package for Windows with Python integration`__ that made the Windows porting
  painless.

  .. _Develer: http://www.develer.com/
  .. __: http://www.develer.com/oss/GccWinBinaries


Version 0.3
~~~~~~~~~~~

- Module works on Mac OS X 10.2. Reported working on OS X 10.6 too.


Version 0.2
~~~~~~~~~~~

- Added ``prctl()`` call on Linux >= 2.6.9 to update ``/proc/self/status``.


Version 0.1
~~~~~~~~~~~

- Initial public release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/dvarrazzo/py-setproctitle",
    "name": "setproctitle",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Daniele Varrazzo",
    "author_email": "daniele.varrazzo@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8d/48/49393a96a2eef1ab418b17475fb92b8fcfad83d099e678751b05472e69de/setproctitle-1.3.7.tar.gz",
    "platform": "GNU/Linux",
    "description": "A Python module to customize the process title\n==============================================\n\n.. image:: https://github.com/dvarrazzo/py-setproctitle/workflows/Tests/badge.svg\n    :target: https://github.com/dvarrazzo/py-setproctitle/actions?query=workflow%3ATests\n    :alt: Tests\n\n:author: Daniele Varrazzo\n\nThe ``setproctitle`` module allows a process to change its title (as displayed\nby system tools such as ``ps``, ``top`` or MacOS Activity Monitor).\n\nChanging the title is mostly useful in multi-process systems, for example\nwhen a master process is forked: changing the children's title allows to\nidentify the task each process is busy with.  The technique is used by\nPostgreSQL_ and the `OpenSSH Server`_ for example.\n\nThe procedure is hardly portable across different systems.  PostgreSQL provides\na good `multi-platform implementation`__:  this package was born as a wrapper\naround PostgreSQL code.\n\n- `Homepage <https://github.com/dvarrazzo/py-setproctitle>`__\n- `Download <http://pypi.python.org/pypi/setproctitle/>`__\n- `Bug tracker <https://github.com/dvarrazzo/py-setproctitle/issues>`__\n\n\n.. _PostgreSQL: http://www.postgresql.org\n.. _OpenSSH Server: http://www.openssh.com/\n.. __: http://doxygen.postgresql.org/ps__status_8c_source.html\n\n\nInstallation\n------------\n\n``setproctitle`` is a C extension: in order to build it you will need a C\ncompiler and the Python development support (the ``python-dev`` or\n``python3-dev`` package in most Linux distributions). No further external\ndependencies are required.\n\nYou can use ``pip`` to install the module::\n\n    pip install setproctitle\n\nYou can use ``pip -t`` or ``virtualenv`` for local installations, ``sudo pip``\nfor a system-wide one... the usual stuff. Read pip_ or virtualenv_ docs for\nall the details.\n\n.. _pip: https://pip.readthedocs.org/\n.. _virtualenv: https://virtualenv.readthedocs.org/\n\n\nUsage\n-----\n\n.. note::\n   You should import and use the module (even just calling ``getproctitle()``)\n   pretty early in your program lifetime: code writing env vars `may\n   interfere`__ with the module initialisation.\n\n    .. __: https://github.com/dvarrazzo/py-setproctitle/issues/42\n\n\nThe ``setproctitle`` module exports the following functions:\n\n``setproctitle(title)``\n    Set *title* as the title for the current process.\n\n``getproctitle()``\n    Return the current process title.\n\nThe process title is usually visible in files such as ``/proc/PID/cmdline``,\n``/proc/PID/status``, ``/proc/PID/comm``, depending on the operating system\nand kernel version. These information are used by user-space tools such as\n``ps`` and ``top``.\n\n\n``setthreadtitle(title)``\n    Set *title* as the title for the current thread.\n\n``getthreadtitle()``\n    Get the current thread title.\n\nThe thread title is exposed by some operating systems as the file\n``/proc/PID/task/TID/comm``, which is used by certain tools such as ``htop``.\n\n\nEnvironment variables\n~~~~~~~~~~~~~~~~~~~~~\n\nA few environment variables can be used to customize the module behavior:\n\n``SPT_NOENV``\n    Avoid clobbering ``/proc/PID/environ``.\n\n    On many platforms, setting the process title will clobber the\n    ``environ`` memory area. ``os.environ`` will work as expected from within\n    the Python process, but the content of the file ``/proc/PID/environ`` will\n    be overwritten.  If you require this file not to be broken you can set the\n    ``SPT_NOENV`` environment variable to any non-empty value: in this case\n    the maximum length for the title will be limited to the length of the\n    command line.\n\n``SPT_DEBUG``\n    Print debug information on ``stderr``.\n\n    If the module doesn't work as expected you can set this variable to a\n    non-empty value to generate information useful for debugging.  Note that\n    the most useful information is printed when the module is imported, not\n    when the functions are called.\n\n\nModule status\n-------------\n\nThe module can be currently compiled and effectively used on the following\nplatforms:\n\n- GNU/Linux\n- BSD\n- MacOS X\n- Windows\n\nNote that on Windows there is no way to change the process string:\nwhat the module does is to create a *Named Object* whose value can be read\nusing a tool such as `Process Explorer`_ (contribution of a more useful tool\nto be used together with ``setproctitle`` would be well accepted).\n\nThe module can probably work on HP-UX, but I haven't found any to test with.\nIt is unlikely that it can work on Solaris instead.\n\n.. _Process Explorer: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx\n\nReleases history\n----------------\n\nVersion 1.3.7\n-------------\n\n- Add support for Python 3.14 (issue #152).\n\n\nVersion 1.3.6\n-------------\n\n- Add support for free-threading (issue #147).\n\n\nVersion 1.3.5\n-------------\n\n- Fix bouncing Dock icon on macOS (issue #143).\n- Fix building on C23 compilers (issue #145).\n\n\nVersion 1.3.4\n-------------\n\n- Add support for Python 3.13 (issue #139).\n- Drop support for Python 3.7.\n\n\nVersion 1.3.3\n-------------\n\n- Add support for Python 3.12.\n- Fix package metadata to include Python 3.11, 3.12.\n\n\nVersion 1.3.2\n-------------\n\n- Restore import-time initialization of macOS to avoid crash on thread+fork\n  (issue #113).\n\n\nVersion 1.3.1\n-------------\n\n- Fixed segfault on macOS 12.5 in forked processes (issue #111).\n  Note that, as a workaround, Activity Monitor will show the title of the\n  parent.\n\n\nVersion 1.3.0\n-------------\n\n- Added fallback no-op implementation if building the extension fails.\n- Added support for displaying title as the process name in MacOS Activity\n  Monitor (issue #10).\n- Fixed \"Symbol not found: _Py_GetArgcArgv\" error when using Xcode provided\n  Python (issues #82, #103).\n- Fixed FreeBSD support, broken in 1.2 (issue #94).\n- Added package type annotations (issue #101).\n- Dropped support for Python 3.6.\n\n\nVersion 1.2.3\n-------------\n\n- Added Python 3.10 packages (issue #102).\n- Added Wheel packages for macOS (issue #96).\n- Package build moved to cibuildwheel, other wheels provided (issue #47).\n\n\nVersion 1.2.2\n-------------\n\n- Fixed Windows build (issues #89, #90).\n- Added wheel packages for Windows (issues #47, #90).\n- Added wheel packages for aarch64 (issue #95).\n\n\nVersion 1.2.1\n-------------\n\n- Fixed segfault after ``os.environ.clear()`` (issue #88).\n\n\nVersion 1.2\n~~~~~~~~~~~\n\n- added ``getthreadtitle()`` and ``setthreadtitle()``.\n- Initialisation of the module moved to the first usage: importing the module\n  doesn't cause side effects.\n- Manage much longer command lines (issue #52)\n- Improved build on BSD, dropped ancient versions (issue #67).\n- Fixed build for Python 3.8 (issues #66, #72)\n- Added support for Python 3.9\n- Dropped support for Python < 3.6\n\n\nVersion 1.1.10\n~~~~~~~~~~~~~~\n\n- Fixed building with certain ``prctl.h`` implementations (issue #44).\n- Use ``setuptools`` if available (issue #48).\n\n\nVersion 1.1.9\n~~~~~~~~~~~~~\n\n- Fixed build on VC (issues #20, #33).\n- Added ``MANIFEST.in`` to the source distribution to help with RPM building\n  (issue #30).\n\n\nVersion 1.1.8\n~~~~~~~~~~~~~\n\n- Added support for Python \"diehard\" 2.4 (pull request #3).\n- Fixed build on Mac OS X 10.9 Maverick (issue #27).\n\n\nVersion 1.1.7\n~~~~~~~~~~~~~\n\n- Added PyPy support, courtesy of Ozan Turksever - http://www.logsign.net\n  (pull request #2).\n\n\nVersion 1.1.6\n~~~~~~~~~~~~~\n\n- The module can be compiled again on Windows (issue #21).\n\n\nVersion 1.1.5\n~~~~~~~~~~~~~\n\n- No module bug, but a packaging issue: files ``README`` and ``HISTORY``\n  added back into the distribution.\n\n\nVersion 1.1.4\n~~~~~~~~~~~~~\n\n- The module works correctly in embedded Python.\n- ``setproctitle()`` accepts a keyword argument.\n- Debug output support always compiled in: the variable ``SPT_DEBUG`` can be\n  used to emit debug log.\n\n\nVersion 1.1.3\n~~~~~~~~~~~~~\n\n- Don't clobber environ if the variable ``SPT_NOENV`` is set (issue #16).\n\n\nVersion 1.1.2\n~~~~~~~~~~~~~\n\n- Find the setproctitle include file on OpenBSD (issue #11).\n- Skip test with unicode if the file system encoding wouldn't make it pass\n  (issue #13).\n\n\nVersion 1.1.1\n~~~~~~~~~~~~~\n\n- Fixed segfault when the module is imported under mod_wsgi (issue #9).\n\n\nVersion 1.1\n~~~~~~~~~~~\n\n- The module works correctly with Python 3.\n\n\nVersion 1.0.1\n~~~~~~~~~~~~~\n\n- ``setproctitle()`` works even when Python messes up with argv, e.g. when run\n  with the -m option (issue #8).\n\n\nVersion 1.0\n~~~~~~~~~~~\n\nNo major change since the previous version.  The module has been heavily used\nin production environment without any problem reported, so it's time to declare\nit stable.\n\n\nVersion 0.4\n~~~~~~~~~~~\n\n- Module works on BSD (tested on FreeBSD 7.2).\n\n- Module works on Windows. Many thanks to `Develer`_ for providing a neat `GCC\n  package for Windows with Python integration`__ that made the Windows porting\n  painless.\n\n  .. _Develer: http://www.develer.com/\n  .. __: http://www.develer.com/oss/GccWinBinaries\n\n\nVersion 0.3\n~~~~~~~~~~~\n\n- Module works on Mac OS X 10.2. Reported working on OS X 10.6 too.\n\n\nVersion 0.2\n~~~~~~~~~~~\n\n- Added ``prctl()`` call on Linux >= 2.6.9 to update ``/proc/self/status``.\n\n\nVersion 0.1\n~~~~~~~~~~~\n\n- Initial public release.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A Python module to customize the process title",
    "version": "1.3.7",
    "project_urls": {
        "Download": "http://pypi.python.org/pypi/setproctitle/",
        "Homepage": "https://github.com/dvarrazzo/py-setproctitle"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f248fb401ec8c4953d519d05c87feca816ad668b8258448ff60579ac7a1c1386",
                "md5": "7280310e324f003137fe4547833e17d7",
                "sha256": "cf555b6299f10a6eb44e4f96d2f5a3884c70ce25dc5c8796aaa2f7b40e72cb1b"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7280310e324f003137fe4547833e17d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 18079,
            "upload_time": "2025-09-05T12:49:07",
            "upload_time_iso_8601": "2025-09-05T12:49:07.732772Z",
            "url": "https://files.pythonhosted.org/packages/f2/48/fb401ec8c4953d519d05c87feca816ad668b8258448ff60579ac7a1c1386/setproctitle-1.3.7-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cca3c2b0333c2716fb3b4c9a973dd113366ac51b4f8d56b500f4f8f704b4817a",
                "md5": "dc1746b85b0ede06b158e30e59bc922a",
                "sha256": "690b4776f9c15aaf1023bb07d7c5b797681a17af98a4a69e76a1d504e41108b7"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc1746b85b0ede06b158e30e59bc922a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 13099,
            "upload_time": "2025-09-05T12:49:09",
            "upload_time_iso_8601": "2025-09-05T12:49:09.222740Z",
            "url": "https://files.pythonhosted.org/packages/cc/a3/c2b0333c2716fb3b4c9a973dd113366ac51b4f8d56b500f4f8f704b4817a/setproctitle-1.3.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ef817bda581c517678260e6541b600eeb67745f53596dc077174141ba2f6702",
                "md5": "5f1da05a77f624500d93809d7adeb6a8",
                "sha256": "00afa6fc507967d8c9d592a887cdc6c1f5742ceac6a4354d111ca0214847732c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f1da05a77f624500d93809d7adeb6a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31793,
            "upload_time": "2025-09-05T12:49:10",
            "upload_time_iso_8601": "2025-09-05T12:49:10.297938Z",
            "url": "https://files.pythonhosted.org/packages/0e/f8/17bda581c517678260e6541b600eeb67745f53596dc077174141ba2f6702/setproctitle-1.3.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27d176a33ae80d4e788ecab9eb9b53db03e81cfc95367ec7e3fbf4989962fedd",
                "md5": "b23bce14cfa61a96424f721957a94f9a",
                "sha256": "9e02667f6b9fc1238ba753c0f4b0a37ae184ce8f3bbbc38e115d99646b3f4cd3"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b23bce14cfa61a96424f721957a94f9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 32779,
            "upload_time": "2025-09-05T12:49:12",
            "upload_time_iso_8601": "2025-09-05T12:49:12.157771Z",
            "url": "https://files.pythonhosted.org/packages/27/d1/76a33ae80d4e788ecab9eb9b53db03e81cfc95367ec7e3fbf4989962fedd/setproctitle-1.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59271a07c38121967061564f5e0884414a5ab11a783260450172d4fc68c15621",
                "md5": "b67080c197366620d565bd25c10a3525",
                "sha256": "83fcd271567d133eb9532d3b067c8a75be175b2b3b271e2812921a05303a693f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b67080c197366620d565bd25c10a3525",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34578,
            "upload_time": "2025-09-05T12:49:13",
            "upload_time_iso_8601": "2025-09-05T12:49:13.393620Z",
            "url": "https://files.pythonhosted.org/packages/59/27/1a07c38121967061564f5e0884414a5ab11a783260450172d4fc68c15621/setproctitle-1.3.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8d4725e6353935962d8bb12cbf7e7abba1d0d738c7f6935f90239d8e1ccf913",
                "md5": "bd7fc48bef05e78a8305a385b74221cf",
                "sha256": "13fe37951dda1a45c35d77d06e3da5d90e4f875c4918a7312b3b4556cfa7ff64"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bd7fc48bef05e78a8305a385b74221cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 32030,
            "upload_time": "2025-09-05T12:49:15",
            "upload_time_iso_8601": "2025-09-05T12:49:15.362758Z",
            "url": "https://files.pythonhosted.org/packages/d8/d4/725e6353935962d8bb12cbf7e7abba1d0d738c7f6935f90239d8e1ccf913/setproctitle-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6724e4677ae8e1cb0d549ab558b12db10c175a889be0974c589c428fece5433e",
                "md5": "f5567a6d17d73a3c1dbb16e56fb26185",
                "sha256": "a05509cfb2059e5d2ddff701d38e474169e9ce2a298cf1b6fd5f3a213a553fe5"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f5567a6d17d73a3c1dbb16e56fb26185",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 33363,
            "upload_time": "2025-09-05T12:49:16",
            "upload_time_iso_8601": "2025-09-05T12:49:16.829248Z",
            "url": "https://files.pythonhosted.org/packages/67/24/e4677ae8e1cb0d549ab558b12db10c175a889be0974c589c428fece5433e/setproctitle-1.3.7-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55d469ce66e4373a48fdbb37489f3ded476bb393e27f514968c3a69a67343ae0",
                "md5": "d92b900d1dfb4561c13a3decfc96ba08",
                "sha256": "6da835e76ae18574859224a75db6e15c4c2aaa66d300a57efeaa4c97ca4c7381"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d92b900d1dfb4561c13a3decfc96ba08",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31508,
            "upload_time": "2025-09-05T12:49:18",
            "upload_time_iso_8601": "2025-09-05T12:49:18.032821Z",
            "url": "https://files.pythonhosted.org/packages/55/d4/69ce66e4373a48fdbb37489f3ded476bb393e27f514968c3a69a67343ae0/setproctitle-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b5a42c1ed0e9665d068146a68326529b5686a1881c8b9197c2664db4baf6aeb",
                "md5": "193cda12a77576b24520b91b52454f38",
                "sha256": "9e803d1b1e20240a93bac0bc1025363f7f80cb7eab67dfe21efc0686cc59ad7c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "193cda12a77576b24520b91b52454f38",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 12558,
            "upload_time": "2025-09-05T12:49:19",
            "upload_time_iso_8601": "2025-09-05T12:49:19.742726Z",
            "url": "https://files.pythonhosted.org/packages/4b/5a/42c1ed0e9665d068146a68326529b5686a1881c8b9197c2664db4baf6aeb/setproctitle-1.3.7-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcfedd206cc19a25561921456f6cb12b405635319299b6f366e0bebe872abc18",
                "md5": "1415520c8b1816095ed3b338ed4e809a",
                "sha256": "a97200acc6b64ec4cada52c2ecaf1fba1ef9429ce9c542f8a7db5bcaa9dcbd95"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1415520c8b1816095ed3b338ed4e809a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 13245,
            "upload_time": "2025-09-05T12:49:21",
            "upload_time_iso_8601": "2025-09-05T12:49:21.023954Z",
            "url": "https://files.pythonhosted.org/packages/dc/fe/dd206cc19a25561921456f6cb12b405635319299b6f366e0bebe872abc18/setproctitle-1.3.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04cd1b7ba5cad635510720ce19d7122154df96a2387d2a74217be552887c93e5",
                "md5": "d630be3b952ecd8c4c95a7fe9aaa95d1",
                "sha256": "a600eeb4145fb0ee6c287cb82a2884bd4ec5bbb076921e287039dcc7b7cc6dd0"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d630be3b952ecd8c4c95a7fe9aaa95d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 18085,
            "upload_time": "2025-09-05T12:49:22",
            "upload_time_iso_8601": "2025-09-05T12:49:22.183261Z",
            "url": "https://files.pythonhosted.org/packages/04/cd/1b7ba5cad635510720ce19d7122154df96a2387d2a74217be552887c93e5/setproctitle-1.3.7-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f1ab2da0a620490aae355f9d72072ac13e901a9fec809a6a24fc6493a8f3c35",
                "md5": "895361d6e18419eefe6e9aba44ebd83e",
                "sha256": "97a090fed480471bb175689859532709e28c085087e344bca45cf318034f70c4"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "895361d6e18419eefe6e9aba44ebd83e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 13097,
            "upload_time": "2025-09-05T12:49:23",
            "upload_time_iso_8601": "2025-09-05T12:49:23.322787Z",
            "url": "https://files.pythonhosted.org/packages/8f/1a/b2da0a620490aae355f9d72072ac13e901a9fec809a6a24fc6493a8f3c35/setproctitle-1.3.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "182ebd03ff02432a181c1787f6fc2a678f53b7dacdd5ded69c318fe1619556e8",
                "md5": "7949c1aaad24e2149d19666ba33c4e96",
                "sha256": "1607b963e7b53e24ec8a2cb4e0ab3ae591d7c6bf0a160feef0551da63452b37f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7949c1aaad24e2149d19666ba33c4e96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 32191,
            "upload_time": "2025-09-05T12:49:24",
            "upload_time_iso_8601": "2025-09-05T12:49:24.567095Z",
            "url": "https://files.pythonhosted.org/packages/18/2e/bd03ff02432a181c1787f6fc2a678f53b7dacdd5ded69c318fe1619556e8/setproctitle-1.3.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28781e62fc0937a8549f2220445ed2175daacee9b6764c7963b16148119b016d",
                "md5": "e9b8029b1d68af083ea159a620dbffa6",
                "sha256": "a20fb1a3974e2dab857870cf874b325b8705605cb7e7e8bcbb915bca896f52a9"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e9b8029b1d68af083ea159a620dbffa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 33203,
            "upload_time": "2025-09-05T12:49:25",
            "upload_time_iso_8601": "2025-09-05T12:49:25.871397Z",
            "url": "https://files.pythonhosted.org/packages/28/78/1e62fc0937a8549f2220445ed2175daacee9b6764c7963b16148119b016d/setproctitle-1.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a03c65edc65db3fa3df400cf13b05e9d41a3c77517b4839ce873aa6b4043184f",
                "md5": "2db25783ec4f8649830826a3f4049663",
                "sha256": "f8d961bba676e07d77665204f36cffaa260f526e7b32d07ab3df6a2c1dfb44ba"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2db25783ec4f8649830826a3f4049663",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34963,
            "upload_time": "2025-09-05T12:49:27",
            "upload_time_iso_8601": "2025-09-05T12:49:27.044867Z",
            "url": "https://files.pythonhosted.org/packages/a0/3c/65edc65db3fa3df400cf13b05e9d41a3c77517b4839ce873aa6b4043184f/setproctitle-1.3.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a13289157e3de997973e306e44152522385f428e16f92f3cf113461489e1e2ee",
                "md5": "a21e0f2301a989444a6e0f59c309da09",
                "sha256": "db0fd964fbd3a9f8999b502f65bd2e20883fdb5b1fae3a424e66db9a793ed307"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a21e0f2301a989444a6e0f59c309da09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 32398,
            "upload_time": "2025-09-05T12:49:28",
            "upload_time_iso_8601": "2025-09-05T12:49:28.909354Z",
            "url": "https://files.pythonhosted.org/packages/a1/32/89157e3de997973e306e44152522385f428e16f92f3cf113461489e1e2ee/setproctitle-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a1877a765a339ddf046844cb4513353d8e9dcd8183da9cdba6e078713e6b0b2",
                "md5": "8c70b62d6caa629d867061b3f7f50b4b",
                "sha256": "db116850fcf7cca19492030f8d3b4b6e231278e8fe097a043957d22ce1bdf3ee"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8c70b62d6caa629d867061b3f7f50b4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 33657,
            "upload_time": "2025-09-05T12:49:30",
            "upload_time_iso_8601": "2025-09-05T12:49:30.323080Z",
            "url": "https://files.pythonhosted.org/packages/4a/18/77a765a339ddf046844cb4513353d8e9dcd8183da9cdba6e078713e6b0b2/setproctitle-1.3.7-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b63f0b6205c64d74d2a24a58644a38ec77bdbaa6afc13747e75973bf8904932",
                "md5": "3b8936c48920d49884818bcbc5f10eef",
                "sha256": "316664d8b24a5c91ee244460bdaf7a74a707adaa9e14fbe0dc0a53168bb9aba1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b8936c48920d49884818bcbc5f10eef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 31836,
            "upload_time": "2025-09-05T12:49:32",
            "upload_time_iso_8601": "2025-09-05T12:49:32.309149Z",
            "url": "https://files.pythonhosted.org/packages/6b/63/f0b6205c64d74d2a24a58644a38ec77bdbaa6afc13747e75973bf8904932/setproctitle-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba51e1277f9ba302f1a250bbd3eedbbee747a244b3cc682eb58fb9733968f6d8",
                "md5": "23dd64b0bfcc147c9c685ffd5882e696",
                "sha256": "b74774ca471c86c09b9d5037c8451fff06bb82cd320d26ae5a01c758088c0d5d"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "23dd64b0bfcc147c9c685ffd5882e696",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 12556,
            "upload_time": "2025-09-05T12:49:33",
            "upload_time_iso_8601": "2025-09-05T12:49:33.529969Z",
            "url": "https://files.pythonhosted.org/packages/ba/51/e1277f9ba302f1a250bbd3eedbbee747a244b3cc682eb58fb9733968f6d8/setproctitle-1.3.7-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b67b822a23f17e9003dfdee92cd72758441ca2a3680388da813a371b716fb07f",
                "md5": "8bc1feafe2f5e3f3062656a49b38bdcc",
                "sha256": "acb9097213a8dd3410ed9f0dc147840e45ca9797785272928d4be3f0e69e3be4"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8bc1feafe2f5e3f3062656a49b38bdcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 13243,
            "upload_time": "2025-09-05T12:49:34",
            "upload_time_iso_8601": "2025-09-05T12:49:34.553158Z",
            "url": "https://files.pythonhosted.org/packages/b6/7b/822a23f17e9003dfdee92cd72758441ca2a3680388da813a371b716fb07f/setproctitle-1.3.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbf02dc88e842077719d7384d86cc47403e5102810492b33680e7dadcee64cd8",
                "md5": "fae8399b98ee5034cf3ab791f76ddc9f",
                "sha256": "2dc99aec591ab6126e636b11035a70991bc1ab7a261da428491a40b84376654e"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "fae8399b98ee5034cf3ab791f76ddc9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 18049,
            "upload_time": "2025-09-05T12:49:36",
            "upload_time_iso_8601": "2025-09-05T12:49:36.241842Z",
            "url": "https://files.pythonhosted.org/packages/fb/f0/2dc88e842077719d7384d86cc47403e5102810492b33680e7dadcee64cd8/setproctitle-1.3.7-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0b450940504466689cda65680c9e9a1e518e5750c10490639fa687489ac7013",
                "md5": "8fba18c467a98329fbb9269ec1118da3",
                "sha256": "cdd8aa571b7aa39840fdbea620e308a19691ff595c3a10231e9ee830339dd798"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8fba18c467a98329fbb9269ec1118da3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 13079,
            "upload_time": "2025-09-05T12:49:38",
            "upload_time_iso_8601": "2025-09-05T12:49:38.088226Z",
            "url": "https://files.pythonhosted.org/packages/f0/b4/50940504466689cda65680c9e9a1e518e5750c10490639fa687489ac7013/setproctitle-1.3.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d09971630546b9395b095f4082be41165d1078204d1696c2d9baade3de3202d0",
                "md5": "b518d9f1eb25fbb7f89f1572d78d6bd4",
                "sha256": "2906b6c7959cdb75f46159bf0acd8cc9906cf1361c9e1ded0d065fe8f9039629"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b518d9f1eb25fbb7f89f1572d78d6bd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 32932,
            "upload_time": "2025-09-05T12:49:39",
            "upload_time_iso_8601": "2025-09-05T12:49:39.271160Z",
            "url": "https://files.pythonhosted.org/packages/d0/99/71630546b9395b095f4082be41165d1078204d1696c2d9baade3de3202d0/setproctitle-1.3.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5022cee06af4ffcfb0e8aba047bd44f5262e644199ae7527ae2c1f672b86495c",
                "md5": "0b0c344cba6c4657bcf595158f620f34",
                "sha256": "6915964a6dda07920a1159321dcd6d94fc7fc526f815ca08a8063aeca3c204f1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0b0c344cba6c4657bcf595158f620f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 33736,
            "upload_time": "2025-09-05T12:49:40",
            "upload_time_iso_8601": "2025-09-05T12:49:40.565574Z",
            "url": "https://files.pythonhosted.org/packages/50/22/cee06af4ffcfb0e8aba047bd44f5262e644199ae7527ae2c1f672b86495c/setproctitle-1.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c00a5949a8bb06ef5e7df214fc393bb2fb6aedf0479b17214e57750dfdd0f24",
                "md5": "a53bea7b7e4f5a45ae765ccc2cd365d3",
                "sha256": "cff72899861c765bd4021d1ff1c68d60edc129711a2fdba77f9cb69ef726a8b6"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a53bea7b7e4f5a45ae765ccc2cd365d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35605,
            "upload_time": "2025-09-05T12:49:42",
            "upload_time_iso_8601": "2025-09-05T12:49:42.362482Z",
            "url": "https://files.pythonhosted.org/packages/5c/00/a5949a8bb06ef5e7df214fc393bb2fb6aedf0479b17214e57750dfdd0f24/setproctitle-1.3.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b03a50caca532a9343828e3bf5778c7a84d6c737a249b1796d50dd680290594d",
                "md5": "2b1cd37000e19a07ed0ba7a693899060",
                "sha256": "b7cb05bd446687ff816a3aaaf831047fc4c364feff7ada94a66024f1367b448c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b1cd37000e19a07ed0ba7a693899060",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 33143,
            "upload_time": "2025-09-05T12:49:43",
            "upload_time_iso_8601": "2025-09-05T12:49:43.515787Z",
            "url": "https://files.pythonhosted.org/packages/b0/3a/50caca532a9343828e3bf5778c7a84d6c737a249b1796d50dd680290594d/setproctitle-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca14b843a251296ce55e2e17c017d6b9f11ce0d3d070e9265de4ecad948b913d",
                "md5": "e555bef73c6bf6381852008e08c3898f",
                "sha256": "3a57b9a00de8cae7e2a1f7b9f0c2ac7b69372159e16a7708aa2f38f9e5cc987a"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e555bef73c6bf6381852008e08c3898f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 34434,
            "upload_time": "2025-09-05T12:49:45",
            "upload_time_iso_8601": "2025-09-05T12:49:45.310049Z",
            "url": "https://files.pythonhosted.org/packages/ca/14/b843a251296ce55e2e17c017d6b9f11ce0d3d070e9265de4ecad948b913d/setproctitle-1.3.7-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8b706145c238c0a6d2c4bc881f8be230bb9f36d2bf51aff7bddcb796d5eed67",
                "md5": "69bbafc791c49f0f6c27eb93df655345",
                "sha256": "d8828b356114f6b308b04afe398ed93803d7fca4a955dd3abe84430e28d33739"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69bbafc791c49f0f6c27eb93df655345",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 32795,
            "upload_time": "2025-09-05T12:49:46",
            "upload_time_iso_8601": "2025-09-05T12:49:46.419941Z",
            "url": "https://files.pythonhosted.org/packages/c8/b7/06145c238c0a6d2c4bc881f8be230bb9f36d2bf51aff7bddcb796d5eed67/setproctitle-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efdcef76a81fac9bf27b84ed23df19c1f67391a753eed6e3c2254ebcb5133f56",
                "md5": "15c4b853d348a32a3eb0c53299966c57",
                "sha256": "b0304f905efc845829ac2bc791ddebb976db2885f6171f4a3de678d7ee3f7c9f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "15c4b853d348a32a3eb0c53299966c57",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 12552,
            "upload_time": "2025-09-05T12:49:47",
            "upload_time_iso_8601": "2025-09-05T12:49:47.635671Z",
            "url": "https://files.pythonhosted.org/packages/ef/dc/ef76a81fac9bf27b84ed23df19c1f67391a753eed6e3c2254ebcb5133f56/setproctitle-1.3.7-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e25ba9fe517912cd6e28cf43a212b80cb679ff179a91b623138a99796d7d18a0",
                "md5": "e3ecc18e3961fadda1b8dc0ca4ec7250",
                "sha256": "9888ceb4faea3116cf02a920ff00bfbc8cc899743e4b4ac914b03625bdc3c300"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e3ecc18e3961fadda1b8dc0ca4ec7250",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 13247,
            "upload_time": "2025-09-05T12:49:49",
            "upload_time_iso_8601": "2025-09-05T12:49:49.160551Z",
            "url": "https://files.pythonhosted.org/packages/e2/5b/a9fe517912cd6e28cf43a212b80cb679ff179a91b623138a99796d7d18a0/setproctitle-1.3.7-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d2ffcedcade3b307a391b6e17c774c6261a7166aed641aee00ed2aad96c63ce",
                "md5": "4d01219fb65bc6ab045c01379361a93b",
                "sha256": "c3736b2a423146b5e62230502e47e08e68282ff3b69bcfe08a322bee73407922"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "4d01219fb65bc6ab045c01379361a93b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 18047,
            "upload_time": "2025-09-05T12:49:50",
            "upload_time_iso_8601": "2025-09-05T12:49:50.271654Z",
            "url": "https://files.pythonhosted.org/packages/5d/2f/fcedcade3b307a391b6e17c774c6261a7166aed641aee00ed2aad96c63ce/setproctitle-1.3.7-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23aeafc141ca9631350d0a80b8f287aac79a76f26b6af28fd8bf92dae70dc2c5",
                "md5": "404577f2600547842b3c824343e92e07",
                "sha256": "3384e682b158d569e85a51cfbde2afd1ab57ecf93ea6651fe198d0ba451196ee"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "404577f2600547842b3c824343e92e07",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 13073,
            "upload_time": "2025-09-05T12:49:51",
            "upload_time_iso_8601": "2025-09-05T12:49:51.460802Z",
            "url": "https://files.pythonhosted.org/packages/23/ae/afc141ca9631350d0a80b8f287aac79a76f26b6af28fd8bf92dae70dc2c5/setproctitle-1.3.7-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87ed0a4f00315bc02510395b95eec3d4aa77c07192ee79f0baae77ea7b9603d8",
                "md5": "fc00b573dc9df2d15029ac5918b7c4ad",
                "sha256": "0564a936ea687cd24dffcea35903e2a20962aa6ac20e61dd3a207652401492dd"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc00b573dc9df2d15029ac5918b7c4ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 33284,
            "upload_time": "2025-09-05T12:49:52",
            "upload_time_iso_8601": "2025-09-05T12:49:52.741932Z",
            "url": "https://files.pythonhosted.org/packages/87/ed/0a4f00315bc02510395b95eec3d4aa77c07192ee79f0baae77ea7b9603d8/setproctitle-1.3.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fce4adf3c4c0a2173cb7920dc9df710bcc67e9bcdbf377e243b7a962dc31a51a",
                "md5": "0e22ecdac47bff11467e594f0170a0a0",
                "sha256": "a5d1cb3f81531f0eb40e13246b679a1bdb58762b170303463cb06ecc296f26d0"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0e22ecdac47bff11467e594f0170a0a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 34104,
            "upload_time": "2025-09-05T12:49:54",
            "upload_time_iso_8601": "2025-09-05T12:49:54.416236Z",
            "url": "https://files.pythonhosted.org/packages/fc/e4/adf3c4c0a2173cb7920dc9df710bcc67e9bcdbf377e243b7a962dc31a51a/setproctitle-1.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "524f6daf66394152756664257180439d37047aa9a1cfaa5e4f5ed35e93d1dc06",
                "md5": "45680e57ad1fc7edbc0958de52b8bbdc",
                "sha256": "a7d159e7345f343b44330cbba9194169b8590cb13dae940da47aa36a72aa9929"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "45680e57ad1fc7edbc0958de52b8bbdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 35982,
            "upload_time": "2025-09-05T12:49:56",
            "upload_time_iso_8601": "2025-09-05T12:49:56.295242Z",
            "url": "https://files.pythonhosted.org/packages/52/4f/6daf66394152756664257180439d37047aa9a1cfaa5e4f5ed35e93d1dc06/setproctitle-1.3.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b62f2c0595403cf915db031f346b0e3b2c0096050e90e0be658a64f44f4278a",
                "md5": "8fb04c82de90fcf89d029c47c91b2b44",
                "sha256": "0b5074649797fd07c72ca1f6bff0406f4a42e1194faac03ecaab765ce605866f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8fb04c82de90fcf89d029c47c91b2b44",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 33150,
            "upload_time": "2025-09-05T12:49:58",
            "upload_time_iso_8601": "2025-09-05T12:49:58.025433Z",
            "url": "https://files.pythonhosted.org/packages/1b/62/f2c0595403cf915db031f346b0e3b2c0096050e90e0be658a64f44f4278a/setproctitle-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a02910dd41cde849fb2f9b626c846b7ea30c99c81a18a5037a45cc4ba33c19a7",
                "md5": "4751a3920ca26e58ed52b998c6d6b03c",
                "sha256": "61e96febced3f61b766115381d97a21a6265a0f29188a791f6df7ed777aef698"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4751a3920ca26e58ed52b998c6d6b03c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 34463,
            "upload_time": "2025-09-05T12:49:59",
            "upload_time_iso_8601": "2025-09-05T12:49:59.424438Z",
            "url": "https://files.pythonhosted.org/packages/a0/29/10dd41cde849fb2f9b626c846b7ea30c99c81a18a5037a45cc4ba33c19a7/setproctitle-1.3.7-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "713ccedd8eccfaf15fb73a2c20525b68c9477518917c9437737fa0fda91e378f",
                "md5": "ecbdd9715841f2ee80f4f4f8c7cb2e0a",
                "sha256": "047138279f9463f06b858e579cc79580fbf7a04554d24e6bddf8fe5dddbe3d4c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecbdd9715841f2ee80f4f4f8c7cb2e0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 32848,
            "upload_time": "2025-09-05T12:50:01",
            "upload_time_iso_8601": "2025-09-05T12:50:01.107986Z",
            "url": "https://files.pythonhosted.org/packages/71/3c/cedd8eccfaf15fb73a2c20525b68c9477518917c9437737fa0fda91e378f/setproctitle-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6a4d588d3497d4714750e3eaf269e9e8985449203d82b16b933c39bd3fc52a1",
                "md5": "80548fda1a4e0e760b00806519e10b0d",
                "sha256": "10e92915c4b3086b1586933a36faf4f92f903c5554f3c34102d18c7d3f5378e9"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "80548fda1a4e0e760b00806519e10b0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 18058,
            "upload_time": "2025-09-05T12:50:02",
            "upload_time_iso_8601": "2025-09-05T12:50:02.501244Z",
            "url": "https://files.pythonhosted.org/packages/e6/a4/d588d3497d4714750e3eaf269e9e8985449203d82b16b933c39bd3fc52a1/setproctitle-1.3.7-cp313-cp313t-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05777637f7682322a7244e07c373881c7e982567e2cb1dd2f31bd31481e45500",
                "md5": "6cac2c869dd9763af91bf03fca131f12",
                "sha256": "de879e9c2eab637f34b1a14c4da1e030c12658cdc69ee1b3e5be81b380163ce5"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6cac2c869dd9763af91bf03fca131f12",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 13072,
            "upload_time": "2025-09-05T12:50:03",
            "upload_time_iso_8601": "2025-09-05T12:50:03.601209Z",
            "url": "https://files.pythonhosted.org/packages/05/77/7637f7682322a7244e07c373881c7e982567e2cb1dd2f31bd31481e45500/setproctitle-1.3.7-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5209f366eca0973cfbac1470068d1313fa3fe3de4a594683385204ec7f1c4101",
                "md5": "7d23adc82acb98741a893fcb7b85a3a7",
                "sha256": "c18246d88e227a5b16248687514f95642505000442165f4b7db354d39d0e4c29"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d23adc82acb98741a893fcb7b85a3a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 34490,
            "upload_time": "2025-09-05T12:50:04",
            "upload_time_iso_8601": "2025-09-05T12:50:04.948919Z",
            "url": "https://files.pythonhosted.org/packages/52/09/f366eca0973cfbac1470068d1313fa3fe3de4a594683385204ec7f1c4101/setproctitle-1.3.7-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7136611fc2ed149fdea17c3677e1d0df30d8186eef9562acc248682b91312706",
                "md5": "15baea04e7efdeecac67d120c47ea33c",
                "sha256": "7081f193dab22df2c36f9fc6d113f3793f83c27891af8fe30c64d89d9a37e152"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "15baea04e7efdeecac67d120c47ea33c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 35267,
            "upload_time": "2025-09-05T12:50:06",
            "upload_time_iso_8601": "2025-09-05T12:50:06.015184Z",
            "url": "https://files.pythonhosted.org/packages/71/36/611fc2ed149fdea17c3677e1d0df30d8186eef9562acc248682b91312706/setproctitle-1.3.7-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88a464e77d0671446bd5a5554387b69e1efd915274686844bea733714c828813",
                "md5": "838c3298aa9b84cf141bf47f83b29785",
                "sha256": "9cc9b901ce129350637426a89cfd650066a4adc6899e47822e2478a74023ff7c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "838c3298aa9b84cf141bf47f83b29785",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 37376,
            "upload_time": "2025-09-05T12:50:07",
            "upload_time_iso_8601": "2025-09-05T12:50:07.484160Z",
            "url": "https://files.pythonhosted.org/packages/88/a4/64e77d0671446bd5a5554387b69e1efd915274686844bea733714c828813/setproctitle-1.3.7-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89bcad9c664fe524fb4a4b2d3663661a5c63453ce851736171e454fa2cdec35c",
                "md5": "4c4e1daa40d44b1f0bd5d710a2a5b41a",
                "sha256": "80e177eff2d1ec172188d0d7fd9694f8e43d3aab76a6f5f929bee7bf7894e98b"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c4e1daa40d44b1f0bd5d710a2a5b41a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 33963,
            "upload_time": "2025-09-05T12:50:09",
            "upload_time_iso_8601": "2025-09-05T12:50:09.056091Z",
            "url": "https://files.pythonhosted.org/packages/89/bc/ad9c664fe524fb4a4b2d3663661a5c63453ce851736171e454fa2cdec35c/setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab01a36de7caf2d90c4c28678da1466b47495cbbad43badb4e982d8db8167ed4",
                "md5": "ffa3c05631ea9341551f16b711d841fd",
                "sha256": "23e520776c445478a67ee71b2a3c1ffdafbe1f9f677239e03d7e2cc635954e18"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ffa3c05631ea9341551f16b711d841fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 35550,
            "upload_time": "2025-09-05T12:50:10",
            "upload_time_iso_8601": "2025-09-05T12:50:10.791423Z",
            "url": "https://files.pythonhosted.org/packages/ab/01/a36de7caf2d90c4c28678da1466b47495cbbad43badb4e982d8db8167ed4/setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd6817e8aea0ed5ebc17fbf03ed2562bfab277c280e3625850c38d92a7b5fcd9",
                "md5": "5baefdccf325d9c28d4a3cffebd79741",
                "sha256": "5fa1953126a3b9bd47049d58c51b9dac72e78ed120459bd3aceb1bacee72357c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5baefdccf325d9c28d4a3cffebd79741",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 33727,
            "upload_time": "2025-09-05T12:50:12",
            "upload_time_iso_8601": "2025-09-05T12:50:12.032086Z",
            "url": "https://files.pythonhosted.org/packages/dd/68/17e8aea0ed5ebc17fbf03ed2562bfab277c280e3625850c38d92a7b5fcd9/setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b23390a3bf43fe3a2242b4618aa799c672270250b5780667898f30663fd94993",
                "md5": "30842e7f68e53fa2a4b699807711df89",
                "sha256": "4a5e212bf438a4dbeece763f4962ad472c6008ff6702e230b4f16a037e2f6f29"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "30842e7f68e53fa2a4b699807711df89",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 12549,
            "upload_time": "2025-09-05T12:50:13",
            "upload_time_iso_8601": "2025-09-05T12:50:13.074097Z",
            "url": "https://files.pythonhosted.org/packages/b2/33/90a3bf43fe3a2242b4618aa799c672270250b5780667898f30663fd94993/setproctitle-1.3.7-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b0e50d1f07f3032e1f23d814ad6462bc0a138f369967c72494286b8a5228e40",
                "md5": "909ee239d3951d1652f533cf3bf0ff78",
                "sha256": "cf2727b733e90b4f874bac53e3092aa0413fe1ea6d4f153f01207e6ce65034d9"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "909ee239d3951d1652f533cf3bf0ff78",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 13243,
            "upload_time": "2025-09-05T12:50:14",
            "upload_time_iso_8601": "2025-09-05T12:50:14.146046Z",
            "url": "https://files.pythonhosted.org/packages/0b/0e/50d1f07f3032e1f23d814ad6462bc0a138f369967c72494286b8a5228e40/setproctitle-1.3.7-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d13e0a0e27d1c9926fecccfd1f91796c244416c70bf6bca448d988638faea81d",
                "md5": "021d91864e795b1b29cafc6b4106ece5",
                "sha256": "7f47accafac7fe6535ba8ba9efd59df9d84a6214565108d0ebb1199119c9cbbd"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "021d91864e795b1b29cafc6b4106ece5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 12544,
            "upload_time": "2025-09-05T12:50:15",
            "upload_time_iso_8601": "2025-09-05T12:50:15.810936Z",
            "url": "https://files.pythonhosted.org/packages/d1/3e/0a0e27d1c9926fecccfd1f91796c244416c70bf6bca448d988638faea81d/setproctitle-1.3.7-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "361b6bf4cb7acbbd5c846ede1c3f4d6b4ee52744d402e43546826da065ff2ab7",
                "md5": "85dcab79ec7661ff75da341a889c4fff",
                "sha256": "fe5ca35aeec6dc50cabab9bf2d12fbc9067eede7ff4fe92b8f5b99d92e21263f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85dcab79ec7661ff75da341a889c4fff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 13235,
            "upload_time": "2025-09-05T12:50:16",
            "upload_time_iso_8601": "2025-09-05T12:50:16.890653Z",
            "url": "https://files.pythonhosted.org/packages/36/1b/6bf4cb7acbbd5c846ede1c3f4d6b4ee52744d402e43546826da065ff2ab7/setproctitle-1.3.7-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89c743ac3a98414f91d1b86a276bc2f799ad0b4b010e08497a95750d5bc42803",
                "md5": "02c73f2bc3d14f50bf421b3a2fd19aed",
                "sha256": "80c36c6a87ff72eabf621d0c79b66f3bdd0ecc79e873c1e9f0651ee8bf215c63"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "02c73f2bc3d14f50bf421b3a2fd19aed",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 18052,
            "upload_time": "2025-09-05T12:50:17",
            "upload_time_iso_8601": "2025-09-05T12:50:17.928470Z",
            "url": "https://files.pythonhosted.org/packages/89/c7/43ac3a98414f91d1b86a276bc2f799ad0b4b010e08497a95750d5bc42803/setproctitle-1.3.7-cp314-cp314-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd2cdc258600a25e1a1f04948073826bebc55e18dbd99dc65a576277a82146fa",
                "md5": "819ff28dcc48359b3038759e516d15b2",
                "sha256": "b53602371a52b91c80aaf578b5ada29d311d12b8a69c0c17fbc35b76a1fd4f2e"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "819ff28dcc48359b3038759e516d15b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 13071,
            "upload_time": "2025-09-05T12:50:19",
            "upload_time_iso_8601": "2025-09-05T12:50:19.061628Z",
            "url": "https://files.pythonhosted.org/packages/cd/2c/dc258600a25e1a1f04948073826bebc55e18dbd99dc65a576277a82146fa/setproctitle-1.3.7-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab268e3bb082992f19823d831f3d62a89409deb6092e72fc6940962983ffc94f",
                "md5": "347ad4ea198da558755548474a9cc6db",
                "sha256": "fcb966a6c57cf07cc9448321a08f3be6b11b7635be502669bc1d8745115d7e7f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "347ad4ea198da558755548474a9cc6db",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 33180,
            "upload_time": "2025-09-05T12:50:20",
            "upload_time_iso_8601": "2025-09-05T12:50:20.395515Z",
            "url": "https://files.pythonhosted.org/packages/ab/26/8e3bb082992f19823d831f3d62a89409deb6092e72fc6940962983ffc94f/setproctitle-1.3.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1afae692a20276d1159dd0cf77b0bcf92cbb954b965655eb4a69672099bb214",
                "md5": "8a48deabf710f83b8ce870f581f286b9",
                "sha256": "46178672599b940368d769474fe13ecef1b587d58bb438ea72b9987f74c56ea5"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a48deabf710f83b8ce870f581f286b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 34043,
            "upload_time": "2025-09-05T12:50:22",
            "upload_time_iso_8601": "2025-09-05T12:50:22.454023Z",
            "url": "https://files.pythonhosted.org/packages/f1/af/ae692a20276d1159dd0cf77b0bcf92cbb954b965655eb4a69672099bb214/setproctitle-1.3.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34b26a092076324dd4dac1a6d38482bedebbff5cf34ef29f58585ec76e47bc9d",
                "md5": "eaea36970450006dc9a8fd4b37a0c5d7",
                "sha256": "7f9e9e3ff135cbcc3edd2f4cf29b139f4aca040d931573102742db70ff428c17"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "eaea36970450006dc9a8fd4b37a0c5d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 35892,
            "upload_time": "2025-09-05T12:50:23",
            "upload_time_iso_8601": "2025-09-05T12:50:23.937548Z",
            "url": "https://files.pythonhosted.org/packages/34/b2/6a092076324dd4dac1a6d38482bedebbff5cf34ef29f58585ec76e47bc9d/setproctitle-1.3.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c1a8836b9f28cee32859ac36c3df85aa03e1ff4598d23ea17ca2e96b5845a8f",
                "md5": "aa1276960b5684699c4a25598fb095f2",
                "sha256": "14c7eba8d90c93b0e79c01f0bd92a37b61983c27d6d7d5a3b5defd599113d60e"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aa1276960b5684699c4a25598fb095f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 32898,
            "upload_time": "2025-09-05T12:50:25",
            "upload_time_iso_8601": "2025-09-05T12:50:25.617518Z",
            "url": "https://files.pythonhosted.org/packages/1c/1a/8836b9f28cee32859ac36c3df85aa03e1ff4598d23ea17ca2e96b5845a8f/setproctitle-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef228fabdc24baf42defb599714799d8445fe3ae987ec425a26ec8e80ea38f8e",
                "md5": "3e8cc252ed38794c42d27566b6a0d90a",
                "sha256": "9e64e98077fb30b6cf98073d6c439cd91deb8ebbf8fc62d9dbf52bd38b0c6ac0"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3e8cc252ed38794c42d27566b6a0d90a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 34308,
            "upload_time": "2025-09-05T12:50:26",
            "upload_time_iso_8601": "2025-09-05T12:50:26.827022Z",
            "url": "https://files.pythonhosted.org/packages/ef/22/8fabdc24baf42defb599714799d8445fe3ae987ec425a26ec8e80ea38f8e/setproctitle-1.3.7-cp314-cp314-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "151bb9bee9de6c8cdcb3b3a6cb0b3e773afdb86bbbc1665a3bfa424a4294fda2",
                "md5": "826f779fe344380a4a7a7563ba7429e1",
                "sha256": "b91387cc0f02a00ac95dcd93f066242d3cca10ff9e6153de7ee07069c6f0f7c8"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "826f779fe344380a4a7a7563ba7429e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 32536,
            "upload_time": "2025-09-05T12:50:28",
            "upload_time_iso_8601": "2025-09-05T12:50:28.500499Z",
            "url": "https://files.pythonhosted.org/packages/15/1b/b9bee9de6c8cdcb3b3a6cb0b3e773afdb86bbbc1665a3bfa424a4294fda2/setproctitle-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "016d20886c8ff2e6d85e3cabadab6aab9bb90acaf1a5cfcb04d633f8d61b2626",
                "md5": "e1936659f118eb1fdbacea2746df0f32",
                "sha256": "6fc87caf9e323ac426910306c3e5d3205cd9f8dcac06d233fcafe9337f0928a3"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "e1936659f118eb1fdbacea2746df0f32",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 18062,
            "upload_time": "2025-09-05T12:50:29",
            "upload_time_iso_8601": "2025-09-05T12:50:29.780836Z",
            "url": "https://files.pythonhosted.org/packages/01/6d/20886c8ff2e6d85e3cabadab6aab9bb90acaf1a5cfcb04d633f8d61b2626/setproctitle-1.3.7-cp314-cp314t-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a6026dfc5f198715f1343b95c2f7a1c16ae9ffa45bd89ffd45a60ed258d24ea",
                "md5": "866b6677ca9495993441cd2583bc884f",
                "sha256": "6134c63853d87a4897ba7d5cc0e16abfa687f6c66fc09f262bb70d67718f2309"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "866b6677ca9495993441cd2583bc884f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 13075,
            "upload_time": "2025-09-05T12:50:31",
            "upload_time_iso_8601": "2025-09-05T12:50:31.604321Z",
            "url": "https://files.pythonhosted.org/packages/9a/60/26dfc5f198715f1343b95c2f7a1c16ae9ffa45bd89ffd45a60ed258d24ea/setproctitle-1.3.7-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "219c980b01f50d51345dd513047e3ba9e96468134b9181319093e61db1c47188",
                "md5": "0a309ec7430dc08e510d0f0ae0e27956",
                "sha256": "1403d2abfd32790b6369916e2313dffbe87d6b11dca5bbd898981bcde48e7a2b"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a309ec7430dc08e510d0f0ae0e27956",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 34744,
            "upload_time": "2025-09-05T12:50:32",
            "upload_time_iso_8601": "2025-09-05T12:50:32.777542Z",
            "url": "https://files.pythonhosted.org/packages/21/9c/980b01f50d51345dd513047e3ba9e96468134b9181319093e61db1c47188/setproctitle-1.3.7-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86b482cd0c86e6d1c4538e1a7eb908c7517721513b801dff4ba3f98ef816a240",
                "md5": "7825488083a348394fafe143d4e57e4c",
                "sha256": "e7c5bfe4228ea22373e3025965d1a4116097e555ee3436044f5c954a5e63ac45"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7825488083a348394fafe143d4e57e4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 35589,
            "upload_time": "2025-09-05T12:50:34",
            "upload_time_iso_8601": "2025-09-05T12:50:34.130688Z",
            "url": "https://files.pythonhosted.org/packages/86/b4/82cd0c86e6d1c4538e1a7eb908c7517721513b801dff4ba3f98ef816a240/setproctitle-1.3.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a4f9f6b2a7417fd45673037554021c888b31247f7594ff4bd2239918c5cd6d0",
                "md5": "c7514c5bdd2b3bdd9e910ac0bc3daead",
                "sha256": "585edf25e54e21a94ccb0fe81ad32b9196b69ebc4fc25f81da81fb8a50cca9e4"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c7514c5bdd2b3bdd9e910ac0bc3daead",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 37698,
            "upload_time": "2025-09-05T12:50:35",
            "upload_time_iso_8601": "2025-09-05T12:50:35.524900Z",
            "url": "https://files.pythonhosted.org/packages/8a/4f/9f6b2a7417fd45673037554021c888b31247f7594ff4bd2239918c5cd6d0/setproctitle-1.3.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2092927b7d4744aac214d149c892cb5fa6dc6f49cfa040cb2b0a844acd63dcaf",
                "md5": "44f02a2141648290c5b4d4a0079bff5b",
                "sha256": "96c38cdeef9036eb2724c2210e8d0b93224e709af68c435d46a4733a3675fee1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "44f02a2141648290c5b4d4a0079bff5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 34201,
            "upload_time": "2025-09-05T12:50:36",
            "upload_time_iso_8601": "2025-09-05T12:50:36.697192Z",
            "url": "https://files.pythonhosted.org/packages/20/92/927b7d4744aac214d149c892cb5fa6dc6f49cfa040cb2b0a844acd63dcaf/setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a0cfd4901db5ba4b9d9013e62f61d9c18d52290497f956745cd3e91b0d80f90",
                "md5": "04533259255cb2818173677820363b6d",
                "sha256": "45e3ef48350abb49cf937d0a8ba15e42cee1e5ae13ca41a77c66d1abc27a5070"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "04533259255cb2818173677820363b6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 35801,
            "upload_time": "2025-09-05T12:50:38",
            "upload_time_iso_8601": "2025-09-05T12:50:38.314274Z",
            "url": "https://files.pythonhosted.org/packages/0a/0c/fd4901db5ba4b9d9013e62f61d9c18d52290497f956745cd3e91b0d80f90/setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7e354b496ac724e60e61cc3447f02690105901ca6d90da0377dffe49ff99fc7",
                "md5": "b7580566cc71e352374a7f4f163a4bea",
                "sha256": "1fae595d032b30dab4d659bece20debd202229fce12b55abab978b7f30783d73"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7580566cc71e352374a7f4f163a4bea",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 33958,
            "upload_time": "2025-09-05T12:50:39",
            "upload_time_iso_8601": "2025-09-05T12:50:39.841443Z",
            "url": "https://files.pythonhosted.org/packages/e7/e3/54b496ac724e60e61cc3447f02690105901ca6d90da0377dffe49ff99fc7/setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaa8c84bb045ebf8c6fdc7f7532319e86f8380d14bbd3084e6348df56bdfe6fd",
                "md5": "e833f99b0d17036b9a93bd075da768ac",
                "sha256": "02432f26f5d1329ab22279ff863c83589894977063f59e6c4b4845804a08f8c2"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "e833f99b0d17036b9a93bd075da768ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 12745,
            "upload_time": "2025-09-05T12:50:41",
            "upload_time_iso_8601": "2025-09-05T12:50:41.377357Z",
            "url": "https://files.pythonhosted.org/packages/ea/a8/c84bb045ebf8c6fdc7f7532319e86f8380d14bbd3084e6348df56bdfe6fd/setproctitle-1.3.7-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08b63a5a4f9952972791a9114ac01dfc123f0df79903577a3e0a7a404a695586",
                "md5": "925fddb8ee3a8a839def08b20dcdf329",
                "sha256": "cbc388e3d86da1f766d8fc2e12682e446064c01cea9f88a88647cfe7c011de6a"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "925fddb8ee3a8a839def08b20dcdf329",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 13469,
            "upload_time": "2025-09-05T12:50:42",
            "upload_time_iso_8601": "2025-09-05T12:50:42.670981Z",
            "url": "https://files.pythonhosted.org/packages/08/b6/3a5a4f9952972791a9114ac01dfc123f0df79903577a3e0a7a404a695586/setproctitle-1.3.7-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "370c75e5f2685a5e3eda0b39a8b158d6d8895d6daf3ba86dec9e3ba021510272",
                "md5": "290fe21e11bad18d86afceb377ffc6b5",
                "sha256": "52b054a61c99d1b72fba58b7f5486e04b20fefc6961cd76722b424c187f362ed"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "290fe21e11bad18d86afceb377ffc6b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 12731,
            "upload_time": "2025-09-05T12:50:43",
            "upload_time_iso_8601": "2025-09-05T12:50:43.955547Z",
            "url": "https://files.pythonhosted.org/packages/37/0c/75e5f2685a5e3eda0b39a8b158d6d8895d6daf3ba86dec9e3ba021510272/setproctitle-1.3.7-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2aeacddbce90d1361e1786e1fb421bc25baeb0c22ef244ee5d0176511769ec8",
                "md5": "a7da9f556f6eee0f7819041bc8b16922",
                "sha256": "5818e4080ac04da1851b3ec71e8a0f64e3748bf9849045180566d8b736702416"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a7da9f556f6eee0f7819041bc8b16922",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 13464,
            "upload_time": "2025-09-05T12:50:45",
            "upload_time_iso_8601": "2025-09-05T12:50:45.057064Z",
            "url": "https://files.pythonhosted.org/packages/d2/ae/acddbce90d1361e1786e1fb421bc25baeb0c22ef244ee5d0176511769ec8/setproctitle-1.3.7-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adec9a07f29dd3ecbcf1573145ea1da9ad8cfb3e2d46856dab8da5b1ba118b68",
                "md5": "ab9a7a0b598d30f09f05f33219fc6b53",
                "sha256": "376761125ab5dab822d40eaa7d9b7e876627ecd41de8fa5336713b611b47ccef"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ab9a7a0b598d30f09f05f33219fc6b53",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17838,
            "upload_time": "2025-09-05T12:50:46",
            "upload_time_iso_8601": "2025-09-05T12:50:46.017154Z",
            "url": "https://files.pythonhosted.org/packages/ad/ec/9a07f29dd3ecbcf1573145ea1da9ad8cfb3e2d46856dab8da5b1ba118b68/setproctitle-1.3.7-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9b01d8ad274beed2809b437f1f7ab7fcf69080983111137139d156d33b34c31",
                "md5": "5cd659ca93b4ddae18ebcbe51f8600e2",
                "sha256": "2a4e03bd9aa5d10b8702f00ec1b740691da96b5003432f3000d60c56f1c2b4d3"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5cd659ca93b4ddae18ebcbe51f8600e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 12849,
            "upload_time": "2025-09-05T12:50:47",
            "upload_time_iso_8601": "2025-09-05T12:50:47.151457Z",
            "url": "https://files.pythonhosted.org/packages/d9/b0/1d8ad274beed2809b437f1f7ab7fcf69080983111137139d156d33b34c31/setproctitle-1.3.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6a62af99baf5440b3785c2bbae9731e35a16ad52116a02d3819165ebcbf8756",
                "md5": "f4061b6e34a7de1a4197a8ab176866e5",
                "sha256": "47d36e418ab86b3bc7946e27155e281a743274d02cd7e545f5d628a2875d32f9"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4061b6e34a7de1a4197a8ab176866e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 32235,
            "upload_time": "2025-09-05T12:50:48",
            "upload_time_iso_8601": "2025-09-05T12:50:48.831542Z",
            "url": "https://files.pythonhosted.org/packages/a6/a6/2af99baf5440b3785c2bbae9731e35a16ad52116a02d3819165ebcbf8756/setproctitle-1.3.7-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd33f466dc6cce13065257ea155fc81eb2db6688da6f861b0bd5c24f9d7a7387",
                "md5": "2a733d993b86df95649b3dcfebc4f100",
                "sha256": "a74714ce836914063c36c8a26ae11383cf8a379698c989fe46883e38a8faa5be"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a733d993b86df95649b3dcfebc4f100",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 33210,
            "upload_time": "2025-09-05T12:50:50",
            "upload_time_iso_8601": "2025-09-05T12:50:50.166081Z",
            "url": "https://files.pythonhosted.org/packages/cd/33/f466dc6cce13065257ea155fc81eb2db6688da6f861b0bd5c24f9d7a7387/setproctitle-1.3.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56d25a642f949b7d2f729ad277404855523f7e772dab31ce8ffa9494f1f90625",
                "md5": "280f1067233d3e901ca44f4cd5690ce9",
                "sha256": "f2ae6c3f042fc866cc0fa2bc35ae00d334a9fa56c9d28dfc47d1b4f5ed23e375"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "280f1067233d3e901ca44f4cd5690ce9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34971,
            "upload_time": "2025-09-05T12:50:51",
            "upload_time_iso_8601": "2025-09-05T12:50:51.627810Z",
            "url": "https://files.pythonhosted.org/packages/56/d2/5a642f949b7d2f729ad277404855523f7e772dab31ce8ffa9494f1f90625/setproctitle-1.3.7-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa5da4843f735061f5d3727f5dea09bbe6ee9c66909bcb6139dad1e4eb92c737",
                "md5": "f9c1b83fa39453480ace9c5afb294359",
                "sha256": "be7e01f3ad8d0e43954bebdb3088cb466633c2f4acdd88647e7fbfcfe9b9729f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9c1b83fa39453480ace9c5afb294359",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 31927,
            "upload_time": "2025-09-05T12:50:53",
            "upload_time_iso_8601": "2025-09-05T12:50:53.411511Z",
            "url": "https://files.pythonhosted.org/packages/aa/5d/a4843f735061f5d3727f5dea09bbe6ee9c66909bcb6139dad1e4eb92c737/setproctitle-1.3.7-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e111368ceff5ab4d904d142ccf2bcca30df0edb81f8f1c0df7e89829c72e59a5",
                "md5": "f57adc45645747c01fa7ae0a2a5606e1",
                "sha256": "35a2cabcfdea4643d7811cfe9f3d92366d282b38ef5e7e93e25dafb6f97b0a59"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f57adc45645747c01fa7ae0a2a5606e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 33292,
            "upload_time": "2025-09-05T12:50:54",
            "upload_time_iso_8601": "2025-09-05T12:50:54.716379Z",
            "url": "https://files.pythonhosted.org/packages/e1/11/368ceff5ab4d904d142ccf2bcca30df0edb81f8f1c0df7e89829c72e59a5/setproctitle-1.3.7-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "071c908fdc95173d43cc36c07b8958a624839d68d1b79bc44be583066afcb174",
                "md5": "f780a38010d31b3b628988b39824daa8",
                "sha256": "8ce2e39a40fca82744883834683d833e0eb28623752cc1c21c2ec8f06a890b39"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f780a38010d31b3b628988b39824daa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 31419,
            "upload_time": "2025-09-05T12:50:56",
            "upload_time_iso_8601": "2025-09-05T12:50:56.342533Z",
            "url": "https://files.pythonhosted.org/packages/07/1c/908fdc95173d43cc36c07b8958a624839d68d1b79bc44be583066afcb174/setproctitle-1.3.7-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7023a5af910de80f4da73bdbeab9c1b7aca939b91a184012b4f0fbb55f3fc4a9",
                "md5": "f9f7d5ea2373d57a04be61d0b067b82a",
                "sha256": "6f1be447456fe1e16c92f5fb479404a850d8f4f4ff47192fde14a59b0bae6a0a"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "f9f7d5ea2373d57a04be61d0b067b82a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 12458,
            "upload_time": "2025-09-05T12:50:57",
            "upload_time_iso_8601": "2025-09-05T12:50:57.689779Z",
            "url": "https://files.pythonhosted.org/packages/70/23/a5af910de80f4da73bdbeab9c1b7aca939b91a184012b4f0fbb55f3fc4a9/setproctitle-1.3.7-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2923017c75dfa7c6adebec590ec5da1473552176eed1d26957db57a3901e76d6",
                "md5": "023aee19e43a00c7711bb888dfdf5f7b",
                "sha256": "5ce2613e1361959bff81317dc30a60adb29d8132b6159608a783878fc4bc4bbc"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "023aee19e43a00c7711bb888dfdf5f7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 13141,
            "upload_time": "2025-09-05T12:50:59",
            "upload_time_iso_8601": "2025-09-05T12:50:59.306374Z",
            "url": "https://files.pythonhosted.org/packages/29/23/017c75dfa7c6adebec590ec5da1473552176eed1d26957db57a3901e76d6/setproctitle-1.3.7-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a85f738ca1f317fd68c46a3666ae5d777f372b0c70f14317701d15941d75e62",
                "md5": "821cc8a69882aadcaf69f9715b842477",
                "sha256": "deda9d79d1eb37b688729cac2dba0c137e992ebea960eadb7c2c255524c869e0"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "821cc8a69882aadcaf69f9715b842477",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 18069,
            "upload_time": "2025-09-05T12:51:00",
            "upload_time_iso_8601": "2025-09-05T12:51:00.803034Z",
            "url": "https://files.pythonhosted.org/packages/9a/85/f738ca1f317fd68c46a3666ae5d777f372b0c70f14317701d15941d75e62/setproctitle-1.3.7-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44cbded5a199877f55a2af2f0d770384c0cd6fb199c70c16c749df7d89d9ebfa",
                "md5": "5a62630e283e29a3437442f9d8751602",
                "sha256": "a93e4770ac22794cfa651ee53f092d7de7105c76b9fc088bb81ca0dcf698f704"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5a62630e283e29a3437442f9d8751602",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 13091,
            "upload_time": "2025-09-05T12:51:03",
            "upload_time_iso_8601": "2025-09-05T12:51:03.920937Z",
            "url": "https://files.pythonhosted.org/packages/44/cb/ded5a199877f55a2af2f0d770384c0cd6fb199c70c16c749df7d89d9ebfa/setproctitle-1.3.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bb71abfcfe0de1b50c96002e7ecfd6a2c109798bc4284f0dc02635c7da22e9e",
                "md5": "5c65403d6d2ee2003e8969a977e22490",
                "sha256": "134e7f66703a1d92c0a9a0a417c580f2cc04b93d31d3fc0dd43c3aa194b706e1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c65403d6d2ee2003e8969a977e22490",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31551,
            "upload_time": "2025-09-05T12:51:05",
            "upload_time_iso_8601": "2025-09-05T12:51:05.088821Z",
            "url": "https://files.pythonhosted.org/packages/7b/b7/1abfcfe0de1b50c96002e7ecfd6a2c109798bc4284f0dc02635c7da22e9e/setproctitle-1.3.7-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67fa2b25384c154bfb36112d7ec377281776e337e5124590bd96c4f3f076285a",
                "md5": "434e2da4617b6bc9f5ebd4530e9eae57",
                "sha256": "9796732a040f617fc933f9531c9a84bb73c5c27b8074abbe52907076e804b2b7"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "434e2da4617b6bc9f5ebd4530e9eae57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 32489,
            "upload_time": "2025-09-05T12:51:06",
            "upload_time_iso_8601": "2025-09-05T12:51:06.207121Z",
            "url": "https://files.pythonhosted.org/packages/67/fa/2b25384c154bfb36112d7ec377281776e337e5124590bd96c4f3f076285a/setproctitle-1.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c24e4f2a3467cd6322462134f1918a565b99e8bd43c1d47040082e874a3f512",
                "md5": "e670de5d4bbc3da6059e447abb9f53fb",
                "sha256": "ff3c1c32382fb71a200db8bab3df22f32e6ac7ec3170e92fa5b542cf42eed9a2"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e670de5d4bbc3da6059e447abb9f53fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34328,
            "upload_time": "2025-09-05T12:51:07",
            "upload_time_iso_8601": "2025-09-05T12:51:07.504812Z",
            "url": "https://files.pythonhosted.org/packages/3c/24/e4f2a3467cd6322462134f1918a565b99e8bd43c1d47040082e874a3f512/setproctitle-1.3.7-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33757ca8f54e35c62f99562fcf1e052d4f162f310e2e14ab3e34d5965b5a7f71",
                "md5": "a52b7566549e36b9ca3391cdf320831b",
                "sha256": "01f27b5b72505b304152cb0bd7ff410cc4f2d69ac70c21a7fdfa64400a68642d"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a52b7566549e36b9ca3391cdf320831b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31744,
            "upload_time": "2025-09-05T12:51:08",
            "upload_time_iso_8601": "2025-09-05T12:51:08.698996Z",
            "url": "https://files.pythonhosted.org/packages/33/75/7ca8f54e35c62f99562fcf1e052d4f162f310e2e14ab3e34d5965b5a7f71/setproctitle-1.3.7-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1974080caa13f1dad1ffab1ef7b7dbef97f278c23d4aa45bdbd209aac54e9b21",
                "md5": "b4768824321ab72d5dcd3b022702f2a9",
                "sha256": "80b6a562cbc92b289c28f34ce709a16b26b1696e9b9a0542a675ce3a788bdf3f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b4768824321ab72d5dcd3b022702f2a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 33100,
            "upload_time": "2025-09-05T12:51:10",
            "upload_time_iso_8601": "2025-09-05T12:51:10.530828Z",
            "url": "https://files.pythonhosted.org/packages/19/74/080caa13f1dad1ffab1ef7b7dbef97f278c23d4aa45bdbd209aac54e9b21/setproctitle-1.3.7-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7bc478b45ccbcf4be609d4ae5b46b4601960d7a7194cca2075cfae57b0cbb76",
                "md5": "9268e337101700716e23d267911bebec",
                "sha256": "c4fb90174d176473122e7eef7c6492d53761826f34ff61c81a1c1d66905025d3"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9268e337101700716e23d267911bebec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31233,
            "upload_time": "2025-09-05T12:51:12",
            "upload_time_iso_8601": "2025-09-05T12:51:12.030362Z",
            "url": "https://files.pythonhosted.org/packages/d7/bc/478b45ccbcf4be609d4ae5b46b4601960d7a7194cca2075cfae57b0cbb76/setproctitle-1.3.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad42cdf5c8fef33c500d6b5392d9f0a23a4e4f22c944dba77996591e2cce2dd2",
                "md5": "07c55ad2c60f21e247a51ec4129d6f5c",
                "sha256": "c77b3f58a35f20363f6e0a1219b367fbf7e2d2efe3d2c32e1f796447e6061c10"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "07c55ad2c60f21e247a51ec4129d6f5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 12562,
            "upload_time": "2025-09-05T12:51:13",
            "upload_time_iso_8601": "2025-09-05T12:51:13.641059Z",
            "url": "https://files.pythonhosted.org/packages/ad/42/cdf5c8fef33c500d6b5392d9f0a23a4e4f22c944dba77996591e2cce2dd2/setproctitle-1.3.7-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f5484473a2666270ca615e308edcae9ad623591c29ec4f0b95559e9e4922eb9",
                "md5": "7247d0b53b3fe34129467b2c81ee7cc9",
                "sha256": "318ddcf88dafddf33039ad41bc933e1c49b4cb196fe1731a209b753909591680"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7247d0b53b3fe34129467b2c81ee7cc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 13242,
            "upload_time": "2025-09-05T12:51:14",
            "upload_time_iso_8601": "2025-09-05T12:51:14.915652Z",
            "url": "https://files.pythonhosted.org/packages/3f/54/84473a2666270ca615e308edcae9ad623591c29ec4f0b95559e9e4922eb9/setproctitle-1.3.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "348aaff5506ce89bc3168cb492b18ba45573158d528184e8a9759a05a09088a9",
                "md5": "98f5ff8be5e977df1785e10cba4e624f",
                "sha256": "eb440c5644a448e6203935ed60466ec8d0df7278cd22dc6cf782d07911bcbea6"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "98f5ff8be5e977df1785e10cba4e624f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 12654,
            "upload_time": "2025-09-05T12:51:17",
            "upload_time_iso_8601": "2025-09-05T12:51:17.141031Z",
            "url": "https://files.pythonhosted.org/packages/34/8a/aff5506ce89bc3168cb492b18ba45573158d528184e8a9759a05a09088a9/setproctitle-1.3.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41895b6f2faedd6ced3d3c085a5efbd91380fb1f61f4c12bc42acad37932f4e9",
                "md5": "aa5f93be8de06a1a0b3e1147c3734b3f",
                "sha256": "502b902a0e4c69031b87870ff4986c290ebbb12d6038a70639f09c331b18efb2"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa5f93be8de06a1a0b3e1147c3734b3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 14284,
            "upload_time": "2025-09-05T12:51:18",
            "upload_time_iso_8601": "2025-09-05T12:51:18.393533Z",
            "url": "https://files.pythonhosted.org/packages/41/89/5b6f2faedd6ced3d3c085a5efbd91380fb1f61f4c12bc42acad37932f4e9/setproctitle-1.3.7-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ac04312fed3ca393a29589603fd48f17937b4ed0638b923bac75a728382e730",
                "md5": "74d7883e683950816985566b89e99182",
                "sha256": "f6f268caeabb37ccd824d749e7ce0ec6337c4ed954adba33ec0d90cc46b0ab78"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74d7883e683950816985566b89e99182",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13282,
            "upload_time": "2025-09-05T12:51:19",
            "upload_time_iso_8601": "2025-09-05T12:51:19.703059Z",
            "url": "https://files.pythonhosted.org/packages/0a/c0/4312fed3ca393a29589603fd48f17937b4ed0638b923bac75a728382e730/setproctitle-1.3.7-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c35b5e1c117ac84e3cefcf8d7a7f6b2461795a87e20869da065a5c087149060b",
                "md5": "7888aea5e1c50319f419dd1fdee6197b",
                "sha256": "b1cac6a4b0252b8811d60b6d8d0f157c0fdfed379ac89c25a914e6346cf355a1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7888aea5e1c50319f419dd1fdee6197b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 12587,
            "upload_time": "2025-09-05T12:51:21",
            "upload_time_iso_8601": "2025-09-05T12:51:21.195625Z",
            "url": "https://files.pythonhosted.org/packages/c3/5b/5e1c117ac84e3cefcf8d7a7f6b2461795a87e20869da065a5c087149060b/setproctitle-1.3.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7302b9eadc226195dcfa90eed37afe56b5dd6fa2f0e5220ab8b7867b8862b926",
                "md5": "3abc8cb97867a41a7e5f5a9c95636418",
                "sha256": "f1704c9e041f2b1dc38f5be4552e141e1432fba3dd52c72eeffd5bc2db04dc65"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3abc8cb97867a41a7e5f5a9c95636418",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 14286,
            "upload_time": "2025-09-05T12:51:22",
            "upload_time_iso_8601": "2025-09-05T12:51:22.610025Z",
            "url": "https://files.pythonhosted.org/packages/73/02/b9eadc226195dcfa90eed37afe56b5dd6fa2f0e5220ab8b7867b8862b926/setproctitle-1.3.7-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28261be1d2a53c2a91ec48fa2ff4a409b395f836798adf194d99de9c059419ea",
                "md5": "0c440ce70e602b675479c24d666ddae9",
                "sha256": "b08b61976ffa548bd5349ce54404bf6b2d51bd74d4f1b241ed1b0f25bce09c3a"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0c440ce70e602b675479c24d666ddae9",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 13282,
            "upload_time": "2025-09-05T12:51:24",
            "upload_time_iso_8601": "2025-09-05T12:51:24.094525Z",
            "url": "https://files.pythonhosted.org/packages/28/26/1be1d2a53c2a91ec48fa2ff4a409b395f836798adf194d99de9c059419ea/setproctitle-1.3.7-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d4849393a96a2eef1ab418b17475fb92b8fcfad83d099e678751b05472e69de",
                "md5": "422cd04321b1aa0f4b56d51d10ae5bb8",
                "sha256": "bc2bc917691c1537d5b9bca1468437176809c7e11e5694ca79a9ca12345dcb9e"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.7.tar.gz",
            "has_sig": false,
            "md5_digest": "422cd04321b1aa0f4b56d51d10ae5bb8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 27002,
            "upload_time": "2025-09-05T12:51:25",
            "upload_time_iso_8601": "2025-09-05T12:51:25.278257Z",
            "url": "https://files.pythonhosted.org/packages/8d/48/49393a96a2eef1ab418b17475fb92b8fcfad83d099e678751b05472e69de/setproctitle-1.3.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-05 12:51:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dvarrazzo",
    "github_project": "py-setproctitle",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "setproctitle"
}
        
Elapsed time: 9.65390s