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.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/ae/4e/b09341b19b9ceb8b4c67298ab4a08ef7a4abdd3016c7bb152e9b6379031d/setproctitle-1.3.4.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.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.4",
"project_urls": {
"Download": "http://pypi.python.org/pypi/setproctitle/",
"Homepage": "https://github.com/dvarrazzo/py-setproctitle"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "52f495937eb5c5370324a942ba90174c6d0fc7c5ad2f7f8ea989ccdbd6e1be5e",
"md5": "8d3fe5e654946186e38b9821d5d29956",
"sha256": "0f6661a69c68349172ba7b4d5dd65fec2b0917abc99002425ad78c3e58cf7595"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "8d3fe5e654946186e38b9821d5d29956",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 16855,
"upload_time": "2024-11-17T08:27:22",
"upload_time_iso_8601": "2024-11-17T08:27:22.448925Z",
"url": "https://files.pythonhosted.org/packages/52/f4/95937eb5c5370324a942ba90174c6d0fc7c5ad2f7f8ea989ccdbd6e1be5e/setproctitle-1.3.4-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "32a6d49dbb0d75d02d11db49151469e1fee740efa45de7288bffcc4d88d0c290",
"md5": "bac328efe4d3a90b46b822aef8bb0b8e",
"sha256": "754bac5e470adac7f7ec2239c485cd0b75f8197ca8a5b86ffb20eb3a3676cc42"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bac328efe4d3a90b46b822aef8bb0b8e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 11627,
"upload_time": "2024-11-17T08:27:24",
"upload_time_iso_8601": "2024-11-17T08:27:24.505142Z",
"url": "https://files.pythonhosted.org/packages/32/a6/d49dbb0d75d02d11db49151469e1fee740efa45de7288bffcc4d88d0c290/setproctitle-1.3.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ecd73a0fc913db50c3b736750ce67824f1108c2173e5d043a16ef9874b4f988",
"md5": "acc0fdcecc1ac2c89939375a81c89bb9",
"sha256": "f7bc7088c15150745baf66db62a4ced4507d44419eb66207b609f91b64a682af"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "acc0fdcecc1ac2c89939375a81c89bb9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 31187,
"upload_time": "2024-11-17T08:27:26",
"upload_time_iso_8601": "2024-11-17T08:27:26.250409Z",
"url": "https://files.pythonhosted.org/packages/2e/cd/73a0fc913db50c3b736750ce67824f1108c2173e5d043a16ef9874b4f988/setproctitle-1.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "630f74f9112f7f506acc01f085811c6d135751b6fa42d30207f53b25579d043a",
"md5": "f982269fdd7133df1883db155e56cc01",
"sha256": "a46ef3ecf61e4840fbc1145fdd38acf158d0da7543eda7b773ed2b30f75c2830"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f982269fdd7133df1883db155e56cc01",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 32534,
"upload_time": "2024-11-17T08:27:27",
"upload_time_iso_8601": "2024-11-17T08:27:27.573667Z",
"url": "https://files.pythonhosted.org/packages/63/0f/74f9112f7f506acc01f085811c6d135751b6fa42d30207f53b25579d043a/setproctitle-1.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b8853eec2373745069d4c8a59d41ee2ef4a48949b77cccd0077c270261b238a",
"md5": "f38c9fda8479e337bc3a4c3116e5695d",
"sha256": "ffcb09d5c0ffa043254ec9a734a73f3791fec8bf6333592f906bb2e91ed2af1a"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f38c9fda8479e337bc3a4c3116e5695d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29657,
"upload_time": "2024-11-17T08:27:29",
"upload_time_iso_8601": "2024-11-17T08:27:29.447597Z",
"url": "https://files.pythonhosted.org/packages/3b/88/53eec2373745069d4c8a59d41ee2ef4a48949b77cccd0077c270261b238a/setproctitle-1.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "501ca4d3d8c20bf3bbafd8c5038e7da09043a9d21450b6a73694ada11c01b58a",
"md5": "2de0e0ee11bf57b4df69cc2b728d68c2",
"sha256": "06c16b7a91cdc5d700271899e4383384a61aae83a3d53d0e2e5a266376083342"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2de0e0ee11bf57b4df69cc2b728d68c2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 30695,
"upload_time": "2024-11-17T08:27:30",
"upload_time_iso_8601": "2024-11-17T08:27:30.758331Z",
"url": "https://files.pythonhosted.org/packages/50/1c/a4d3d8c20bf3bbafd8c5038e7da09043a9d21450b6a73694ada11c01b58a/setproctitle-1.3.4-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": {
"blake2b_256": "a22a9f290f0d10ea87a266d63025078eabfa040ad29ea10d815e167a5104de00",
"md5": "1cb8674b83ab71c68233198dc36f4ca1",
"sha256": "9f9732e59863eaeedd3feef94b2b216cb86d40dda4fad2d0f0aaec3b31592716"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1cb8674b83ab71c68233198dc36f4ca1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 30340,
"upload_time": "2024-11-17T08:27:32",
"upload_time_iso_8601": "2024-11-17T08:27:32.795872Z",
"url": "https://files.pythonhosted.org/packages/a2/2a/9f290f0d10ea87a266d63025078eabfa040ad29ea10d815e167a5104de00/setproctitle-1.3.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38c45bfe02d4cdd16338973d452c7c6042abdd2827d90f7ce4e21bc003f2edb1",
"md5": "899fc95fd0e5b71ffabad4b6f19a8a73",
"sha256": "e152f4ab9ea1632b5fecdd87cee354f2b2eb6e2dfc3aceb0eb36a01c1e12f94c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "899fc95fd0e5b71ffabad4b6f19a8a73",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29352,
"upload_time": "2024-11-17T08:27:33",
"upload_time_iso_8601": "2024-11-17T08:27:33.952606Z",
"url": "https://files.pythonhosted.org/packages/38/c4/5bfe02d4cdd16338973d452c7c6042abdd2827d90f7ce4e21bc003f2edb1/setproctitle-1.3.4-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3410dd85cef0e5a5a332bdda7b55738e950c2edecea3ae45c658990553d50f8",
"md5": "d3867881d7453ccb8b5645a016f15fd9",
"sha256": "020ea47a79b2bbd7bd7b94b85ca956ba7cb026e82f41b20d2e1dac4008cead25"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "d3867881d7453ccb8b5645a016f15fd9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 31819,
"upload_time": "2024-11-17T08:27:35",
"upload_time_iso_8601": "2024-11-17T08:27:35.255810Z",
"url": "https://files.pythonhosted.org/packages/b3/41/0dd85cef0e5a5a332bdda7b55738e950c2edecea3ae45c658990553d50f8/setproctitle-1.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d723fbfacfed8805983a83324099484e47b9028d0d3c07a0fe017123eee3f580",
"md5": "fda5c5ce30e657ce553106e132cb642f",
"sha256": "8c52b12b10e4057fc302bd09cb3e3f28bb382c30c044eb3396e805179a8260e4"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fda5c5ce30e657ce553106e132cb642f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29745,
"upload_time": "2024-11-17T08:27:37",
"upload_time_iso_8601": "2024-11-17T08:27:37.915329Z",
"url": "https://files.pythonhosted.org/packages/d7/23/fbfacfed8805983a83324099484e47b9028d0d3c07a0fe017123eee3f580/setproctitle-1.3.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6837e18c5a00bfd1c4c2c815536d5c63a470e4364b571bd5096d38d0fe277bf5",
"md5": "fe0b69b7601fbb9df51b24dacf9feb14",
"sha256": "a65a147f545f3fac86f11acb2d0b316d3e78139a9372317b7eb50561b2817ba0"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "fe0b69b7601fbb9df51b24dacf9feb14",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 11358,
"upload_time": "2024-11-17T08:27:39",
"upload_time_iso_8601": "2024-11-17T08:27:39.660319Z",
"url": "https://files.pythonhosted.org/packages/68/37/e18c5a00bfd1c4c2c815536d5c63a470e4364b571bd5096d38d0fe277bf5/setproctitle-1.3.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52fd1fae8c4c13af22d8d17816c44421085509a08dfa77f573d31447d6cd540c",
"md5": "e50e9013bfe1cebd075f795ca9f8fbc6",
"sha256": "66821fada6426998762a3650a37fba77e814a249a95b1183011070744aff47f6"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e50e9013bfe1cebd075f795ca9f8fbc6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 12072,
"upload_time": "2024-11-17T08:27:41",
"upload_time_iso_8601": "2024-11-17T08:27:41.318790Z",
"url": "https://files.pythonhosted.org/packages/52/fd/1fae8c4c13af22d8d17816c44421085509a08dfa77f573d31447d6cd540c/setproctitle-1.3.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d1a1fb7d622195bcb3ce7b04366a833e51cfa5ad632c5dafe32e0763cd3fdc9",
"md5": "1612c78b7828bf5f7c1f7925e430f605",
"sha256": "f0f749f07002c2d6fecf37cedc43207a88e6c651926a470a5f229070cf791879"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "1612c78b7828bf5f7c1f7925e430f605",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 16851,
"upload_time": "2024-11-17T08:27:42",
"upload_time_iso_8601": "2024-11-17T08:27:42.425795Z",
"url": "https://files.pythonhosted.org/packages/5d/1a/1fb7d622195bcb3ce7b04366a833e51cfa5ad632c5dafe32e0763cd3fdc9/setproctitle-1.3.4-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4654e3aa4f46eddf795f10452ea878ff85c3496d36409636530f9a37e2de3cbe",
"md5": "38cc432f2afbfb34bad45aa7e1370a08",
"sha256": "90ea8d302a5d30b948451d146e94674a3c5b020cc0ced9a1c28f8ddb0f203a5d"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "38cc432f2afbfb34bad45aa7e1370a08",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 11620,
"upload_time": "2024-11-17T08:27:44",
"upload_time_iso_8601": "2024-11-17T08:27:44.138367Z",
"url": "https://files.pythonhosted.org/packages/46/54/e3aa4f46eddf795f10452ea878ff85c3496d36409636530f9a37e2de3cbe/setproctitle-1.3.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "614780988221679dfd93c464248abb71c2a96338f2ca3f8e3288d0ecb7422f4d",
"md5": "180ea89009b026cc64667cf67d436479",
"sha256": "f859c88193ed466bee4eb9d45fbc29d2253e6aa3ccd9119c9a1d8d95f409a60d"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "180ea89009b026cc64667cf67d436479",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 31519,
"upload_time": "2024-11-17T08:27:45",
"upload_time_iso_8601": "2024-11-17T08:27:45.299288Z",
"url": "https://files.pythonhosted.org/packages/61/47/80988221679dfd93c464248abb71c2a96338f2ca3f8e3288d0ecb7422f4d/setproctitle-1.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c7214984c127f708597e412f1a8cf7cac809b9bca50a267a6b01b221b094330",
"md5": "91387dd47ab5d0f0ff910c1f3507c24c",
"sha256": "b3afa5a0ed08a477ded239c05db14c19af585975194a00adf594d48533b23701"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "91387dd47ab5d0f0ff910c1f3507c24c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 32860,
"upload_time": "2024-11-17T08:27:47",
"upload_time_iso_8601": "2024-11-17T08:27:47.248064Z",
"url": "https://files.pythonhosted.org/packages/2c/72/14984c127f708597e412f1a8cf7cac809b9bca50a267a6b01b221b094330/setproctitle-1.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "169d34ea09295620fddae65cf7caeac81bbfc386a3ae6ce26a4dcadbb54c134d",
"md5": "7d64cb34f1e984475b5c35066fb69aae",
"sha256": "10a78fce9018cc3e9a772b6537bbe3fe92380acf656c9f86db2f45e685af376e"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7d64cb34f1e984475b5c35066fb69aae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 30029,
"upload_time": "2024-11-17T08:27:49",
"upload_time_iso_8601": "2024-11-17T08:27:49.068903Z",
"url": "https://files.pythonhosted.org/packages/16/9d/34ea09295620fddae65cf7caeac81bbfc386a3ae6ce26a4dcadbb54c134d/setproctitle-1.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44bfa447a51054ceed23f69d4f7370289044b4508569f11da6db2eec087bc174",
"md5": "b4653633465f5f72c3d0e6d68d714d94",
"sha256": "5d758e2eed2643afac5f2881542fbb5aa97640b54be20d0a5ed0691d02f0867d"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b4653633465f5f72c3d0e6d68d714d94",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 31017,
"upload_time": "2024-11-17T08:27:50",
"upload_time_iso_8601": "2024-11-17T08:27:50.849677Z",
"url": "https://files.pythonhosted.org/packages/44/bf/a447a51054ceed23f69d4f7370289044b4508569f11da6db2eec087bc174/setproctitle-1.3.4-cp311-cp311-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": {
"blake2b_256": "ec46adcffde6fb8d95458da0a568afdf0dabbbff6470299d94014676e1ab43c0",
"md5": "cf8b8f902506a88dae8ae2cbc021eee9",
"sha256": "ef133a1a2ee378d549048a12d56f4ef0e2b9113b0b25b6b77821e9af94d50634"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cf8b8f902506a88dae8ae2cbc021eee9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 30762,
"upload_time": "2024-11-17T08:27:52",
"upload_time_iso_8601": "2024-11-17T08:27:52.671206Z",
"url": "https://files.pythonhosted.org/packages/ec/46/adcffde6fb8d95458da0a568afdf0dabbbff6470299d94014676e1ab43c0/setproctitle-1.3.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3cd747a67ce1f6ef8fd1fa46b0b13ba0e007b80914bd549318830b8691ab9f6",
"md5": "f8cf0681ea12942856ae23f15956d76d",
"sha256": "1d2a154b79d5fb42d1eff06e05e22f0e8091261d877dd47b37d31352b74ecc37"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f8cf0681ea12942856ae23f15956d76d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 29753,
"upload_time": "2024-11-17T08:28:05",
"upload_time_iso_8601": "2024-11-17T08:28:05.374792Z",
"url": "https://files.pythonhosted.org/packages/a3/cd/747a67ce1f6ef8fd1fa46b0b13ba0e007b80914bd549318830b8691ab9f6/setproctitle-1.3.4-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d865939546e57238462a7839ae78399a635d1cfc5d125c7a12a28face111730",
"md5": "39e7613b63e6013a1fe92c15cb0e1b09",
"sha256": "202eae632815571297833876a0f407d0d9c7ad9d843b38adbe687fe68c5192ee"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "39e7613b63e6013a1fe92c15cb0e1b09",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 32161,
"upload_time": "2024-11-17T08:28:07",
"upload_time_iso_8601": "2024-11-17T08:28:07.210553Z",
"url": "https://files.pythonhosted.org/packages/3d/86/5939546e57238462a7839ae78399a635d1cfc5d125c7a12a28face111730/setproctitle-1.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62839194a4baed06e0e90a69e2e4a77a75e5a3ff008046870c79bc36a5c45e1c",
"md5": "85d959672238c97de8ba40d0719e3bc1",
"sha256": "2b0080819859e80a7776ac47cf6accb4b7ad313baf55fabac89c000480dcd103"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "85d959672238c97de8ba40d0719e3bc1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 30104,
"upload_time": "2024-11-17T08:28:09",
"upload_time_iso_8601": "2024-11-17T08:28:09.204939Z",
"url": "https://files.pythonhosted.org/packages/62/83/9194a4baed06e0e90a69e2e4a77a75e5a3ff008046870c79bc36a5c45e1c/setproctitle-1.3.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "accd08928fec23cbf4dae2a7b245b72d86e6458d64f4e7e6956cd80a9fda8c80",
"md5": "a339db94f0168248cab6c12d890454c5",
"sha256": "9c9d7d1267dee8c6627963d9376efa068858cfc8f573c083b1b6a2d297a8710f"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "a339db94f0168248cab6c12d890454c5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 11349,
"upload_time": "2024-11-17T08:28:10",
"upload_time_iso_8601": "2024-11-17T08:28:10.883651Z",
"url": "https://files.pythonhosted.org/packages/ac/cd/08928fec23cbf4dae2a7b245b72d86e6458d64f4e7e6956cd80a9fda8c80/setproctitle-1.3.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa19240c4b99d57e045d3b2e2effa5924e810eabb18c56ef9c2336a7746dffe4",
"md5": "5edda02a8c72b5799ec4bdd9421e4900",
"sha256": "475986ddf6df65d619acd52188336a20f616589403f5a5ceb3fc70cdc137037a"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "5edda02a8c72b5799ec4bdd9421e4900",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 12071,
"upload_time": "2024-11-17T08:28:11",
"upload_time_iso_8601": "2024-11-17T08:28:11.844806Z",
"url": "https://files.pythonhosted.org/packages/aa/19/240c4b99d57e045d3b2e2effa5924e810eabb18c56ef9c2336a7746dffe4/setproctitle-1.3.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "941f02fb3c6038c819d86765316d2a911281fc56c7dd3a9355dceb3f26a5bf7b",
"md5": "fdca1c309d483d812a517f7a7e11cf69",
"sha256": "d06990dcfcd41bb3543c18dd25c8476fbfe1f236757f42fef560f6aa03ac8dfc"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "fdca1c309d483d812a517f7a7e11cf69",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 16842,
"upload_time": "2024-11-17T08:28:13",
"upload_time_iso_8601": "2024-11-17T08:28:13.068321Z",
"url": "https://files.pythonhosted.org/packages/94/1f/02fb3c6038c819d86765316d2a911281fc56c7dd3a9355dceb3f26a5bf7b/setproctitle-1.3.4-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b80cd69e1f91c8f3d3aa74394e9e6ebb818f7d323e2d138ce1127e9462d09ebc",
"md5": "e2ca852781e47061019930330d2b790c",
"sha256": "317218c9d8b17a010ab2d2f0851e8ef584077a38b1ba2b7c55c9e44e79a61e73"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e2ca852781e47061019930330d2b790c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 11614,
"upload_time": "2024-11-17T08:28:14",
"upload_time_iso_8601": "2024-11-17T08:28:14.205441Z",
"url": "https://files.pythonhosted.org/packages/b8/0c/d69e1f91c8f3d3aa74394e9e6ebb818f7d323e2d138ce1127e9462d09ebc/setproctitle-1.3.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86ed8031871d275302054b2f1b94b7cf5e850212cc412fe968f0979e64c1b838",
"md5": "d2473720d52f65eb310bcf3ba44b25a1",
"sha256": "cb5fefb53b9d9f334a5d9ec518a36b92a10b936011ac8a6b6dffd60135f16459"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d2473720d52f65eb310bcf3ba44b25a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 31840,
"upload_time": "2024-11-17T08:28:15",
"upload_time_iso_8601": "2024-11-17T08:28:15.380681Z",
"url": "https://files.pythonhosted.org/packages/86/ed/8031871d275302054b2f1b94b7cf5e850212cc412fe968f0979e64c1b838/setproctitle-1.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45b704f5d221cbdcff35d6cdf74e2a852e69dc8d8e746eb1b314be6b57b79c41",
"md5": "db4293d26290b32044d20ccd44b4f7a4",
"sha256": "0855006261635e8669646c7c304b494b6df0a194d2626683520103153ad63cc9"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "db4293d26290b32044d20ccd44b4f7a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 33271,
"upload_time": "2024-11-17T08:28:16",
"upload_time_iso_8601": "2024-11-17T08:28:16.539336Z",
"url": "https://files.pythonhosted.org/packages/45/b7/04f5d221cbdcff35d6cdf74e2a852e69dc8d8e746eb1b314be6b57b79c41/setproctitle-1.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25b28dff0d2a72076e5535f117f33458d520538b5a0900b90a9f59a278f0d3f6",
"md5": "93c97025403b0dd3e6468f0c99ee5228",
"sha256": "1a88e466fcaee659679c1d64dcb2eddbcb4bfadffeb68ba834d9c173a25b6184"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "93c97025403b0dd3e6468f0c99ee5228",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 30509,
"upload_time": "2024-11-17T08:28:17",
"upload_time_iso_8601": "2024-11-17T08:28:17.930202Z",
"url": "https://files.pythonhosted.org/packages/25/b2/8dff0d2a72076e5535f117f33458d520538b5a0900b90a9f59a278f0d3f6/setproctitle-1.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4bcf4f19cdc7fdff3eaeb3064ce6eeb27c63081dba3123fbf904ac6bf0de440c",
"md5": "9bc95bf5be6634924ac03eff0c5a9c90",
"sha256": "f963b6ed8ba33eda374a98d979e8a0eaf21f891b6e334701693a2c9510613c4c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9bc95bf5be6634924ac03eff0c5a9c90",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 31543,
"upload_time": "2024-11-17T08:28:19",
"upload_time_iso_8601": "2024-11-17T08:28:19.835712Z",
"url": "https://files.pythonhosted.org/packages/4b/cf/4f19cdc7fdff3eaeb3064ce6eeb27c63081dba3123fbf904ac6bf0de440c/setproctitle-1.3.4-cp312-cp312-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": {
"blake2b_256": "9ba75f9c3c70dc5573f660f978fb3bb4847cd26ede95a5fc294d3f1cf6779800",
"md5": "5a54c7090793fb953f50081684225b3e",
"sha256": "122c2e05697fa91f5d23f00bbe98a9da1bd457b32529192e934095fadb0853f1"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5a54c7090793fb953f50081684225b3e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 31268,
"upload_time": "2024-11-17T08:28:21",
"upload_time_iso_8601": "2024-11-17T08:28:21.621060Z",
"url": "https://files.pythonhosted.org/packages/9b/a7/5f9c3c70dc5573f660f978fb3bb4847cd26ede95a5fc294d3f1cf6779800/setproctitle-1.3.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26abbbde90ea0ed6a062ef94fe1c609b68077f7eb586133a62fa62d0c8dd9f8c",
"md5": "860834429355b9069f1499b8b801412d",
"sha256": "1bba0a866f5895d5b769d8c36b161271c7fd407e5065862ab80ff91c29fbe554"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "860834429355b9069f1499b8b801412d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 30232,
"upload_time": "2024-11-17T08:28:23",
"upload_time_iso_8601": "2024-11-17T08:28:23.592809Z",
"url": "https://files.pythonhosted.org/packages/26/ab/bbde90ea0ed6a062ef94fe1c609b68077f7eb586133a62fa62d0c8dd9f8c/setproctitle-1.3.4-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "360e817be9934eda4cf63c96c694c3383cb0d2e5d019a2871af7dbd2202f7a58",
"md5": "0923e99fcfa9a67ba77d2824e9fc74b9",
"sha256": "97f1f861998e326e640708488c442519ad69046374b2c3fe9bcc9869b387f23c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0923e99fcfa9a67ba77d2824e9fc74b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 32739,
"upload_time": "2024-11-17T08:28:24",
"upload_time_iso_8601": "2024-11-17T08:28:24.945798Z",
"url": "https://files.pythonhosted.org/packages/36/0e/817be9934eda4cf63c96c694c3383cb0d2e5d019a2871af7dbd2202f7a58/setproctitle-1.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0769b4877850c9c5f41c4bacae441285dead7c192bebf4fcbf3b3eb0e8033cc",
"md5": "e906d2628bb8e334895201ee4ddf8be4",
"sha256": "726aee40357d4bdb70115442cb85ccc8e8bc554fc0bbbaa3a57cbe81df42287d"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e906d2628bb8e334895201ee4ddf8be4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 30778,
"upload_time": "2024-11-17T08:28:26",
"upload_time_iso_8601": "2024-11-17T08:28:26.489440Z",
"url": "https://files.pythonhosted.org/packages/b0/76/9b4877850c9c5f41c4bacae441285dead7c192bebf4fcbf3b3eb0e8033cc/setproctitle-1.3.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2fabbc7ab32f253b9700ac20d78ba0d5fbdc4ea5789d33e1adb236cdf20b23a",
"md5": "c08119893fe045317d69fe8147a79a67",
"sha256": "04d6ba8b816dbb0bfd62000b0c3e583160893e6e8c4233e1dca1a9ae4d95d924"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "c08119893fe045317d69fe8147a79a67",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 11355,
"upload_time": "2024-11-17T08:28:27",
"upload_time_iso_8601": "2024-11-17T08:28:27.686465Z",
"url": "https://files.pythonhosted.org/packages/b2/fa/bbc7ab32f253b9700ac20d78ba0d5fbdc4ea5789d33e1adb236cdf20b23a/setproctitle-1.3.4-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "445c6e6665b5fd800206a9e537ab0d2630d7b9b31b4697d931ed468837cc9cf5",
"md5": "eebc0bf1730156c66f11613f964474ae",
"sha256": "9c76e43cb351ba8887371240b599925cdf3ecececc5dfb7125c71678e7722c55"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "eebc0bf1730156c66f11613f964474ae",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 12069,
"upload_time": "2024-11-17T08:28:28",
"upload_time_iso_8601": "2024-11-17T08:28:28.991589Z",
"url": "https://files.pythonhosted.org/packages/44/5c/6e6665b5fd800206a9e537ab0d2630d7b9b31b4697d931ed468837cc9cf5/setproctitle-1.3.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d40151d07ab1dbec8885ebad419d254c06b9e28f4363c163b737a89995a52b75",
"md5": "ae3aea9440a2f2ca1a831792f76f77df",
"sha256": "d6e3b177e634aa6bbbfbf66d097b6d1cdb80fc60e912c7d8bace2e45699c07dd"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "ae3aea9440a2f2ca1a831792f76f77df",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 16831,
"upload_time": "2024-11-17T08:28:30",
"upload_time_iso_8601": "2024-11-17T08:28:30.643596Z",
"url": "https://files.pythonhosted.org/packages/d4/01/51d07ab1dbec8885ebad419d254c06b9e28f4363c163b737a89995a52b75/setproctitle-1.3.4-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3003deff7089b525c0d8ec047e06661d2be67c87685a99be6a6aed2890b81c8f",
"md5": "5274f4c86d564747d30b22daeeae986b",
"sha256": "6b17655a5f245b416e127e02087ea6347a48821cc4626bc0fd57101bfcd88afc"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5274f4c86d564747d30b22daeeae986b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 11607,
"upload_time": "2024-11-17T08:28:31",
"upload_time_iso_8601": "2024-11-17T08:28:31.805765Z",
"url": "https://files.pythonhosted.org/packages/30/03/deff7089b525c0d8ec047e06661d2be67c87685a99be6a6aed2890b81c8f/setproctitle-1.3.4-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eabecb2950b3f6ba460f530bda2c713828236c75d982d0aa0f62b33429a9b4d0",
"md5": "d6cbb0d77fc298722f675981bffd9d08",
"sha256": "fa5057a86df920faab8ee83960b724bace01a3231eb8e3f2c93d78283504d598"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d6cbb0d77fc298722f675981bffd9d08",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 31881,
"upload_time": "2024-11-17T08:28:33",
"upload_time_iso_8601": "2024-11-17T08:28:33.018793Z",
"url": "https://files.pythonhosted.org/packages/ea/be/cb2950b3f6ba460f530bda2c713828236c75d982d0aa0f62b33429a9b4d0/setproctitle-1.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cb41f0dba7525a2fbefd08d4086e7e998d9c7581153807fb6b3083d06e0b8e2",
"md5": "5f33ea227e4c6f7555d47f67d635137f",
"sha256": "149fdfb8a26a555780c4ce53c92e6d3c990ef7b30f90a675eca02e83c6d5f76d"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5f33ea227e4c6f7555d47f67d635137f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 33290,
"upload_time": "2024-11-17T08:28:34",
"upload_time_iso_8601": "2024-11-17T08:28:34.339236Z",
"url": "https://files.pythonhosted.org/packages/5c/b4/1f0dba7525a2fbefd08d4086e7e998d9c7581153807fb6b3083d06e0b8e2/setproctitle-1.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2da807a160f9dcd1a7b1cad39ce6cbaf4425837502b0592a400c38cb21f0f247",
"md5": "421ab541e4f005d64e43c5ff5937b184",
"sha256": "ded03546938a987f463c68ab98d683af87a83db7ac8093bbc179e77680be5ba2"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "421ab541e4f005d64e43c5ff5937b184",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 30489,
"upload_time": "2024-11-17T08:28:35",
"upload_time_iso_8601": "2024-11-17T08:28:35.688692Z",
"url": "https://files.pythonhosted.org/packages/2d/a8/07a160f9dcd1a7b1cad39ce6cbaf4425837502b0592a400c38cb21f0f247/setproctitle-1.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "830c3d972d9ea4165961a9764df5324d42bf2d059cb8a6ef516c67f068ed4d92",
"md5": "943b51271d63e7eac093a7859f16f98f",
"sha256": "8ab9f5b7f2bbc1754bc6292d9a7312071058e5a891b0391e6d13b226133f36aa"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "943b51271d63e7eac093a7859f16f98f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 31576,
"upload_time": "2024-11-17T08:28:37",
"upload_time_iso_8601": "2024-11-17T08:28:37.207026Z",
"url": "https://files.pythonhosted.org/packages/83/0c/3d972d9ea4165961a9764df5324d42bf2d059cb8a6ef516c67f068ed4d92/setproctitle-1.3.4-cp313-cp313-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": {
"blake2b_256": "7ac0c12bdc2c91009defdd1b207ff156ccd691f5b9a6a0aae1ed9126d4ff9a0c",
"md5": "6b122861506bd8b1f8e59f3f2fa66a01",
"sha256": "0b19813c852566fa031902124336fa1f080c51e262fc90266a8c3d65ca47b74c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6b122861506bd8b1f8e59f3f2fa66a01",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 31273,
"upload_time": "2024-11-17T08:28:38",
"upload_time_iso_8601": "2024-11-17T08:28:38.536670Z",
"url": "https://files.pythonhosted.org/packages/7a/c0/c12bdc2c91009defdd1b207ff156ccd691f5b9a6a0aae1ed9126d4ff9a0c/setproctitle-1.3.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f838d704bee57990b27537adf7c97540f32226ffa3922fb26bdd459da8a4470",
"md5": "9cc798232cb955b7376155f57f106230",
"sha256": "db78b645dc63c0ccffca367a498f3b13492fb106a2243a1e998303ba79c996e2"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9cc798232cb955b7376155f57f106230",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 30236,
"upload_time": "2024-11-17T08:28:39",
"upload_time_iso_8601": "2024-11-17T08:28:39.801575Z",
"url": "https://files.pythonhosted.org/packages/4f/83/8d704bee57990b27537adf7c97540f32226ffa3922fb26bdd459da8a4470/setproctitle-1.3.4-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d84294e31d1f515f831e1ae43f2405794257eb940a7972b2fbb6283790db2958",
"md5": "a3963c3c852b849e01d02a2bfd1277c5",
"sha256": "b669aaac70bd9f03c070270b953f78d9ee56c4af6f0ff9f9cd3e6d1878c10b40"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "a3963c3c852b849e01d02a2bfd1277c5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 32766,
"upload_time": "2024-11-17T08:28:41",
"upload_time_iso_8601": "2024-11-17T08:28:41.069940Z",
"url": "https://files.pythonhosted.org/packages/d8/42/94e31d1f515f831e1ae43f2405794257eb940a7972b2fbb6283790db2958/setproctitle-1.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "835301746ed8fb75239a001ee89d5eb8ad5a3022df510572d1cf60dd04567e13",
"md5": "b595aa2f346bfe1c64fe74bb51aae163",
"sha256": "6dc3d656702791565994e64035a208be56b065675a5bc87b644c657d6d9e2232"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b595aa2f346bfe1c64fe74bb51aae163",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 30812,
"upload_time": "2024-11-17T08:28:42",
"upload_time_iso_8601": "2024-11-17T08:28:42.969046Z",
"url": "https://files.pythonhosted.org/packages/83/53/01746ed8fb75239a001ee89d5eb8ad5a3022df510572d1cf60dd04567e13/setproctitle-1.3.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fea3ce61e70a6b898e95c0a1e393964c829103dc4ad4b0732cd70c8fc13e54c",
"md5": "9415bc9d07efc6e597999fb0b4f067f5",
"sha256": "091f682809a4d12291cf0205517619d2e7014986b7b00ebecfde3d76f8ae5a8f"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "9415bc9d07efc6e597999fb0b4f067f5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 11349,
"upload_time": "2024-11-17T08:28:44",
"upload_time_iso_8601": "2024-11-17T08:28:44.296684Z",
"url": "https://files.pythonhosted.org/packages/5f/ea/3ce61e70a6b898e95c0a1e393964c829103dc4ad4b0732cd70c8fc13e54c/setproctitle-1.3.4-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e71a8149da1c19db6bd57164d62b1d91c188e7d77e695947cf1ac327c8aea513",
"md5": "b337fe2d43b502d588159969f4a6dbd8",
"sha256": "adcd6ba863a315702184d92d3d3bbff290514f24a14695d310f02ae5e28bd1f7"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "b337fe2d43b502d588159969f4a6dbd8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 12062,
"upload_time": "2024-11-17T08:28:45",
"upload_time_iso_8601": "2024-11-17T08:28:45.342454Z",
"url": "https://files.pythonhosted.org/packages/e7/1a/8149da1c19db6bd57164d62b1d91c188e7d77e695947cf1ac327c8aea513/setproctitle-1.3.4-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5bf02c93895c23756e357522c81dc92ce1335f7951dea36f379f66fd2510ceb8",
"md5": "e93875d21b1e54a9fb751a41252efb97",
"sha256": "acf41cf91bbc5a36d1fa4455a818bb02bf2a4ccfed2f892ba166ba2fcbb0ec8a"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e93875d21b1e54a9fb751a41252efb97",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 16868,
"upload_time": "2024-11-17T08:28:46",
"upload_time_iso_8601": "2024-11-17T08:28:46.439174Z",
"url": "https://files.pythonhosted.org/packages/5b/f0/2c93895c23756e357522c81dc92ce1335f7951dea36f379f66fd2510ceb8/setproctitle-1.3.4-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dd6b5ef35edf8dca32453f631467c9a4aa4dce30a7013da70783b4e3a0f5544",
"md5": "a5e328a29e44fc7871bf3cd00a6435d0",
"sha256": "ceb3ce3262b0e8e088e4117175591b7a82b3bdc5e52e33b1e74778b5fb53fd38"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a5e328a29e44fc7871bf3cd00a6435d0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 11624,
"upload_time": "2024-11-17T08:28:47",
"upload_time_iso_8601": "2024-11-17T08:28:47.653952Z",
"url": "https://files.pythonhosted.org/packages/1d/d6/b5ef35edf8dca32453f631467c9a4aa4dce30a7013da70783b4e3a0f5544/setproctitle-1.3.4-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9fead36a4022dad036f0f32a897c9cb166dc5d675fa35d28682443b9db0ac0f5",
"md5": "da326da7812642efb1438db284167a04",
"sha256": "2b2ef636a6a25fe7f3d5a064bea0116b74a4c8c7df9646b17dc7386c439a26cf"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "da326da7812642efb1438db284167a04",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31620,
"upload_time": "2024-11-17T08:28:49",
"upload_time_iso_8601": "2024-11-17T08:28:49.422302Z",
"url": "https://files.pythonhosted.org/packages/9f/ea/d36a4022dad036f0f32a897c9cb166dc5d675fa35d28682443b9db0ac0f5/setproctitle-1.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8725b0e8255400eef2ec376d9e4e344154b0e9d4c631f06b655e10f570f0ab3d",
"md5": "131491982c8d49484448ea55f5d1fddf",
"sha256": "28b8614de08679ae95bc4e8d6daaef6b61afdf027fa0d23bf13d619000286b3c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "131491982c8d49484448ea55f5d1fddf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 32944,
"upload_time": "2024-11-17T08:28:50",
"upload_time_iso_8601": "2024-11-17T08:28:50.827262Z",
"url": "https://files.pythonhosted.org/packages/87/25/b0e8255400eef2ec376d9e4e344154b0e9d4c631f06b655e10f570f0ab3d/setproctitle-1.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68a105f1cf389772fdd35b5e8a6329ce87f4470a8efe58c46b6e480c83bc15e0",
"md5": "114ae07f2d905101702abbd82317ec99",
"sha256": "24f3c8be826a7d44181eac2269b15b748b76d98cd9a539d4c69f09321dcb5c12"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "114ae07f2d905101702abbd82317ec99",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 30005,
"upload_time": "2024-11-17T08:28:52",
"upload_time_iso_8601": "2024-11-17T08:28:52.020183Z",
"url": "https://files.pythonhosted.org/packages/68/a1/05f1cf389772fdd35b5e8a6329ce87f4470a8efe58c46b6e480c83bc15e0/setproctitle-1.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28a289aea3db59a4993389b30cf20eb3271738c4f095cc0da03fdc2e55d006bb",
"md5": "e8b565f2e96296f1a2dff4981c9c6312",
"sha256": "fc9d79b1bf833af63b7c720a6604eb16453ac1ad4e718eb8b59d1f97d986b98c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e8b565f2e96296f1a2dff4981c9c6312",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31177,
"upload_time": "2024-11-17T08:28:53",
"upload_time_iso_8601": "2024-11-17T08:28:53.455423Z",
"url": "https://files.pythonhosted.org/packages/28/a2/89aea3db59a4993389b30cf20eb3271738c4f095cc0da03fdc2e55d006bb/setproctitle-1.3.4-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": {
"blake2b_256": "d08ae5401fb7c00fb29400e35b3a6d8cd8b372b51258e62c3ac3162ee468f4b2",
"md5": "defa89466780e8c4c25b204e065b679e",
"sha256": "fb693000b65842c85356b667d057ae0d0bac6519feca7e1c437cc2cfeb0afc59"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "defa89466780e8c4c25b204e065b679e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 30592,
"upload_time": "2024-11-17T08:28:55",
"upload_time_iso_8601": "2024-11-17T08:28:55.267083Z",
"url": "https://files.pythonhosted.org/packages/d0/8a/e5401fb7c00fb29400e35b3a6d8cd8b372b51258e62c3ac3162ee468f4b2/setproctitle-1.3.4-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38c7745afea5946a7ec06c1b37ef2b041d5ab5bde1a0bfe65bd8d07094af7ce8",
"md5": "729f2376e5f33c034c8f612ded9bbeff",
"sha256": "a166251b8fbc6f2755e2ce9d3c11e9edb0c0c7d2ed723658ff0161fbce26ac1c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "729f2376e5f33c034c8f612ded9bbeff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 29478,
"upload_time": "2024-11-17T08:28:57",
"upload_time_iso_8601": "2024-11-17T08:28:57.377723Z",
"url": "https://files.pythonhosted.org/packages/38/c7/745afea5946a7ec06c1b37ef2b041d5ab5bde1a0bfe65bd8d07094af7ce8/setproctitle-1.3.4-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f4871c4df15bab29a52840d843b7b1043912567d903a2f2dfc2c300a3c9c5f6",
"md5": "dbc154c9172ca901c295475d606b8583",
"sha256": "0361428e6378911a378841509c56ba472d991cbed1a7e3078ec0cacc103da44a"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "dbc154c9172ca901c295475d606b8583",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31883,
"upload_time": "2024-11-17T08:28:58",
"upload_time_iso_8601": "2024-11-17T08:28:58.609366Z",
"url": "https://files.pythonhosted.org/packages/4f/48/71c4df15bab29a52840d843b7b1043912567d903a2f2dfc2c300a3c9c5f6/setproctitle-1.3.4-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2db8bab0ea0c36a1f868ac94433b6b9aa2f4891284f59394f4a904fe972d3049",
"md5": "503a7614220addc9aa127c790bdb62c9",
"sha256": "62d66e0423e3bd520b4c897063506b309843a8d07343fbfad04197e91a4edd28"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "503a7614220addc9aa127c790bdb62c9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 30010,
"upload_time": "2024-11-17T08:29:00",
"upload_time_iso_8601": "2024-11-17T08:29:00.489303Z",
"url": "https://files.pythonhosted.org/packages/2d/b8/bab0ea0c36a1f868ac94433b6b9aa2f4891284f59394f4a904fe972d3049/setproctitle-1.3.4-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d5b772dc7be8352f53b830cb64738b6a83878dbcd7db587c07e902cb3a19aa2",
"md5": "78eeddc1699ea51730c3cfe84d1d019e",
"sha256": "5edd01909348f3b0b2da329836d6b5419cd4869fec2e118e8ff3275b38af6267"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "78eeddc1699ea51730c3cfe84d1d019e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 11358,
"upload_time": "2024-11-17T08:29:01",
"upload_time_iso_8601": "2024-11-17T08:29:01.681787Z",
"url": "https://files.pythonhosted.org/packages/6d/5b/772dc7be8352f53b830cb64738b6a83878dbcd7db587c07e902cb3a19aa2/setproctitle-1.3.4-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9244ed9d16915df44b9ce9f90a7eff40fefa6f3b5625cdd0d08e7cf656c98d3",
"md5": "997d7914ae2352d48c56e1c218bb3c9e",
"sha256": "59e0dda9ad245921af0328035a961767026e1fa94bb65957ab0db0a0491325d6"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "997d7914ae2352d48c56e1c218bb3c9e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 12058,
"upload_time": "2024-11-17T08:29:02",
"upload_time_iso_8601": "2024-11-17T08:29:02.907113Z",
"url": "https://files.pythonhosted.org/packages/f9/24/4ed9d16915df44b9ce9f90a7eff40fefa6f3b5625cdd0d08e7cf656c98d3/setproctitle-1.3.4-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6356699df6a7b808ff737795359e843f640ed646a3274dcd5c9c47caf9e888be",
"md5": "673c1f426c337ddfc4e5d3fddf8ac99d",
"sha256": "bdaaa81a6e95a0a19fba0285f10577377f3503ae4e9988b403feba79da3e2f80"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "673c1f426c337ddfc4e5d3fddf8ac99d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 16849,
"upload_time": "2024-11-17T08:29:04",
"upload_time_iso_8601": "2024-11-17T08:29:04.652419Z",
"url": "https://files.pythonhosted.org/packages/63/56/699df6a7b808ff737795359e843f640ed646a3274dcd5c9c47caf9e888be/setproctitle-1.3.4-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61533686507b4c9950e915e6474e9c924053d2484bf3485dd88a789d89a8eec9",
"md5": "3e07d623485e2ba653972bdfe7821cf4",
"sha256": "4ee5b19a2d794463bcc19153dfceede7beec784b4cf7967dec0bc0fc212ab3a3"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3e07d623485e2ba653972bdfe7821cf4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 11617,
"upload_time": "2024-11-17T08:29:05",
"upload_time_iso_8601": "2024-11-17T08:29:05.800688Z",
"url": "https://files.pythonhosted.org/packages/61/53/3686507b4c9950e915e6474e9c924053d2484bf3485dd88a789d89a8eec9/setproctitle-1.3.4-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7a0cf37a410fd4ff89866217699bc8e6528523ea46177f7fa2fcd3e05c58039",
"md5": "e7f553c85c6374735afcca73b409213e",
"sha256": "3058a1bb0c767b3a6ccbb38b27ef870af819923eb732e21e44a3f300370fe159"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e7f553c85c6374735afcca73b409213e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 30932,
"upload_time": "2024-11-17T08:29:07",
"upload_time_iso_8601": "2024-11-17T08:29:07.109402Z",
"url": "https://files.pythonhosted.org/packages/a7/a0/cf37a410fd4ff89866217699bc8e6528523ea46177f7fa2fcd3e05c58039/setproctitle-1.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2025189b1b49ff32719469f404b7494b16aa2eb20065c2c984ef6159ef13bceb",
"md5": "e3ee016bf5027496542ee82fa160b2c9",
"sha256": "5a97d37ee4fe0d1c6e87d2a97229c27a88787a8f4ebfbdeee95f91b818e52efe"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e3ee016bf5027496542ee82fa160b2c9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 32274,
"upload_time": "2024-11-17T08:29:09",
"upload_time_iso_8601": "2024-11-17T08:29:09.079357Z",
"url": "https://files.pythonhosted.org/packages/20/25/189b1b49ff32719469f404b7494b16aa2eb20065c2c984ef6159ef13bceb/setproctitle-1.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c6323f7b0fd200b64393ba5c53632c85ea6950fbe4de40e8aa937b81b65ccf3",
"md5": "625eeaa1750e89d40855d97fda52e8c2",
"sha256": "6e61dd7d05da11fc69bb86d51f1e0ee08f74dccf3ecf884c94de41135ffdc75d"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "625eeaa1750e89d40855d97fda52e8c2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29368,
"upload_time": "2024-11-17T08:29:11",
"upload_time_iso_8601": "2024-11-17T08:29:11.031231Z",
"url": "https://files.pythonhosted.org/packages/2c/63/23f7b0fd200b64393ba5c53632c85ea6950fbe4de40e8aa937b81b65ccf3/setproctitle-1.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27977624734a3d58a34d3e42f51f50e01a291b13c0a1db2992a110718226f40c",
"md5": "35554c03dec4c5297a72eb5ad1814ee4",
"sha256": "1eb115d53dc2a1299ae72f1119c96a556db36073bacb6da40c47ece5db0d9587"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "35554c03dec4c5297a72eb5ad1814ee4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 30401,
"upload_time": "2024-11-17T08:29:12",
"upload_time_iso_8601": "2024-11-17T08:29:12.340312Z",
"url": "https://files.pythonhosted.org/packages/27/97/7624734a3d58a34d3e42f51f50e01a291b13c0a1db2992a110718226f40c/setproctitle-1.3.4-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": {
"blake2b_256": "ec94293a7ad8852eb05090bcd1b66f6c4918035d1652c9a5afa2978e424d46a7",
"md5": "1abebc3d61e00696e8d468c4a021ca42",
"sha256": "342570716e2647a51ea859b8a9126da9dc1a96a0153c9c0a3514effd60ab57ad"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1abebc3d61e00696e8d468c4a021ca42",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 30232,
"upload_time": "2024-11-17T08:29:13",
"upload_time_iso_8601": "2024-11-17T08:29:13.699316Z",
"url": "https://files.pythonhosted.org/packages/ec/94/293a7ad8852eb05090bcd1b66f6c4918035d1652c9a5afa2978e424d46a7/setproctitle-1.3.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c489d0a4d0cfe157246ca7a215af782e313ac68d02c0f400c0c644a349449e94",
"md5": "14bc5f18f0948b321a97399b2f7bf99b",
"sha256": "0ad212ae2b03951367a69584af034579b34e1e4199a75d377ef9f8e08ee299b1"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "14bc5f18f0948b321a97399b2f7bf99b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29117,
"upload_time": "2024-11-17T08:29:14",
"upload_time_iso_8601": "2024-11-17T08:29:14.999784Z",
"url": "https://files.pythonhosted.org/packages/c4/89/d0a4d0cfe157246ca7a215af782e313ac68d02c0f400c0c644a349449e94/setproctitle-1.3.4-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "114535426ee8961cc9fbd63322c166e65d2da328e42c96140659d64a2d575fb9",
"md5": "66208600dad4dafd9639eef3fe302cee",
"sha256": "4afcb38e22122465013f4621b7e9ff8d42a7a48ae0ffeb94133a806cb91b4aad"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "66208600dad4dafd9639eef3fe302cee",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 31529,
"upload_time": "2024-11-17T08:29:16",
"upload_time_iso_8601": "2024-11-17T08:29:16.323810Z",
"url": "https://files.pythonhosted.org/packages/11/45/35426ee8961cc9fbd63322c166e65d2da328e42c96140659d64a2d575fb9/setproctitle-1.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0286c3e6b76af44248ce82e60452614e071241f26f0341b8296a1af4a9da0a7b",
"md5": "986dfc8b398c588bf72b70be14cf0421",
"sha256": "30bb223e6c3f95ad9e9bb2a113292759e947d1cfd60dbd4adb55851c370006b2"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "986dfc8b398c588bf72b70be14cf0421",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29637,
"upload_time": "2024-11-17T08:29:17",
"upload_time_iso_8601": "2024-11-17T08:29:17.690275Z",
"url": "https://files.pythonhosted.org/packages/02/86/c3e6b76af44248ce82e60452614e071241f26f0341b8296a1af4a9da0a7b/setproctitle-1.3.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fec84a30fa67b84a94b211e2aea99309be9c0ac1411dc14416cc59c3856295eb",
"md5": "91d4ad532142488fa0cdb187f5bf3ebf",
"sha256": "5f0521ed3bb9f02e9486573ea95e2062cd6bf036fa44e640bd54a06f22d85f35"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "91d4ad532142488fa0cdb187f5bf3ebf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 11364,
"upload_time": "2024-11-17T08:29:19",
"upload_time_iso_8601": "2024-11-17T08:29:19.397719Z",
"url": "https://files.pythonhosted.org/packages/fe/c8/4a30fa67b84a94b211e2aea99309be9c0ac1411dc14416cc59c3856295eb/setproctitle-1.3.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60fedfade1421063643b0719d39e4d6cd5dc3eab8022a5652b78e491c5c9fa63",
"md5": "f521f58dc9bc1b5e7808de4af3aba963",
"sha256": "0baadeb27f9e97e65922b4151f818b19c311d30b9efdb62af0e53b3db4006ce2"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "f521f58dc9bc1b5e7808de4af3aba963",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 12058,
"upload_time": "2024-11-17T08:29:20",
"upload_time_iso_8601": "2024-11-17T08:29:20.624705Z",
"url": "https://files.pythonhosted.org/packages/60/fe/dfade1421063643b0719d39e4d6cd5dc3eab8022a5652b78e491c5c9fa63/setproctitle-1.3.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fd0775418662081d44b91da236ed4503e10e7008c9c5fd30193e13db388fbef",
"md5": "3eb956a2ed5331b568e31dc65004ae8e",
"sha256": "939d364a187b2adfbf6ae488664277e717d56c7951a4ddeb4f23b281bc50bfe5"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3eb956a2ed5331b568e31dc65004ae8e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 11153,
"upload_time": "2024-11-17T08:29:21",
"upload_time_iso_8601": "2024-11-17T08:29:21.691154Z",
"url": "https://files.pythonhosted.org/packages/2f/d0/775418662081d44b91da236ed4503e10e7008c9c5fd30193e13db388fbef/setproctitle-1.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd1fb3b82633336cd9908bf74cbc06dd533025b3d3c202437c4e3d0bc871ca13",
"md5": "921022757e57b53b764e39aa38dbee7a",
"sha256": "cb8a6a19be0cbf6da6fcbf3698b76c8af03fe83e4bd77c96c3922be3b88bf7da"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "921022757e57b53b764e39aa38dbee7a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 13310,
"upload_time": "2024-11-17T08:29:22",
"upload_time_iso_8601": "2024-11-17T08:29:22.883988Z",
"url": "https://files.pythonhosted.org/packages/fd/1f/b3b82633336cd9908bf74cbc06dd533025b3d3c202437c4e3d0bc871ca13/setproctitle-1.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f589887c6872ceed5ca344d25c8cc8a3f9b99bbcb25613c4b680476b29aabe23",
"md5": "8d50eb36bf44ac56546b906e00af02c6",
"sha256": "779006f9e1aade9522a40e8d9635115ab15dd82b7af8e655967162e9c01e2573"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8d50eb36bf44ac56546b906e00af02c6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 12911,
"upload_time": "2024-11-17T08:29:24",
"upload_time_iso_8601": "2024-11-17T08:29:24.208889Z",
"url": "https://files.pythonhosted.org/packages/f5/89/887c6872ceed5ca344d25c8cc8a3f9b99bbcb25613c4b680476b29aabe23/setproctitle-1.3.4-pp310-pypy310_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": {
"blake2b_256": "b08d9e4a4651b1c5845a9aec0d2c08c65768ba5ca2ec76598124b45d384a5f46",
"md5": "3f9d46a095c8c22b0db55306894c8ec0",
"sha256": "5519f2a7b8c535b0f1f77b30441476571373add72008230c81211ee17b423b57"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "3f9d46a095c8c22b0db55306894c8ec0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 12105,
"upload_time": "2024-11-17T08:29:25",
"upload_time_iso_8601": "2024-11-17T08:29:25.440766Z",
"url": "https://files.pythonhosted.org/packages/b0/8d/9e4a4651b1c5845a9aec0d2c08c65768ba5ca2ec76598124b45d384a5f46/setproctitle-1.3.4-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7dae23452dac85ae4516c61a8fda96d231faf7cd4f4ad1a4475a5663ee508815",
"md5": "bb2e41bf65ba360f6ef07a5e9f3e39bc",
"sha256": "743836d484151334ebba1490d6907ca9e718fe815dcd5756f2a01bc3067d099c"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bb2e41bf65ba360f6ef07a5e9f3e39bc",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 11148,
"upload_time": "2024-11-17T08:29:26",
"upload_time_iso_8601": "2024-11-17T08:29:26.974898Z",
"url": "https://files.pythonhosted.org/packages/7d/ae/23452dac85ae4516c61a8fda96d231faf7cd4f4ad1a4475a5663ee508815/setproctitle-1.3.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0565aa2aeb42b3776254d3895f0498c375013fcb7a298f9a0f4de4a679b7eb1e",
"md5": "5f7911093e4e3986f39ab4ff4b7581a6",
"sha256": "abda20aff8d1751e48d7967fa8945fef38536b82366c49be39b83678d4be3893"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5f7911093e4e3986f39ab4ff4b7581a6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 13321,
"upload_time": "2024-11-17T08:29:28",
"upload_time_iso_8601": "2024-11-17T08:29:28.061092Z",
"url": "https://files.pythonhosted.org/packages/05/65/aa2aeb42b3776254d3895f0498c375013fcb7a298f9a0f4de4a679b7eb1e/setproctitle-1.3.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce6f756aea262111d00b36afdfd60a5e49a72c3aebd359eec814978e6acfef83",
"md5": "0783c4d34a41f3a58bdc4a8eb03b5e20",
"sha256": "1a2041b5788ce52f218b5be94af458e04470f997ab46fdebd57cf0b8374cc20e"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0783c4d34a41f3a58bdc4a8eb03b5e20",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 12905,
"upload_time": "2024-11-17T08:29:29",
"upload_time_iso_8601": "2024-11-17T08:29:29.433751Z",
"url": "https://files.pythonhosted.org/packages/ce/6f/756aea262111d00b36afdfd60a5e49a72c3aebd359eec814978e6acfef83/setproctitle-1.3.4-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": {
"blake2b_256": "b6049c5a4b0d216f5c0f4a09d6ea75973794fa92b7647e7e5094c2c53a764cd1",
"md5": "e6406f3b22c0f15d3128f332286465d4",
"sha256": "2c3b1ce68746557aa6e6f4547e76883925cdc7f8d7c7a9f518acd203f1265ca5"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "e6406f3b22c0f15d3128f332286465d4",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 12090,
"upload_time": "2024-11-17T08:29:30",
"upload_time_iso_8601": "2024-11-17T08:29:30.579046Z",
"url": "https://files.pythonhosted.org/packages/b6/04/9c5a4b0d216f5c0f4a09d6ea75973794fa92b7647e7e5094c2c53a764cd1/setproctitle-1.3.4-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c1050a602f98e12284890a57ca0384e9efe45087c075d58953032d5c042134c",
"md5": "be86d5410ffb6fa8cce0121a0ed76b16",
"sha256": "0b6a4cbabf024cb263a45bdef425760f14470247ff223f0ec51699ca9046c0fe"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "be86d5410ffb6fa8cce0121a0ed76b16",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 11152,
"upload_time": "2024-11-17T08:29:31",
"upload_time_iso_8601": "2024-11-17T08:29:31.679285Z",
"url": "https://files.pythonhosted.org/packages/6c/10/50a602f98e12284890a57ca0384e9efe45087c075d58953032d5c042134c/setproctitle-1.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18d46264e2f8428598046610fa681aa1008605a0bd9cfe6220dcdc639d07361b",
"md5": "e585df024673447d8f1934e1301e6ee8",
"sha256": "3e55d7ecc68bdc80de5a553691a3ed260395d5362c19a266cf83cbb4e046551f"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e585df024673447d8f1934e1301e6ee8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 13306,
"upload_time": "2024-11-17T08:29:32",
"upload_time_iso_8601": "2024-11-17T08:29:32.918819Z",
"url": "https://files.pythonhosted.org/packages/18/d4/6264e2f8428598046610fa681aa1008605a0bd9cfe6220dcdc639d07361b/setproctitle-1.3.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e85adfbe448969137d790dade35e2d5573b0ecc678ea371d4177f9bd7027ee17",
"md5": "03b897279d8f7fcde2b2e5017ea6e27c",
"sha256": "02ca3802902d91a89957f79da3ec44b25b5804c88026362cb85eea7c1fbdefd1"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "03b897279d8f7fcde2b2e5017ea6e27c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 12905,
"upload_time": "2024-11-17T08:29:34",
"upload_time_iso_8601": "2024-11-17T08:29:34.452584Z",
"url": "https://files.pythonhosted.org/packages/e8/5a/dfbe448969137d790dade35e2d5573b0ecc678ea371d4177f9bd7027ee17/setproctitle-1.3.4-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": {
"blake2b_256": "87f49a97dd161cbf32331e24742d6aa32385d37b29b18ae45881f2863c6868c3",
"md5": "3a06a7a65fb8068efeb3561c12b14cb6",
"sha256": "47669fc8ed8b27baa2d698104732234b5389f6a59c37c046f6bcbf9150f7a94e"
},
"downloads": -1,
"filename": "setproctitle-1.3.4-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "3a06a7a65fb8068efeb3561c12b14cb6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 12090,
"upload_time": "2024-11-17T08:29:36",
"upload_time_iso_8601": "2024-11-17T08:29:36.294744Z",
"url": "https://files.pythonhosted.org/packages/87/f4/9a97dd161cbf32331e24742d6aa32385d37b29b18ae45881f2863c6868c3/setproctitle-1.3.4-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae4eb09341b19b9ceb8b4c67298ab4a08ef7a4abdd3016c7bb152e9b6379031d",
"md5": "9971bff3c4dc79e31565f1f79adb97af",
"sha256": "3b40d32a3e1f04e94231ed6dfee0da9e43b4f9c6b5450d53e6dd7754c34e0c50"
},
"downloads": -1,
"filename": "setproctitle-1.3.4.tar.gz",
"has_sig": false,
"md5_digest": "9971bff3c4dc79e31565f1f79adb97af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 26456,
"upload_time": "2024-11-17T08:29:38",
"upload_time_iso_8601": "2024-11-17T08:29:38.085894Z",
"url": "https://files.pythonhosted.org/packages/ae/4e/b09341b19b9ceb8b4c67298ab4a08ef7a4abdd3016c7bb152e9b6379031d/setproctitle-1.3.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-17 08:29:38",
"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"
}