Skip to main content

A Python module to customize the process title

Project description

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 module is a Python wrapper around PostgreSQL code.

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.

Usage

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.

Releases history

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

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

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

setproctitle-1.3.0.tar.gz (26.8 kB view details)

Uploaded Source

Built Distributions

setproctitle-1.3.0-pp39-pypy39_pp73-win_amd64.whl (11.6 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (10.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.0-pp38-pypy38_pp73-win_amd64.whl (11.6 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (10.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.0-pp37-pypy37_pp73-win_amd64.whl (11.6 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (10.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.0-cp310-cp310-win_amd64.whl (11.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

setproctitle-1.3.0-cp310-cp310-win32.whl (10.8 kB view details)

Uploaded CPython 3.10 Windows x86

setproctitle-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

setproctitle-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl (39.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.0-cp310-cp310-musllinux_1_1_i686.whl (36.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

setproctitle-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (38.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

setproctitle-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl (11.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

setproctitle-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (16.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

setproctitle-1.3.0-cp39-cp39-win_amd64.whl (11.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.3.0-cp39-cp39-win32.whl (10.8 kB view details)

Uploaded CPython 3.9 Windows x86

setproctitle-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (37.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

setproctitle-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl (39.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.0-cp39-cp39-musllinux_1_1_i686.whl (36.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

setproctitle-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (37.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

setproctitle-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl (11.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

setproctitle-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (16.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

setproctitle-1.3.0-cp38-cp38-win_amd64.whl (11.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

setproctitle-1.3.0-cp38-cp38-win32.whl (10.8 kB view details)

Uploaded CPython 3.8 Windows x86

setproctitle-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (38.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

setproctitle-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl (40.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.0-cp38-cp38-musllinux_1_1_i686.whl (37.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

setproctitle-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl (38.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

setproctitle-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl (11.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

setproctitle-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (16.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

setproctitle-1.3.0-cp37-cp37m-win_amd64.whl (11.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

setproctitle-1.3.0-cp37-cp37m-win32.whl (10.8 kB view details)

Uploaded CPython 3.7m Windows x86

setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (38.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (40.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl (37.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl (39.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

setproctitle-1.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

setproctitle-1.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

setproctitle-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (11.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file setproctitle-1.3.0.tar.gz.

File metadata

  • Download URL: setproctitle-1.3.0.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0.tar.gz
Algorithm Hash digest
SHA256 ff0facafbe4e4e3b336814ffee99e41b4d6065f512cf5616e0a1bf689aca2af6
MD5 6fc1f8de0173af2b71b48c8d1ee48035
BLAKE2b-256 39c8d97b2903e728672e810b528ac144e996d7e116eb63cb7d2f9d66301b4905

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 52b5ca0a944260b0571abad358920e67384b61e960dbb6e5c8453c9be0a9aa2e
MD5 aec5e9d5bda8e82924279c6f75232dbd
BLAKE2b-256 1c3423d6a458a1cb65ddac908d1f06be79af5544c394d942da1158096ef1ff62

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d66d5eec62d766266b8dadf49bc8758fb0f61b05afb8eb56aaa8c9e166b5143
MD5 49cdd9643d370ec24b293d0dfe5571f9
BLAKE2b-256 47d4a2e0a7e91326163d263ff111be32dd88d84ed13fbdd3f85e0d0844c0f1c2

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77eaca7c4ee66f1c1c62d49f64e1a4598f7b9522aeb3109c0e623eb6cf39cbe4
MD5 19ba32b86f4eb3638739eb2e3dae2ed8
BLAKE2b-256 019f00053ad4bd1cec03ec5112612c58677e68bd334f3b3149562c0822b99305

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47dc1a32ed89d15ecee510c839e705e78a8897100c1aaad5a3f75271b582ade7
MD5 5c0f9ea2231b0b392aeef4bfa71bd3ce
BLAKE2b-256 961b1038f480187fcfedaa465041a4be218b29a674527dbefa8e0cdea0e27564

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8dd80d81189760d4d2d9f62bd3ca779c072bbad83e08d280061d375a2cd7e353
MD5 93de72d8ad1fd56ed364222e8456c909
BLAKE2b-256 ae1bc1b766a4fb5223a8b81a22d570f7f8294ddbf692cc97b78e848b86ad9526

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04956672da66a1db56bf46ca4e842de0bee3c37afbb0f5c0037e729293faff0b
MD5 ccef6249a76079cf43a0041b64ac8a9f
BLAKE2b-256 de4e2066719c9d71c9bb47c8c9c9530553c191baf7d74a4aa0fb5ca01ae5455c

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfb226299ed76b42b9282539712605f0c029c18cf1c0ecb3957947b512d57abb
MD5 74ee4fe779a9dd5e5a1d2884fbc3fd25
BLAKE2b-256 f3d1e8c707b1d2ff6d742b2643161837bd50a771277afc9ea6081559098be8b8

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8ba0403b1ee5d43034ddd9c11134b4a063a4d394ebdb8f132083cb8af5dad74
MD5 8fd03cceb3e3f02b8b2f8aa47bcc9953
BLAKE2b-256 723fdfbebe700f58a2fbe6c25a76a05e9cfc23956116b788f4183301fa8a5b1a

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9b5ff30f941512fa7b7e062a5fdac75a6a699b26d855c2b8216f36d03bbb3cec
MD5 bd7c79de2a573447852581d5e7fefdb1
BLAKE2b-256 c1c7a9e9b6995ea8e7710fb95294e94e66026edd2ac1b8e376271f3d8c4e4f86

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02ad5a6ff0c90842d5a09c96d169e874fea0b76098fbf21b6a82ac7c91959dd2
MD5 ecee41d8af63bc38e0cfc8f7b77e1816
BLAKE2b-256 a6e0ea1eb7295e17f8640ace3965066c9d9765089ce617a7d854c77ebbec0ab1

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f4912259fc650e551c126bdcc325867b0dd258851c522bfa79099bc4f1413e0
MD5 1abaf72e30415096e67a11cd6076ca2b
BLAKE2b-256 f60106fab7d1652fc33e7b6481515f99a04d5c7f16de854e03d25c78d2def7a0

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45e8f003552680ad67a81c683e1b1e418bd9cb27dd43e1c9f7fc4b2ee122ab2b
MD5 d73bba76c52044682e487a23ab02cfd9
BLAKE2b-256 05b4c4b6334b9f7dfbf805f11888166ae1beea57c21b080c9c5d5934c2c92628

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e096189c01027582754399c1b44ddc3e85c541687424f34ec5f40c962d4fc70
MD5 d13e60c361e08b7aa1189faa53d498e3
BLAKE2b-256 7ea6948cdd82a28104b9039a99b92c43d58e7221ab978fc6ec5edb5346b6ad4e

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd01a405c4067627adc108bce3dcd52df63acd25a5d05fe4a57da028e0dbf9f1
MD5 25147b9cf7b807405e49ecd20965c7d3
BLAKE2b-256 66cdde5343099634dc12fdd43903a9f82d2d37f364f3738790d2c9aaf0c61942

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 38.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cfa23372e67a4b8fed4a457425019396b6d2105ef08ca2ec6a5ea526132890fa
MD5 32cab310b01ba76ac879b21d610f8d78
BLAKE2b-256 ad421db547f0c325e3d0a7e64668280cc7f4a9c87874bc28a487c5132fb91be8

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d6432875eb5b9bc38f296502293c27a2a44a00cf3b8ff41240786ada18190935
MD5 57450256ad3a30ab735b557d1c886595
BLAKE2b-256 420674fde01f777eb83f707555c6a2866cf00bff6c49e8774b532042c86aa8b8

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9be941760377ba6588e31f0f08885353333e776497073419e716b53989c17df5
MD5 8e48c5a1b6e999b70ee3adbdfc47f24e
BLAKE2b-256 25fdd253098fa126dc8a9fdd1e0960dc9fb2f3c6a42dafe9cc223db1c07faf9b

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 df974b2353e28171dce86f50c1b3b86a3b25017868d613aba4f7249decc3d631
MD5 b68b404a7250ecdcd56847245b631718
BLAKE2b-256 fffeb8ead3173e1eecebf36633ae59e625d8f2e156cfe981c984a74e5fdc2ba6

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2873bbcb4f58bdc49c8d21f8ac017233b13c63ad7652925b196c578e0433f2dc
MD5 0f7133e09f0c9d0e687324dacd361734
BLAKE2b-256 2a23310e07e69178a4c2e061771077a07dcae401113e58d1daca9a23dfcab866

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f8ad35d1c862230990375805a44aa70879ed74af846377e5170a0577a140ee2
MD5 5d50563f44b1f6f9120d2d7305416cd5
BLAKE2b-256 e65a5ecf97fe50b16c45f77dbd998a0ab00b7b48b4318546d39f0b43a7965ffc

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed6378e9640879f7ea058f90a484d2e457f3eb0be95e260d292f3e3381d16d63
MD5 7779541b8eef101d6592776c4315bc40
BLAKE2b-256 9c43fc59ccbe3cd08507ab0e4a9aba3b4e98a2fd908228eed5af1eaa8fbcad22

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 603a9be8f288795e47a19ba80ed2b344af7aa7873a00d4a307d55c193005cb01
MD5 412a7f9fbf580088cc9a36fa3663225f
BLAKE2b-256 af437587503f48872a654389df63c9ddeb23381994420baab09b9e06b12bae7b

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc6720c7f074ed742df44c2da9e7fb38fc831476ba5ade4bdde0d38f243539f7
MD5 f8e65dd6fae2cf5c14e81d47512cc151
BLAKE2b-256 44869b11220598d89205f509b29093f72db47e240c51ca13380366eee755fa8c

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 20cd3763b7140fb5305a2c3d685904ff87ab67b1ae3eae5991cae0e9dec1fc85
MD5 03de166940b6223ade8d218557594d6a
BLAKE2b-256 b0b30df665f13cd5477e134a2d0ce43d5ee5c1d8bc1fb07d7655e1fe3a1c7b95

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f2805bd226133b4661ac2abfc616fb8527a5c4dde0e73780cb180cc7e8b2d3d8
MD5 0d6e71ca7e7452181440c9bc6332175c
BLAKE2b-256 32ea82be7e8954809d27e114adf56938343ca04de050aff4545843bdae0bdc43

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d385a0a4380e766dc44337c828eadff3f4239d1f3970ceaaddc27396446ae290
MD5 b62c0165ff429a7492876bd7e9874755
BLAKE2b-256 a10fb80ce5464752c1f28705a37105588047fd3c502324f0a7ce7a5c02bb8538

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 37.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00cdb012e6fd3945d124be557492398ffad4a89ca683f6a962d07af7748ca5d2
MD5 114d0904f45450e821a4550ba7370453
BLAKE2b-256 f67f6c0867070356cef9d171357af3a48200dc5f2193bc4a8dee12e68991ef85

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 39.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 48fb5f3d4e84a04f038e920e35bff179dea72ce903abff110155edb1d758366d
MD5 d6497d81f0ef3224fd605a1bc4bb2e10
BLAKE2b-256 bd72b9cbd059b5d5381c4ed85d8f92fa8f4df7205e06c32516726c1ceca775d2

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 51c83110b6024d833a012a19a8ad37c07a27cdf2dfd5df54cc60fdfbfd746ab7
MD5 5fd7a9563922348d7bc2db92a4995827
BLAKE2b-256 867c7dc06b22c9aaac5df3deaa03481eed59c0ac43ff94a1b8249860f04a9571

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 37.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ca3fbe16a752293cf8a88cc4404d1c443462f1f31bb83aaff86b5e9187a310b
MD5 cbae0b494e80378286094019acd8f9b8
BLAKE2b-256 bb027f235493168badd380a0133a2588cf104d1fb95cd83b516aa6525c3fd0bd

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f5fec0756b7295323101d3618c094d60d3512a3d35df68f5ce4150c295728c1
MD5 0ed558bc2f88d27dedd338ecd7e4e79d
BLAKE2b-256 b7961b975965c8b5f0dd3ca6bdf359bccb9213b8219853ec4bee47ff97a638a0

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4df22f1eda45feb9a0c38fd0c257a40399f69f78a6dfce3a4c35c9538998ef40
MD5 c6ade32cc790c33cd264a346879d0620
BLAKE2b-256 9fd4ee6015cb36dc745d3a0cd4f9a526a557fc295c429b9e2ae5ec06e55fdf27

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b5ee3ff16638784546b2aa683deca670d174dc58fcfd71643dcb0cdf872c07a
MD5 845d94653c73d34f3247afbfd2fcdfbd
BLAKE2b-256 cdb5cbc8f70b716f43eeafbda08af25debc1a705d1f096b6f833288ee66b72bd

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6096439e613f0a75870a0bf597ba68bff68e0610ab1a7bd487b326b72b2fd9d8
MD5 70eff1ba1ee9e3f985c545bec4a1e760
BLAKE2b-256 ffe306e55a0cdb80f944367a2f7bbe0de5fee7cc6a13cd32eb1d3346f77c2ca2

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcd05ae0e1666ef1076272c6140f68f1a5b8081bd36ba50cbee59d236abab9a7
MD5 0529738416cbfd75c4a00c7f2da44cdf
BLAKE2b-256 431014d870046f6b435031f131f03979d46f98169ed614b1a95c25e646de267b

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ebafe5ff06864690acfc9498482e2361fba097167d7b254de94cb06095959bbe
MD5 84a917f6f72df1ea15deb0dd637f5146
BLAKE2b-256 631e12b2af4b2515d95f6d1dc9dfa5b9abc193e8e7d522718fe67cdfbca93732

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bf3496d46d0e4f301612ead14097dc1cebaf6d512a586a640eb69702e6a0c820
MD5 598e11b5d03f98f2498b214bd9d5b776
BLAKE2b-256 4ed7cb3d441a8f576d612042c07562cddab06237e57086668ce26c39f430781e

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c65834f62a8f23441bf9db37ab3ce244c68bebafa31474e1309cc310f761388
MD5 92f94adbce9ef88863d6d1c3bff9d721
BLAKE2b-256 8910c0417cacea64d02ee416d93615a1aff537efbf37ed714d3d2cf4fede4c12

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 38.5 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04f815ee39ca62a85c266157db229e6519ba212f3d8257a1be8999069bae41f9
MD5 472a0641ffd71ae819ab346c52707c3d
BLAKE2b-256 f5c472110c427f3ad8d0e3d8ba00a152d2fb26ea9a09aa02c1ee52574f5587cf

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 40.1 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9245a3627e758ec7d9a2ed5c15e602dc42f816be5be3bfe457c19fb34aeb9bfe
MD5 929c12a42c3f76f6e3d890ac3149dcd2
BLAKE2b-256 a3fb31faf9e1c9d1b0444992b8f9fac5ddd0a570e52b57fdcb49f994ec1f8ba8

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 713d444ea75489ebb50cdc055a1eea5f54b3e64c4f1e45238e7d1dcd556ccec5
MD5 ab88cfbc1c452d78076952dc111a8abd
BLAKE2b-256 17297c02679cbc7bc915cd08e8979e134f639d95badd927ed5de198514772f20

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 38.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4bb1a9e2651c682e3004fba61541a92e04c0d045573067e634578d16bfe29d5
MD5 2e1908b75a98014bf65afcf04b856246
BLAKE2b-256 59c583cbe2fdabbdf42ec9abf9a01ec96245e12a71c8be306164ab5578f3baea

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f3a10b10f0e28eac52516b62408ea8dad2cdbcfa7b1ac0eb2b17ca8e8cd880a
MD5 91f93a83bff0d182a26a60875ac79245
BLAKE2b-256 5874f41c85e126bf2a5cbc4c9227e9923092e6653366ede964e74484ccbbec64

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bf7cca24862c6304a0160b015df7f7550d6b5384f80b41abaadae14eb256a59
MD5 9febfa3eef351edb6d4c81dcca974ccb
BLAKE2b-256 a919c9c066398e8b26c328a2b073860c9b850b13a02b9652f45a21f3a0196d38

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 105b01c46a988382e69aa0a87c1ce4a58e6dbaaadbbe4f81bf4b81f6e169db70
MD5 48c99367123a96ea38f2c3cefbf92ff6
BLAKE2b-256 c889c901a0c762acacfef9eb10d13a35df524eeb4833588a1d4a164f968f72c0

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 689b34904e5c1c9e8df983ab16c88e9c2506d421a11989963810b5a95c9fbc8f
MD5 6ff4128765ecd674dfa08e88f5c2446b
BLAKE2b-256 d711496f41e93515207f9dc8346326f7ae48f740bfbde9b62aee3d3beaecb675

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e7b1523ec5109034acd81d060cd5b747e30970f441864c407c4051ec37a8fe6
MD5 9ec0fe98aa833ef20af1ac596779cdb4
BLAKE2b-256 359ecaf3bfa7dc12856ebc463ea31a88e5c90e70bb844a4279df625d84a00732

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 10007ddebaa824f40cca03c053ddfaccb900d130517a2f90d86e016b3f0eb956
MD5 1422cad9e37c55a111f864edad6e5f50
BLAKE2b-256 495310c1635aa70d72e6b84c470ecf08dcdc0ae9c803fa13da8fa0a3b91d75d0

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bddf148999623c9d209cb168cfe893770f09e408b7af7ab2fa97c09cc5b8a207
MD5 55d8b1e01e9b33994cefe90a069a6355
BLAKE2b-256 5af1c0f41e867430f3589cde462845ee4daa5cc9704f06d2bc516a3cd3b4be77

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 671ea7411ff0dc686eecd8b7d8501e174e7c872cc69f235951c0f2cee38affde
MD5 6ad0e7c8606178bdd7c526e6926c0d08
BLAKE2b-256 15cd8f56f77e683206329f1956a91e451a82c6ffbd4fec9ccb57b4e114099bfb

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 38.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dfaed773d46ed73805966513b88823f8593060d4faa0c5ec69a0feb24bdeafc3
MD5 5eaf98d95e20d1975929ac3b37971251
BLAKE2b-256 973af949ee2bdff1742be042b82c2d5a67fe1fd675f3201a567ba5d63c32c29f

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 02ecc2df61160b423d8fcbf9a01113c35efebbb3a604d2a4e15c869aca357280
MD5 f120d919cfcfe2ce7b785c4f231ec5c5
BLAKE2b-256 017127425a6f64a9f158937d82e5f692ea0c3d086c8c0583fb6c2f26f21fdf0c

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 37.4 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1417f04346c1bc2572c42d022238cecc6967eea637fad350fa71f10dd7656fb9
MD5 966b2db55cc2726a82ddd98f8657473e
BLAKE2b-256 8af741f75c389c79b2921bff858c69e127349f9ff879631a1daf529f92b83382

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4087f7d273fe8a88e8ef23c14a734833136e75e53e24bb2f85586afa59a576cd
MD5 43a23fa08396e238adef8e3ae12b37cc
BLAKE2b-256 1a8aa618b6133288309b641538b5d75e614c5088c6d03d9a705c7023624cdf85

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4cb0d9fec5b298df0b7f5e89a3ed7781ea44d3d6bb6b2144ff733becdb9d2ee
MD5 e58df40baf56600d10f72836fa4ed7be
BLAKE2b-256 5a16ddbcbb72414f767868daaf226740be80326f9471de44e03c9ddaa4147235

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 923bc92a384a9744ba8a6163c111f6ac275898630cef7a457549b39892abe69f
MD5 1ce62b7abe0f9233b751558eb9c95907
BLAKE2b-256 206b55356547544e58db2ece576445859c300603fdc02ff88ad3f6d33b454164

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00d7f45b3a1ae7b184c5c3ae02953952fb6457dddc38dfb01c5ec0d2561cdfea
MD5 f78e7a6c639ac3157791d4f6b1dc7243
BLAKE2b-256 ac2f8208730db3a74e2c64c93764ed6975b52ab76618a506c34f39d12fdf3514

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c40f92dfc905250fc5170a7ac352186493788967daf0b632d56a575173e5430f
MD5 3d16aad9842ff49ea682d817dbe44afa
BLAKE2b-256 1d96fba2472ddd3dfa40a0fbffce0f5fdf70c724bb8a0303a99f1d5add5e1457

See more details on using hashes here.

Provenance

File details

Details for the file setproctitle-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.10

File hashes

Hashes for setproctitle-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cc7d4cb04708932786c81d2f793e821547643a7c850d98063f782974e95cd47
MD5 a877d99ede91c0ff0a25d9b48b0e5a93
BLAKE2b-256 9aed305e227e474be329ee6737ebd8af38da3632aa1b8d8280e018cf7c061470

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page