setproctitle


Namesetproctitle JSON
Version 1.3.2 PyPI version JSON
download
home_pagehttps://github.com/dvarrazzo/py-setproctitle
SummaryA Python module to customize the process title
upload_time2022-08-11 11:13:25
maintainer
docs_urlNone
authorDaniele Varrazzo
requires_python>=3.7
licenseBSD
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.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": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Daniele Varrazzo",
    "author_email": "daniele.varrazzo@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b5/47/ac709629ddb9779fee29b7d10ae9580f60a4b37e49bce72360ddf9a79cdc/setproctitle-1.3.2.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.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",
    "summary": "A Python module to customize the process title",
    "version": "1.3.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "7e1c43743bcfc08828fd8971eb852e27",
                "sha256": "288943dec88e178bb2fd868adf491197cc0fc8b6810416b1c6775e686bab87fe"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "7e1c43743bcfc08828fd8971eb852e27",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 16870,
            "upload_time": "2022-08-11T11:09:46",
            "upload_time_iso_8601": "2022-08-11T11:09:46.018400Z",
            "url": "https://files.pythonhosted.org/packages/04/a9/19a77c1ead9b0b3e9e366aafb64d8cdf31ed25e42a781dded07907332300/setproctitle-1.3.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "53349eed118f0f5295164ab9c59e1b89",
                "sha256": "630f6fe5e24a619ccf970c78e084319ee8be5be253ecc9b5b216b0f474f5ef18"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "53349eed118f0f5295164ab9c59e1b89",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 11287,
            "upload_time": "2022-08-11T11:09:49",
            "upload_time_iso_8601": "2022-08-11T11:09:49.282228Z",
            "url": "https://files.pythonhosted.org/packages/20/a3/8d19f528ffbb3496040bc0cbef02a8678a102b9c04effd55ac1fcd7d2c07/setproctitle-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6b3758d4dce9e39db50a33c8929219ea",
                "sha256": "6c877691b90026670e5a70adfbcc735460a9f4c274d35ec5e8a43ce3f8443005"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "6b3758d4dce9e39db50a33c8929219ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 31227,
            "upload_time": "2022-08-11T11:09:51",
            "upload_time_iso_8601": "2022-08-11T11:09:51.950121Z",
            "url": "https://files.pythonhosted.org/packages/43/b1/c951d93fb88f684f65e7160b918fff77c0ac348d240839e8a53b1b05b119/setproctitle-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8d169762d7cbc4092c907dbd3018b171",
                "sha256": "7a55fe05f15c10e8c705038777656fe45e3bd676d49ad9ac8370b75c66dd7cd7"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "8d169762d7cbc4092c907dbd3018b171",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 32574,
            "upload_time": "2022-08-11T11:09:55",
            "upload_time_iso_8601": "2022-08-11T11:09:55.212031Z",
            "url": "https://files.pythonhosted.org/packages/49/a3/0c011499a8e0ee3dd38d73b1e32e4ca4f2cb903b6d317f4b96d78787bde8/setproctitle-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7d957ee5223cfcc0530cde1f7e2bcb47",
                "sha256": "ab45146c71ca6592c9cc8b354a2cc9cc4843c33efcbe1d245d7d37ce9696552d"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "7d957ee5223cfcc0530cde1f7e2bcb47",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29690,
            "upload_time": "2022-08-11T11:09:59",
            "upload_time_iso_8601": "2022-08-11T11:09:59.349576Z",
            "url": "https://files.pythonhosted.org/packages/89/78/670e28d65a1c70a0e1a06ea7c10ef57235d0e303d3019fedef7ce801e0f8/setproctitle-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a26128935893245c22c5d54e4a317eb5",
                "sha256": "e00c9d5c541a2713ba0e657e0303bf96ddddc412ef4761676adc35df35d7c246"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "a26128935893245c22c5d54e4a317eb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30728,
            "upload_time": "2022-08-11T11:10:10",
            "upload_time_iso_8601": "2022-08-11T11:10:10.637864Z",
            "url": "https://files.pythonhosted.org/packages/46/b6/d1a2fc143997d89dc2dd9b55646fddb702699624510d619e101c8e149bdf/setproctitle-1.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "34719d5ab7c1932b126e674aa85c68bd",
                "sha256": "265ecbe2c6eafe82e104f994ddd7c811520acdd0647b73f65c24f51374cf9494"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": true,
            "md5_digest": "34719d5ab7c1932b126e674aa85c68bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 38540,
            "upload_time": "2022-08-11T11:10:16",
            "upload_time_iso_8601": "2022-08-11T11:10:16.538042Z",
            "url": "https://files.pythonhosted.org/packages/3a/e6/132696161734102966b1ad558e05b0ff65ed9d192f1e781b0d55cec88d64/setproctitle-1.3.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0b9fd4ed8f437b3d737a09b0ed412b10",
                "sha256": "c2c46200656280a064073447ebd363937562debef329482fd7e570c8d498f806"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": true,
            "md5_digest": "0b9fd4ed8f437b3d737a09b0ed412b10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 36970,
            "upload_time": "2022-08-11T11:10:21",
            "upload_time_iso_8601": "2022-08-11T11:10:21.626432Z",
            "url": "https://files.pythonhosted.org/packages/87/88/106215fddc0fbb64337715406d5f5f97f999a3c7de98a7476d39609332a0/setproctitle-1.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1f05380cf51b2a5fdae843a468ccf22d",
                "sha256": "fa2f50678f04fda7a75d0fe5dd02bbdd3b13cbe6ed4cf626e4472a7ccf47ae94"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "1f05380cf51b2a5fdae843a468ccf22d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 39842,
            "upload_time": "2022-08-11T11:10:25",
            "upload_time_iso_8601": "2022-08-11T11:10:25.251297Z",
            "url": "https://files.pythonhosted.org/packages/ea/85/a5df3ef79b642a188ace9f73fd9b2527bd2549a155aaa3e7d6a5bafd3061/setproctitle-1.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e0e37279c86cb192ece8cb18b67b27f0",
                "sha256": "7f2719a398e1a2c01c2a63bf30377a34d0b6ef61946ab9cf4d550733af8f1ef1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "e0e37279c86cb192ece8cb18b67b27f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 38202,
            "upload_time": "2022-08-11T11:10:29",
            "upload_time_iso_8601": "2022-08-11T11:10:29.050386Z",
            "url": "https://files.pythonhosted.org/packages/45/8c/295ff4d931fa9e45510eb29d772aed93c5b1c365f5e54a55129a91c96eba/setproctitle-1.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ad3a8b5c08feab4b741f628d33d999b6",
                "sha256": "e425be62524dc0c593985da794ee73eb8a17abb10fe692ee43bb39e201d7a099"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-win32.whl",
            "has_sig": true,
            "md5_digest": "ad3a8b5c08feab4b741f628d33d999b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10989,
            "upload_time": "2022-08-11T11:10:34",
            "upload_time_iso_8601": "2022-08-11T11:10:34.647922Z",
            "url": "https://files.pythonhosted.org/packages/55/d4/6cc75bf9aee7f4f1cb557f05d4ced06b33315d39f0c5e3f2a02000c5b86f/setproctitle-1.3.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1d59be01883a0a1bb457c3042327dc91",
                "sha256": "e85e50b9c67854f89635a86247412f3ad66b132a4d8534ac017547197c88f27d"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "1d59be01883a0a1bb457c3042327dc91",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 11737,
            "upload_time": "2022-08-11T11:10:40",
            "upload_time_iso_8601": "2022-08-11T11:10:40.646348Z",
            "url": "https://files.pythonhosted.org/packages/9f/0b/207ccb4f375b9fc51c9d7f4df259055d608fa9df4a7bd9125ba1a296ad78/setproctitle-1.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4a590accbd881e38cbe55f5659db808e",
                "sha256": "92c626edc66169a1b09e9541b9c0c9f10488447d8a2b1d87c8f0672e771bc927"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "4a590accbd881e38cbe55f5659db808e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 11251,
            "upload_time": "2022-08-11T11:10:46",
            "upload_time_iso_8601": "2022-08-11T11:10:46.044191Z",
            "url": "https://files.pythonhosted.org/packages/9f/86/2af288f58d44bd79b9840e8365da0e403c8d76665d5ed16b0b07016a73bf/setproctitle-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "935a0745c20913a8fd942f5ce60b036e",
                "sha256": "710e16fa3bade3b026907e4a5e841124983620046166f355bbb84be364bf2a02"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "935a0745c20913a8fd942f5ce60b036e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30941,
            "upload_time": "2022-08-11T11:10:53",
            "upload_time_iso_8601": "2022-08-11T11:10:53.048291Z",
            "url": "https://files.pythonhosted.org/packages/9e/31/a0f29c88617705b6dc7a72b6cb7a270f1c15b7f53ae99adc592f506fd151/setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "63e961eae07cd73ed05127dcae3e7f49",
                "sha256": "1f29b75e86260b0ab59adb12661ef9f113d2f93a59951373eb6d68a852b13e83"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "63e961eae07cd73ed05127dcae3e7f49",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 32196,
            "upload_time": "2022-08-11T11:10:56",
            "upload_time_iso_8601": "2022-08-11T11:10:56.878458Z",
            "url": "https://files.pythonhosted.org/packages/6a/40/ee7b7fcf19ef1befc3c716a2ca8b6fa8dd35815b7eef838a14bf135275d3/setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "45567efedde521ff9f3be916d1527409",
                "sha256": "1c8d9650154afaa86a44ff195b7b10d683c73509d085339d174e394a22cccbb9"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "45567efedde521ff9f3be916d1527409",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29397,
            "upload_time": "2022-08-11T11:10:59",
            "upload_time_iso_8601": "2022-08-11T11:10:59.302181Z",
            "url": "https://files.pythonhosted.org/packages/22/74/bdedbb32ca2b85a6eb23afacfd83cf4b4a9334d91e33b178812cf1d3db58/setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "30f5a3eb57a62d3d1466a46495515a92",
                "sha256": "f0452282258dfcc01697026a8841258dd2057c4438b43914b611bccbcd048f10"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "30f5a3eb57a62d3d1466a46495515a92",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30404,
            "upload_time": "2022-08-11T11:11:03",
            "upload_time_iso_8601": "2022-08-11T11:11:03.490873Z",
            "url": "https://files.pythonhosted.org/packages/4b/b1/95367ba12415e48f331379032fe8060c56fbddc0b74838d1c6668e031a44/setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "57e08847f5f167bd496ac95ccfa9d11d",
                "sha256": "e49ae693306d7624015f31cb3e82708916759d592c2e5f72a35c8f4cc8aef258"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": true,
            "md5_digest": "57e08847f5f167bd496ac95ccfa9d11d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 39235,
            "upload_time": "2022-08-11T11:11:06",
            "upload_time_iso_8601": "2022-08-11T11:11:06.550242Z",
            "url": "https://files.pythonhosted.org/packages/af/6b/871ae1b3c7b8c475fc6ad7a1ad6b3bc4465771c2772c7fb5520400f3d4a9/setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "908d2190dc066318849a635966b3a894",
                "sha256": "1ff863a20d1ff6ba2c24e22436a3daa3cd80be1dfb26891aae73f61b54b04aca"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": true,
            "md5_digest": "908d2190dc066318849a635966b3a894",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 37587,
            "upload_time": "2022-08-11T11:11:09",
            "upload_time_iso_8601": "2022-08-11T11:11:09.371548Z",
            "url": "https://files.pythonhosted.org/packages/9c/67/e8872c89efca609954185f1089d596b206a33d6a8e31f7295a4b5cd05468/setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "20edfeee0514ae35a53c5cbed9391fec",
                "sha256": "55ce1e9925ce1765865442ede9dca0ba9bde10593fcd570b1f0fa25d3ec6b31c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "20edfeee0514ae35a53c5cbed9391fec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 40642,
            "upload_time": "2022-08-11T11:11:14",
            "upload_time_iso_8601": "2022-08-11T11:11:14.000013Z",
            "url": "https://files.pythonhosted.org/packages/e8/63/21103403a459271b241340381c6763699597dccafc6b9dd6bf75451ab999/setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0c056fee704925217991b49a21aec9ad",
                "sha256": "7fe9df7aeb8c64db6c34fc3b13271a363475d77bc157d3f00275a53910cb1989"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "0c056fee704925217991b49a21aec9ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 38972,
            "upload_time": "2022-08-11T11:11:17",
            "upload_time_iso_8601": "2022-08-11T11:11:17.263084Z",
            "url": "https://files.pythonhosted.org/packages/39/2e/65a12b007d579a8d5fab6e50198a2ad7bbda9c6d304a69796a062426d913/setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1ac40ad8e8af28600ee6acfe65c31f25",
                "sha256": "e5c50e164cd2459bc5137c15288a9ef57160fd5cbf293265ea3c45efe7870865"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-win32.whl",
            "has_sig": true,
            "md5_digest": "1ac40ad8e8af28600ee6acfe65c31f25",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 10991,
            "upload_time": "2022-08-11T11:11:19",
            "upload_time_iso_8601": "2022-08-11T11:11:19.832880Z",
            "url": "https://files.pythonhosted.org/packages/1c/2c/dc514271ee4ecf16d7682762e7218cbe0556a189acb52dbd5092e8dc3889/setproctitle-1.3.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c278f4322fd6679a71a957c6f188acbd",
                "sha256": "a499fff50387c1520c085a07578a000123f519e5f3eee61dd68e1d301659651f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp37-cp37m-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "c278f4322fd6679a71a957c6f188acbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 11733,
            "upload_time": "2022-08-11T11:11:25",
            "upload_time_iso_8601": "2022-08-11T11:11:25.294296Z",
            "url": "https://files.pythonhosted.org/packages/d2/53/c30a9ceaea3dd897635fdc34f5e859fe4c46924dbf3e428c1a06674edc3b/setproctitle-1.3.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "dd853e2c3e663d4e1a5e6fe1dd8787f8",
                "sha256": "5b932c3041aa924163f4aab970c2f0e6b4d9d773f4d50326e0ea1cd69240e5c5"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "dd853e2c3e663d4e1a5e6fe1dd8787f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 16867,
            "upload_time": "2022-08-11T11:11:27",
            "upload_time_iso_8601": "2022-08-11T11:11:27.070453Z",
            "url": "https://files.pythonhosted.org/packages/09/7b/d8aa13b2ca77541a6ec99edfec4f6f9372c32016355001f16cb2ab691404/setproctitle-1.3.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fb89cec0fbe780ee3c73366becd7f186",
                "sha256": "f4bfc89bd33ebb8e4c0e9846a09b1f5a4a86f5cb7a317e75cc42fee1131b4f4f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "fb89cec0fbe780ee3c73366becd7f186",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 11288,
            "upload_time": "2022-08-11T11:11:31",
            "upload_time_iso_8601": "2022-08-11T11:11:31.876337Z",
            "url": "https://files.pythonhosted.org/packages/d5/6d/912d49dc1d007daa0d47c21b2d65fa31d97752bf879f9d18381baaf8c180/setproctitle-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b5e287c14c33e9a4a558ea1152b7623c",
                "sha256": "fcd3cf4286a60fdc95451d8d14e0389a6b4f5cebe02c7f2609325eb016535963"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "b5e287c14c33e9a4a558ea1152b7623c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31654,
            "upload_time": "2022-08-11T11:11:36",
            "upload_time_iso_8601": "2022-08-11T11:11:36.014515Z",
            "url": "https://files.pythonhosted.org/packages/71/53/f0e0b2e635ffaba4a1822a5a3c11acda4f6d997feed8692db7c5cc1502ad/setproctitle-1.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cdc632d92c4bed8c9458af4d1c5701d2",
                "sha256": "5fb4f769c02f63fac90989711a3fee83919f47ae9afd4758ced5d86596318c65"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "cdc632d92c4bed8c9458af4d1c5701d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 32989,
            "upload_time": "2022-08-11T11:11:40",
            "upload_time_iso_8601": "2022-08-11T11:11:40.291852Z",
            "url": "https://files.pythonhosted.org/packages/e5/94/dd65531001480c9ff83fd374d7e0b3c5343d8b17fc299c941097b8f5c552/setproctitle-1.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2861f71be6bf2103b65309ce56454449",
                "sha256": "5194b4969f82ea842a4f6af2f82cd16ebdc3f1771fb2771796e6add9835c1973"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "2861f71be6bf2103b65309ce56454449",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30049,
            "upload_time": "2022-08-11T11:11:42",
            "upload_time_iso_8601": "2022-08-11T11:11:42.638650Z",
            "url": "https://files.pythonhosted.org/packages/76/dd/f0b702d3a2ada49307b958e9cff6c3d9215a325da46380e983ddf23969bd/setproctitle-1.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "441193bb92caa361da01422c277ce961",
                "sha256": "1f0cde41857a644b7353a0060b5f94f7ba7cf593ebde5a1094da1be581ac9a31"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "441193bb92caa361da01422c277ce961",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31217,
            "upload_time": "2022-08-11T11:11:44",
            "upload_time_iso_8601": "2022-08-11T11:11:44.661822Z",
            "url": "https://files.pythonhosted.org/packages/ce/ea/da374494f0edede3bc098a747e308d40ba737e3b160d3ff46cce05f84c9a/setproctitle-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f621eee5a034cc286261c505fcaaef5a",
                "sha256": "9124bedd8006b0e04d4e8a71a0945da9b67e7a4ab88fdad7b1440dc5b6122c42"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": true,
            "md5_digest": "f621eee5a034cc286261c505fcaaef5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 38995,
            "upload_time": "2022-08-11T11:11:46",
            "upload_time_iso_8601": "2022-08-11T11:11:46.598821Z",
            "url": "https://files.pythonhosted.org/packages/82/0d/eecf43456f202bb8342bbe7a8e441f5e6245f99894c7955936acc67a4f2b/setproctitle-1.3.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "87f7df3cb1a328f3fd93450856f7e887",
                "sha256": "c8a09d570b39517de10ee5b718730e171251ce63bbb890c430c725c8c53d4484"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": true,
            "md5_digest": "87f7df3cb1a328f3fd93450856f7e887",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 37267,
            "upload_time": "2022-08-11T11:11:48",
            "upload_time_iso_8601": "2022-08-11T11:11:48.760716Z",
            "url": "https://files.pythonhosted.org/packages/29/0b/715f78956a4910dbf7c3aaa6a8246e5d225fdb4ac1127689d9ba6e6896be/setproctitle-1.3.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "98b6b9d89cfd31b3515fa9d86d5b68fe",
                "sha256": "8ff3c8cb26afaed25e8bca7b9dd0c1e36de71f35a3a0706b5c0d5172587a3827"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "98b6b9d89cfd31b3515fa9d86d5b68fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 40319,
            "upload_time": "2022-08-11T11:11:50",
            "upload_time_iso_8601": "2022-08-11T11:11:50.631825Z",
            "url": "https://files.pythonhosted.org/packages/a6/79/30829bdf3d8825000780f1b9ddcb3970898f30e8fd20c82744ad5ba92bf2/setproctitle-1.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f60d775891895f43ad1d2657e741a6b6",
                "sha256": "589be87172b238f839e19f146b9ea47c71e413e951ef0dc6db4218ddacf3c202"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "f60d775891895f43ad1d2657e741a6b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 38650,
            "upload_time": "2022-08-11T11:11:52",
            "upload_time_iso_8601": "2022-08-11T11:11:52.541111Z",
            "url": "https://files.pythonhosted.org/packages/5c/48/ac39c43ca8709b23f8410a6e483e89a836f02c082b77134441d12502f380/setproctitle-1.3.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "68858378e686f8cc65118cc4413df312",
                "sha256": "4749a2b0c9ac52f864d13cee94546606f92b981b50e46226f7f830a56a9dc8e1"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-win32.whl",
            "has_sig": true,
            "md5_digest": "68858378e686f8cc65118cc4413df312",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10992,
            "upload_time": "2022-08-11T11:11:57",
            "upload_time_iso_8601": "2022-08-11T11:11:57.138158Z",
            "url": "https://files.pythonhosted.org/packages/6d/35/1332cdad5c3d6af89e0df54d0668103a40cebbf5263436c27e07171fe92d/setproctitle-1.3.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3e5e9f0162ad7a2070083aa7e3a5c478",
                "sha256": "e43f315c68aa61cbdef522a2272c5a5b9b8fd03c301d3167b5e1343ef50c676c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "3e5e9f0162ad7a2070083aa7e3a5c478",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 11736,
            "upload_time": "2022-08-11T11:12:02",
            "upload_time_iso_8601": "2022-08-11T11:12:02.640057Z",
            "url": "https://files.pythonhosted.org/packages/75/fb/4531dcab73775a3cc22a0db69e7ec459b6d8c873b62f61e226ffebd6e963/setproctitle-1.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f909f0ad82388c49d1483304c1105d48",
                "sha256": "de3a540cd1817ede31f530d20e6a4935bbc1b145fd8f8cf393903b1e02f1ae76"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "f909f0ad82388c49d1483304c1105d48",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 16870,
            "upload_time": "2022-08-11T11:12:05",
            "upload_time_iso_8601": "2022-08-11T11:12:05.542239Z",
            "url": "https://files.pythonhosted.org/packages/50/ef/cff921345cadf05bef3cb4da37eac23d08fd063222a633231e8ae1f61a0d/setproctitle-1.3.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e04b7a815bb2883d4c9e19e2c20200a1",
                "sha256": "4058564195b975ddc3f0462375c533cce310ccdd41b80ac9aed641c296c3eff4"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "e04b7a815bb2883d4c9e19e2c20200a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 11289,
            "upload_time": "2022-08-11T11:12:10",
            "upload_time_iso_8601": "2022-08-11T11:12:10.654033Z",
            "url": "https://files.pythonhosted.org/packages/4a/a4/cb6c3d274e8f5c36c65590723d58f994f407a0c835ac94379c00b89df4dd/setproctitle-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e3f81b5bc525408c01e3fdff67035801",
                "sha256": "1c5d5dad7c28bdd1ec4187d818e43796f58a845aa892bb4481587010dc4d362b"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "e3f81b5bc525408c01e3fdff67035801",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30971,
            "upload_time": "2022-08-11T11:12:14",
            "upload_time_iso_8601": "2022-08-11T11:12:14.972457Z",
            "url": "https://files.pythonhosted.org/packages/9a/12/cc8c117c13319e7c56aea7c33d127150e538da7e9a4808aa91e07d424610/setproctitle-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cbe01b487984f83ea1a3133e667fce45",
                "sha256": "ffc61a388a5834a97953d6444a2888c24a05f2e333f9ed49f977a87bb1ad4761"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "cbe01b487984f83ea1a3133e667fce45",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 32311,
            "upload_time": "2022-08-11T11:12:19",
            "upload_time_iso_8601": "2022-08-11T11:12:19.688828Z",
            "url": "https://files.pythonhosted.org/packages/66/b0/bb81bad3120364523b1a9511564f6ec6f5de322400cd5f3ebef526d40c23/setproctitle-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c1e4a5641085b8cfed0b3447ddc9349a",
                "sha256": "1fa1a0fbee72b47dc339c87c890d3c03a72ea65c061ade3204f285582f2da30f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "c1e4a5641085b8cfed0b3447ddc9349a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 29407,
            "upload_time": "2022-08-11T11:12:25",
            "upload_time_iso_8601": "2022-08-11T11:12:25.636702Z",
            "url": "https://files.pythonhosted.org/packages/f3/4e/3b13ff5965903911f4e93631fb3ae7419943e0dc77e479b781e34540fae3/setproctitle-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6ce6cbf3bbfc2b1c8c9fdd7c5c604c19",
                "sha256": "fe8a988c7220c002c45347430993830666e55bc350179d91fcee0feafe64e1d4"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "6ce6cbf3bbfc2b1c8c9fdd7c5c604c19",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30433,
            "upload_time": "2022-08-11T11:12:29",
            "upload_time_iso_8601": "2022-08-11T11:12:29.070779Z",
            "url": "https://files.pythonhosted.org/packages/b7/7e/4f71712c98fd06b3075c93a1a2135c5f656191b2aae30895ca7bc7a0da03/setproctitle-1.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "04ec6bbf6c727aa32883fc450748f808",
                "sha256": "bae283e85fc084b18ffeb92e061ff7ac5af9e183c9d1345c93e178c3e5069cbe"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": true,
            "md5_digest": "04ec6bbf6c727aa32883fc450748f808",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 38131,
            "upload_time": "2022-08-11T11:12:32",
            "upload_time_iso_8601": "2022-08-11T11:12:32.409885Z",
            "url": "https://files.pythonhosted.org/packages/dd/6e/e920bb0ce7bc7eebdef249643ac3b66dbd9677d668472a86b88149575234/setproctitle-1.3.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3fa2e12a8e47120ab1422166c0c02b54",
                "sha256": "fed18e44711c5af4b681c2b3b18f85e6f0f1b2370a28854c645d636d5305ccd8"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": true,
            "md5_digest": "3fa2e12a8e47120ab1422166c0c02b54",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 36668,
            "upload_time": "2022-08-11T11:12:34",
            "upload_time_iso_8601": "2022-08-11T11:12:34.556886Z",
            "url": "https://files.pythonhosted.org/packages/42/69/5495ee592ad6c6411c9d1f1d610e37557f14fa5d039ef82bf86f328ca289/setproctitle-1.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "51e68fded366e60429ad9644a363e2f3",
                "sha256": "b34baef93bfb20a8ecb930e395ccd2ae3268050d8cf4fe187de5e2bd806fd796"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": true,
            "md5_digest": "51e68fded366e60429ad9644a363e2f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 39443,
            "upload_time": "2022-08-11T11:12:37",
            "upload_time_iso_8601": "2022-08-11T11:12:37.435545Z",
            "url": "https://files.pythonhosted.org/packages/29/0f/884a680fed30dbd1f99fba1f0ae189a1bc7026246150a1b4a5492108c231/setproctitle-1.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4c94ccef2c474fa232f2739f10fac054",
                "sha256": "7f0bed90a216ef28b9d227d8d73e28a8c9b88c0f48a082d13ab3fa83c581488f"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": true,
            "md5_digest": "4c94ccef2c474fa232f2739f10fac054",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 37796,
            "upload_time": "2022-08-11T11:12:40",
            "upload_time_iso_8601": "2022-08-11T11:12:40.912744Z",
            "url": "https://files.pythonhosted.org/packages/a9/6e/c50be96334dcb7a63f7fca5897d99f2ae1deee378cec8dbd8a56c3cd4ded/setproctitle-1.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5853bac827647bbcae8eafb3aa41457b",
                "sha256": "4d8938249a7cea45ab7e1e48b77685d0f2bab1ebfa9dde23e94ab97968996a7c"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-win32.whl",
            "has_sig": true,
            "md5_digest": "5853bac827647bbcae8eafb3aa41457b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10996,
            "upload_time": "2022-08-11T11:12:43",
            "upload_time_iso_8601": "2022-08-11T11:12:43.812703Z",
            "url": "https://files.pythonhosted.org/packages/e2/e1/35f913b4538313b151d961384efddbf907447e8113d30b8ddbee4e35d781/setproctitle-1.3.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8c2509536794464a8eaeecb1f17b0196",
                "sha256": "a47d97a75fd2d10c37410b180f67a5835cb1d8fdea2648fd7f359d4277f180b9"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "8c2509536794464a8eaeecb1f17b0196",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 11738,
            "upload_time": "2022-08-11T11:12:46",
            "upload_time_iso_8601": "2022-08-11T11:12:46.391905Z",
            "url": "https://files.pythonhosted.org/packages/40/bc/fb3193adca261b25b6c01bb9faeebce4b3c24a96be3f1dc9a1ddd307142e/setproctitle-1.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2089ed95efb410e6685cc2a844b642e1",
                "sha256": "dad42e676c5261eb50fdb16bdf3e2771cf8f99a79ef69ba88729aeb3472d8575"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "2089ed95efb410e6685cc2a844b642e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 10701,
            "upload_time": "2022-08-11T11:12:48",
            "upload_time_iso_8601": "2022-08-11T11:12:48.017614Z",
            "url": "https://files.pythonhosted.org/packages/cf/86/07d7d30f25fc59aa6d9c2781c65299e2e056101febf58daa820e7a5b7846/setproctitle-1.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c8fef99c1eeb15a57129758070043e2f",
                "sha256": "c91b9bc8985d00239f7dc08a49927a7ca1ca8a6af2c3890feec3ed9665b6f91e"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "c8fef99c1eeb15a57129758070043e2f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 13385,
            "upload_time": "2022-08-11T11:12:49",
            "upload_time_iso_8601": "2022-08-11T11:12:49.803260Z",
            "url": "https://files.pythonhosted.org/packages/8e/26/904b99ea77b569a2e85331f710f8374d7f2c668914dd71f5062fdc5027a3/setproctitle-1.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b60e1df10b92a975a673763cc14b1abd",
                "sha256": "e8579a43eafd246e285eb3a5b939e7158073d5087aacdd2308f23200eac2458b"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "b60e1df10b92a975a673763cc14b1abd",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 12974,
            "upload_time": "2022-08-11T11:12:51",
            "upload_time_iso_8601": "2022-08-11T11:12:51.616892Z",
            "url": "https://files.pythonhosted.org/packages/aa/14/2f09103e288f06a6628447873bb2484538a1fe293f24a7238fa558d3c6cb/setproctitle-1.3.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "435b1037d06ef25f240b44f3fc1e4943",
                "sha256": "2fbd8187948284293f43533c150cd69a0e4192c83c377da837dbcd29f6b83084"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "435b1037d06ef25f240b44f3fc1e4943",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 11774,
            "upload_time": "2022-08-11T11:12:53",
            "upload_time_iso_8601": "2022-08-11T11:12:53.053624Z",
            "url": "https://files.pythonhosted.org/packages/36/8f/49c57050c87d1955d8a3def39b09f6481a1ba95fd48456b97a4e12a9a776/setproctitle-1.3.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cc09a6b09d70c70bbbcf1d912d40931e",
                "sha256": "faec934cfe5fd6ac1151c02e67156c3f526e82f96b24d550b5d51efa4a5527c6"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "cc09a6b09d70c70bbbcf1d912d40931e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 10701,
            "upload_time": "2022-08-11T11:12:54",
            "upload_time_iso_8601": "2022-08-11T11:12:54.901380Z",
            "url": "https://files.pythonhosted.org/packages/3c/15/82ec06f392cee2670e16ac35a59f44723cf72103d19407cbb071b5850201/setproctitle-1.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c4eebcd36f3a7aca29b10be4c9bb0faf",
                "sha256": "e1aafc91cbdacc9e5fe712c52077369168e6b6c346f3a9d51bf600b53eae56bb"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "c4eebcd36f3a7aca29b10be4c9bb0faf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 13366,
            "upload_time": "2022-08-11T11:12:56",
            "upload_time_iso_8601": "2022-08-11T11:12:56.732731Z",
            "url": "https://files.pythonhosted.org/packages/25/e4/39f9b58efd84149a56ac1bb9ceec2ba8ae7efd90f83ba1b87752a6a9c5f0/setproctitle-1.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7d999f2251d0284f70ed9d2d5aa34806",
                "sha256": "b617f12c9be61e8f4b2857be4a4319754756845dbbbd9c3718f468bbb1e17bcb"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "7d999f2251d0284f70ed9d2d5aa34806",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 12948,
            "upload_time": "2022-08-11T11:12:58",
            "upload_time_iso_8601": "2022-08-11T11:12:58.333216Z",
            "url": "https://files.pythonhosted.org/packages/c6/19/f317a8a1b3063affae0cd04bed33ddef710f8169a5bb2ae066280ae1ca5d/setproctitle-1.3.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "129ddeecf0db9a6bd92952ec34e4b56a",
                "sha256": "b2c9cb2705fc84cb8798f1ba74194f4c080aaef19d9dae843591c09b97678e98"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "129ddeecf0db9a6bd92952ec34e4b56a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 11776,
            "upload_time": "2022-08-11T11:12:59",
            "upload_time_iso_8601": "2022-08-11T11:12:59.906821Z",
            "url": "https://files.pythonhosted.org/packages/51/32/3b1e97e4ce33de2f68e7b036032d876eaf7655f43fc8f386f31552544d50/setproctitle-1.3.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "77a67ecc2981b77cf5f8dc3fdce37f3d",
                "sha256": "a149a5f7f2c5a065d4e63cb0d7a4b6d3b66e6e80f12e3f8827c4f63974cbf122"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "77a67ecc2981b77cf5f8dc3fdce37f3d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 10702,
            "upload_time": "2022-08-11T11:13:02",
            "upload_time_iso_8601": "2022-08-11T11:13:02.155545Z",
            "url": "https://files.pythonhosted.org/packages/02/9c/48155692325ff7ca9b841cfc7894ea6770c4a24455f8775959916f08e723/setproctitle-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2580988263a695bfa16be12f40c4788a",
                "sha256": "2e3ac25bfc4a0f29d2409650c7532d5ddfdbf29f16f8a256fc31c47d0dc05172"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": true,
            "md5_digest": "2580988263a695bfa16be12f40c4788a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 13347,
            "upload_time": "2022-08-11T11:13:05",
            "upload_time_iso_8601": "2022-08-11T11:13:05.447365Z",
            "url": "https://files.pythonhosted.org/packages/41/c7/107d46b676592ce508bd0ad3ac3b94acb1754460f375eccaba6e151375a8/setproctitle-1.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4bc2e183e5004a65d589d5957379cee5",
                "sha256": "65d884e22037b23fa25b2baf1a3316602ed5c5971eb3e9d771a38c3a69ce6e13"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "4bc2e183e5004a65d589d5957379cee5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 12947,
            "upload_time": "2022-08-11T11:13:16",
            "upload_time_iso_8601": "2022-08-11T11:13:16.114435Z",
            "url": "https://files.pythonhosted.org/packages/8d/f0/7d0999aaa3efb1d5e4f1bb7d7a0fee133e94a70e0780c3032e6cc19c66da/setproctitle-1.3.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "302f68d63064fd2e7c53a76a97c1a1cb",
                "sha256": "7aa0aac1711fadffc1d51e9d00a3bea61f68443d6ac0241a224e4d622489d665"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": true,
            "md5_digest": "302f68d63064fd2e7c53a76a97c1a1cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 11772,
            "upload_time": "2022-08-11T11:13:18",
            "upload_time_iso_8601": "2022-08-11T11:13:18.501418Z",
            "url": "https://files.pythonhosted.org/packages/b1/1c/54779981a1b8f7669eaccafb3aac75900e4e0db7c42a3ce3997c7170f09e/setproctitle-1.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fa9771540422a59a8dee1331ad6fd3a9",
                "sha256": "b9fb97907c830d260fa0658ed58afd48a86b2b88aac521135c352ff7fd3477fd"
            },
            "downloads": -1,
            "filename": "setproctitle-1.3.2.tar.gz",
            "has_sig": true,
            "md5_digest": "fa9771540422a59a8dee1331ad6fd3a9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 27173,
            "upload_time": "2022-08-11T11:13:25",
            "upload_time_iso_8601": "2022-08-11T11:13:25.768691Z",
            "url": "https://files.pythonhosted.org/packages/b5/47/ac709629ddb9779fee29b7d10ae9580f60a4b37e49bce72360ddf9a79cdc/setproctitle-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-08-11 11:13:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "dvarrazzo",
    "github_project": "py-setproctitle",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "setproctitle"
}
        
Elapsed time: 0.02282s