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 and top).

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.2.3

  • Added Python 3.10 packages (issue #102).

  • Added Wheel packages for macOS (issue #96).

Version 1.2.2

  • Fixed Windows build (issues #89, #90).

  • Added wheel packages for Windows (issues #47, #90).

  • Added wheel packages for aarch64 (issues #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 (#52)

  • Improved build on BSD, dropped ancient versions (issue #67).

  • Fixed build for Python 3.8 (#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.2.3.tar.gz (23.6 kB view details)

Uploaded Source

Built Distributions

setproctitle-1.2.3-pp39-pypy39_pp73-win_amd64.whl (10.7 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.2.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.7 kB view details)

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

setproctitle-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (12.0 kB view details)

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

setproctitle-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.2.3-pp38-pypy38_pp73-win_amd64.whl (10.7 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.2.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.7 kB view details)

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

setproctitle-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (12.0 kB view details)

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

setproctitle-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.2.3-pp37-pypy37_pp73-win_amd64.whl (10.7 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.2.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.7 kB view details)

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

setproctitle-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (12.0 kB view details)

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

setproctitle-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.2.3-cp310-cp310-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

setproctitle-1.2.3-cp310-cp310-win32.whl (9.8 kB view details)

Uploaded CPython 3.10 Windows x86

setproctitle-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

setproctitle-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl (36.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

setproctitle-1.2.3-cp310-cp310-musllinux_1_1_i686.whl (33.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

setproctitle-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl (34.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

setproctitle-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (31.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

setproctitle-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (29.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

setproctitle-1.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.4 kB view details)

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

setproctitle-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.4 kB view details)

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

setproctitle-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

setproctitle-1.2.3-cp310-cp310-macosx_10_9_universal2.whl (17.2 kB view details)

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

setproctitle-1.2.3-cp39-cp39-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.2.3-cp39-cp39-win32.whl (9.8 kB view details)

Uploaded CPython 3.9 Windows x86

setproctitle-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl (34.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

setproctitle-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl (36.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

setproctitle-1.2.3-cp39-cp39-musllinux_1_1_i686.whl (33.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

setproctitle-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl (34.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

setproctitle-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

setproctitle-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (29.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

setproctitle-1.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.1 kB view details)

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

setproctitle-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.2 kB view details)

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

setproctitle-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

setproctitle-1.2.3-cp39-cp39-macosx_10_9_universal2.whl (17.2 kB view details)

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

setproctitle-1.2.3-cp38-cp38-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

setproctitle-1.2.3-cp38-cp38-win32.whl (9.8 kB view details)

Uploaded CPython 3.8 Windows x86

setproctitle-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

setproctitle-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl (36.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

setproctitle-1.2.3-cp38-cp38-musllinux_1_1_i686.whl (33.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

setproctitle-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl (35.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

setproctitle-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (31.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

setproctitle-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

setproctitle-1.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.9 kB view details)

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

setproctitle-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.8 kB view details)

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

setproctitle-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

setproctitle-1.2.3-cp38-cp38-macosx_10_9_universal2.whl (17.2 kB view details)

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

setproctitle-1.2.3-cp37-cp37m-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

setproctitle-1.2.3-cp37-cp37m-win32.whl (9.8 kB view details)

Uploaded CPython 3.7m Windows x86

setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl (35.5 kB view details)

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

setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl (37.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_i686.whl (34.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl (35.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

setproctitle-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

setproctitle-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (29.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

setproctitle-1.2.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 kB view details)

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

setproctitle-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.2 kB view details)

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

setproctitle-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

setproctitle-1.2.3-cp36-cp36m-win_amd64.whl (10.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

setproctitle-1.2.3-cp36-cp36m-win32.whl (10.0 kB view details)

Uploaded CPython 3.6m Windows x86

setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl (34.3 kB view details)

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

setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl (35.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_i686.whl (33.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl (34.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

setproctitle-1.2.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

setproctitle-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (29.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

setproctitle-1.2.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 kB view details)

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

setproctitle-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.2 kB view details)

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

setproctitle-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl (10.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: setproctitle-1.2.3.tar.gz
  • Upload date:
  • Size: 23.6 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.2.3.tar.gz
Algorithm Hash digest
SHA256 ecf28b1c07a799d76f4326e508157b71aeda07b84b90368ea451c0710dbd32c0
MD5 617838f94d1cc366988233d1fdf1f355
BLAKE2b-256 789acf6bf4c472b59aef3f3c0184233eeea8938d3366bcdd93d525261b1b9e0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 97accd117392b1e57e09888792750c403d7729b7e4b193005178b3736b325ea0
MD5 d221731a2b17278abc472438a52d8353
BLAKE2b-256 62a4f617bcb929f390ee10a009dbc003a810daf632d4d4ccd9b79f64038e12b5

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06aab65e68163ead9d046b452dd9ad1fc6834ce6bde490f63fdce3be53e9cc73
MD5 c15fd772ed36287b66fb5a0172b2c648
BLAKE2b-256 dcc4aedc8b7d77317988c0a3347cdb360b7885941260eee18d529eb332323b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76f59444a25fb42ca07f53a4474b1545d97a06f016e6c6b8246eee5b146820b5
MD5 4a036b0fb5db691929d42bc8ad473ff8
BLAKE2b-256 e0d94e87a8cef46f9e1f4d25c67bb7a3cda1e63409b0f2bb94125679ac8029d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 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.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c93a2272740e60cddf59d3e1d35dbb89fcc3676f5ca9618bb4e6ae9633fdf13c
MD5 98601bc8e0105fa10dbc6ceb18c4dacd
BLAKE2b-256 4ee29c4d792960c5b2da2402b9e8cbe0322dd0a741d49c657a4f91217ce81b06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d312a170f539895c8093b5e68ba126aa131c9f0d00f6360410db27ec50bf7afa
MD5 856e7a90ce8cd13391d69cd40d7f1a2e
BLAKE2b-256 4a6502aa8b17fb86c1ba6222abcf494da4afb96a5c664aeb0b5b1075ca1db5aa

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65a9384cafdfed98f91416e93705ad08f049c298afcb9c515882beba23153bd0
MD5 acde3d3a26307b410463868e98d6bedf
BLAKE2b-256 c6ecc27956de6e2bf02bd8020ef6e7d89a69120215c200051ac31a45c29b6e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c0be45535e934deab3aa72ed1a8487174af4ea12cec124478c68a312e1c8b13
MD5 7c7630b536dcb7d4b27e88ea57aa765f
BLAKE2b-256 b78004f78d872b7ac2a5cf044449fe748a961f469e600cbd3e75e5bf8b06a346

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 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.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 423f8a6d8116acf975ebf93d6b5c4a752f7d2039fa9aafe175a62de86e17016e
MD5 b9b1e044e658cb540c9dd5f50dc96dc3
BLAKE2b-256 33454cdf1947ef7010f33854feea3a1bf08b560551c1939c05bddd7d2e8d7d01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9fb5d2e66f94eebc3d06cda9e71a3fffef24c5273971180a4b5628a37fae05a5
MD5 70947e1cbab87e410cea27f7cfa2413f
BLAKE2b-256 43af6a2a5d3e842bd886e82171ccc87ebd333fd8d09252d91f3f26cd0a9f1306

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48ac48a94040ef21be37366cbc8270fcba2ca103d6c64da6099d5a7b034f72d0
MD5 b92b0d7a1d8fbc6f0d66d1341f8a2f8f
BLAKE2b-256 eac5ae2e955b6ca3681a137149ade8cc900d296d59d59bec29cedf3f0e89e75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b207de9e4f4aa5265b36dd826a1f6ef6566b064a042033bd7447efb7e9a7664
MD5 f6f0a0780cbc97b0f2f35be74eb3afa8
BLAKE2b-256 def8b5e630e089f66eb3c2f0f1eee8a968d1244883d54a8d02aa79817de464c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 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.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3dbe87e76197f9a303451512088c18c96f09a6fc4f871a92e5bd695f46f94a26
MD5 a4ab9cbc9acc5f46c3f328d789dbd4a6
BLAKE2b-256 19917c615b1adc97fc45fcfe0b413fa9e8a77beefa661d2ff08aef4ab25e8d80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3b1883ccdbee624386dc046cfbcd80c4e75e24c478f35627984a79892e088b88
MD5 5f158f7e5d50201eb77b98582018c0aa
BLAKE2b-256 c1fb2481ea59a072b51f322460d753f846917ce7f40ecd4574db08c5ad263165

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.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.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e24fa9251cc22ddb88ef183070063fdca826c9636381f1c4fb9d2a1dccb7c2a4
MD5 cdd2e073b6fe1a03981f472907546067
BLAKE2b-256 ec76a357f5f2acc4efb96c48031457b35c073917bcde2e39ff0b09ed74d8ee7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 34.6 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.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b213376fc779c0e1a4b60008f3fd03f74e9baa9665db37fa6646e98d31baa6d8
MD5 075b919cf567e7db0afa595ee720c9c6
BLAKE2b-256 b23943dc8b0bc9b721964f3ca726e13905278c4e4d776aa1b81b070f7ac26aa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 36.3 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.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a39b30d7400c0d50941fe19e1fe0b7d35676186fec4d9c010129ac91b883fd26
MD5 504575236227d6fd90838f75ae1426dc
BLAKE2b-256 9e137569553060fe4573bda5ba35f7973cd8b39f7bb9f1828bd7112638e51494

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 33.5 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.2.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 501c084cf3df7d848e91c97d4f8c44d799ba545858a79c6960326ce6f285b4e4
MD5 9033b13aadd7c86c45923a06bdb212ca
BLAKE2b-256 2c6ec5dd9b87ac71e19d5176091bd21f59df63be4bb478be743a67ea2934cc6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 34.7 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.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47f97f591ea2335b7d35f5e9ad7d806385338182dc6de5732d091e9c70ed1cc0
MD5 10591a44ed93692c08335b40fa0e5d39
BLAKE2b-256 44070efb26a71e63c82d3a96abb3be4812cdf032106d5f28076a6fbeca2fc440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb82a49aaf440232c762539ab3737b5174d31aba0141fd4bf4d8739c28d18624
MD5 40af21fcac877cacc0547e82adbd0950
BLAKE2b-256 22657420368ac4b5264dc2c74e2cfb14d392a726dae673e0730296849d0212d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71d00ef63a1f78e13c236895badac77b6c8503377467b9c1a4f81fe729d16e03
MD5 8249209c855f6814f8d417c7bd980320
BLAKE2b-256 637ee7f272e104d9d76caf71de17f3051452335ebe442b4bf9049d19e84faada

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8e4da68d4d4ba46d4c5db6ae5eb61b11de9c520f25ae8334570f4d0018a8611
MD5 725b72245037ee42dc250849fdb0ae53
BLAKE2b-256 4a9ca5408822809cae73486cc6a9048178355e584beeb8d41bf59e53abccf462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 791bed39e4ecbdd008b64999a60c9cc560d17b3836ca0c27cd4708e8e1bcf495
MD5 71d0af2a981eac961330b4197a40b73a
BLAKE2b-256 0626a80da97eafde871482b8cf9a32c35d95cdf5c62109a36641b46f01ee8700

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.9 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.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52265182fe5ac237d179d8e949248d307882a2e6ec7f189c8dac1c9d1b3631fa
MD5 6947c6247ffa1d1e961b2328011d0807
BLAKE2b-256 f96e0b3693721e3a81a19e395e903b0877e0dd8cd3f94cec5646eb80d4ac833e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 17.2 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.2.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0a668acec8b61a971de54bc4c733869ea7b0eb1348eae5a32b9477f788908e5c
MD5 62c2f449f3d1ddcf2b8f193d398ff07b
BLAKE2b-256 e78823cfd59e08d8197af89e2e2f13204462221a30404c8f37c6329c28f3b681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 efb3001fd9e71d3ae939d826bf436f0446fd30a6ac01e0ce08cd7eb55ee5ac57
MD5 ad4a2eb583d41c5188e72d24af0964c2
BLAKE2b-256 63b5d71eaf5bebe5454b7a8c4cfe10d52f2f2cd5a3efcd12efdf9d5056092ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.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.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 21d6e064b8fee4e58eb00cdd8771c638de1bc30bb6c02d0208af9ca0a1c00898
MD5 b97483df5d26400b42033991463484f2
BLAKE2b-256 4146d6cb4b96b186886b7bc78924976add5a8564130d8f03fbc3a40f8de9b69c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 34.3 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.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2c8c245e08f6a296fdaa1b36894ec40e20464a4fc6458e6178c8d55a2f83457a
MD5 a70e3878c64105dc9ce70fb79714a1b3
BLAKE2b-256 683c859fa6525d59905999ed772950c0b137dcc43eadb509e174beec695ebced

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 36.0 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.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 eb06c1086cf8c8cf12ce45a02450befcb408dfd646d0ccb47d388fd6e73c333a
MD5 134bb040e0d8a38060d6cafc352e10e1
BLAKE2b-256 3ccccb0604c6177f45e991899739a639e42d88956ebf9ba1465a0c79825ab267

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 33.2 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.2.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f06ff922254023eaabef6af6631f89e5f2f420cf0112865d57d7703f933d4e9f
MD5 67ab724f6fbd514adeed7cb02f8a90bc
BLAKE2b-256 ad7ed69c12a80f2654f68c334ab6085e8985fd997b643741979264f39b21f0a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 34.4 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.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2a137984d3436f13e4bf7c8ca6f6f292df119c009c5e39556cabba4f4bfbf92
MD5 b8738df3b9de655fff2b7a54c5d1b597
BLAKE2b-256 138e5b64ea50349eb6d6480ae13bfba9f24c69b5b9e67c3414d1f3d6b5d341ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2ac0ebd9c63c3d19f768966be2f771bf088bc7373c63ed6fcbb3444a30d0f62
MD5 451f26c6255c393358ac4d41b18a7012
BLAKE2b-256 3acb6eb2e71827323c8b1da2b2d71b7999a936fa229e4269787da1c545b1eb15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4a3cb19346a0cd680617742f5e39fdd14596f6fd91d6c9038272663e37441b4
MD5 c761162e414acf3fde2aaae7e23d3431
BLAKE2b-256 951598cd4380f34cc30b0e75aee6e3a1943001a577d7e12012d75386c7ba1a63

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f55493c987935fa540ef9ffb7ee7db03b4a18a9d5cc103681e2e6a6dfbd7054
MD5 a7cba2c6658a3ee4242cf79befe6c2cc
BLAKE2b-256 ffad093dd39f260f80836b6f656ed032f1b172008b1fce7ff87125dc90f083fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32a84cc309b9e595f06a55bec2fa335a23c307a55d2989864b60ecd71ea87897
MD5 24bc81afcbe9e6ad3414bb1e3d760040
BLAKE2b-256 0ece408936a41c3bc4359d31a03dbfc4e1d906e2944690f2f0aab8ec06d200eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.9 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.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14641a4ec2f2110cf4afc666eaecc82ba67814e927e02647fa1f4cf74476e752
MD5 0aa79b1ce3ac1f409e6fabc05acd1b33
BLAKE2b-256 d55e25349232b63364e169f8bc37996b5c2b3b6fd86dd9e1980d83bb1c95a202

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 17.2 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.2.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ccb0b5334dbf248f7504d88b5e9e9a09a0da119eeafacd6f7247f7c055443522
MD5 c4c53d9e05817e8cbf0d50e56a8a539d
BLAKE2b-256 02247a7b453ba39167fa6a682c17d5c8c9e5f0d93e7d9089e1d276548662b2fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f47f6704880869d8e8f52efac2f2f60f5ed4cb9662b98fc1c7e916eefe76e61d
MD5 7c4a921c89036df210795e05ff561ff8
BLAKE2b-256 9c649d3d485660bb733992498b259f9f387f46bc8b688b8d6ac8735c5d1f69ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.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.2.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 35b869e416a105c59133a48b569c6e808159485d916f55e80c7394a42667a386
MD5 7ce2f76f3c5b2ea692147f045fecd17b
BLAKE2b-256 4637abb4bb232d723820d85a2a8775e39f089c98f670b60e3b0eddb167be073f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 35.0 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.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28e0df80d5069586a08a3cb463fb23503a37cbb805826ef93164bc4bfb5f35b9
MD5 de38a331d65b9697f97014d2a68b2bce
BLAKE2b-256 740d8405957e4ea63a72c1dda180b8c75dfc4ae4bd99b2cdc23c972259dd5db9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 36.7 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.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9a92978030616f5e20617b7b832efee398df82072b7239c53db41c8026f5fe55
MD5 4d1930bca507bd8c9e1a1b4244feaf02
BLAKE2b-256 50bba7af880affa9cfc21225068b95657cd601873b9232b2047c9c5cc457119c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 33.9 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.2.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0670f2130a7ca0e167d3d5a7c8e3c707340b8693d6af7416ff55c18ab2a0a43f
MD5 184c22e83d3ccec20f44e750edbe5067
BLAKE2b-256 21ec6108e3990e45e94d7c76edc49d91e4394d053cc8e5974d9f0f20a4331ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 35.1 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.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fdb2231db176e0848b757fc5d9bed08bc8a498b5b9abb8b640f39e9720f309fc
MD5 cc071ab8ead973b5b292dcaf55ac7aef
BLAKE2b-256 e0bbe26c45e5fbb64bed4ca78e48cf7c3332bf9a280d9cdb54845a2d9693510f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc586f002fd5dd8695718e22a83771fd9f744f081a2b8e614bf6b5f44135964a
MD5 1a7b8ec3ecff6d337c171e52f319dd9b
BLAKE2b-256 006e60cb964df1c144956122f9935ddc4774cd4f0e80460798029a5b66dbafa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f272b84d79bbe15af26ecf6f7c129bbe642f628866c9253659cdb519216f138f
MD5 2865081862623119d6a2052521150eef
BLAKE2b-256 4a220b19620516d76bb91cb26fe91a6e5df3278c6b821b88f583db4f5574f996

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25538341e56f9e75e9759229ff674282dccb5b1ce79a974f968d36208d465674
MD5 8e4f8bbc586f35eb8618047cdd3baa64
BLAKE2b-256 9d02fdac4e58d9d10f0081a2dc9a1430daa8218387cfc86ceb6db93cd59004ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4051c3a3b07f8a4cca205cd45366a22f322da2f26491c0d6b313a10f8c77b734
MD5 eab01a839aed94dbf2201235f1f56e4f
BLAKE2b-256 3da88512d4c289ee473a377589d3dd7b537a5f340ea72cf1abb62def663ce7e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.9 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.2.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9d905ac84dde5227de6516ec08639759f99684148bb88ba05f4cbdaebff5d69
MD5 4375a34f8aeaba26e9dcfd7d619cd8c0
BLAKE2b-256 86bc2d0a022bfa51d3e5b52ad42662664e4cace858959a0b65f4fa37feb4a8a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 17.2 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.2.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d45dbe4171f8c27a515ecb4562f4cd9ef67d98474bea18e0c14dfbdc2b225050
MD5 c679a94e54e127d4174061d55e07238c
BLAKE2b-256 e070996d97be010c3188fa1b36202cb3b79b34fad48615bf83badb0df6aa5243

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.2.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a912df3f065572cef211e9ed9f157a0dd2bd73d150281f18f00728afa1b1e5d2
MD5 d64e1b39c436325ecc657352a9105188
BLAKE2b-256 62ed44fa26b238faceeafdd4407687ba846538dc43cc54a05411f7536ba109e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.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.2.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e80fc59739a738b5c67afbbb9d1c238aa47b6d290c2ada872b15c819350ec5f8
MD5 623685febb4833e65907a897c9b3063a
BLAKE2b-256 10e8b9b0fba7336cdf2b8de2bf52597bd459c55aeeac2c801a959ecc12fda059

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 35.5 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.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 138bfa853e607f06d95b0f253e9152b32a00af3d0dbec96abf0871236a483932
MD5 98ef7854192a9e6eefd5b04e3438cf44
BLAKE2b-256 5868393149e968dbb2e0168db8c54952aa496c7f4cd0d5fb6db3b82311c00516

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 37.1 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.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 60f7a2f5da36a3075dda7edbee2173be5b765b0460b8d401ee01a11f68dee1d2
MD5 9116c4ba36810803144ce46bffe5b378
BLAKE2b-256 0a364678c2086be9b358664a7f93a4be3f1ec860bd5630c41a97fa3f87ccfee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 34.3 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.2.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 be0b46beeb1c92450079a7f30a025d69b63fd6a5de040ebc478fd6e6bf3b63fc
MD5 01bdc1c1c4c23e2500c14635746c15e8
BLAKE2b-256 a3eed0584f57badef7ce92271517c6935b5ebba3b619897791954166e2e51c58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 35.5 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.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0b444ed4051161a3b0a85dec2bb9b50922f37c75f5fb86f7784b235cf6754336
MD5 841707a13c9d6cf89e54799cb2e54bec
BLAKE2b-256 0f4637b305288cbecc82f643fc0bbda916ff0df0b0192440b49858f33bc50c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec7c3a27460ae7811e868e5494e3d8aee5012912744c48fa2d80b5e614b1b972
MD5 eb9f4465753b4d05c49c514cf4d177fc
BLAKE2b-256 81b68aaabcb82b8dc90d4ef6a09bd8f7b92b525ac57a4db3f8e4bb38b7e45d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5464e6812d050c986e6e9b97d54ab88c23dbe9d81151a2fa10b48bb5133a1e2c
MD5 f98521e27c2fb6d12e64ad01415c0c42
BLAKE2b-256 e7966f42f56130ff0c6bc3caa1827fa6d77ab49d3c870765d53846cffbba7dad

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-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.2.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54c7315e53b49ef2227d47a75c3d28c4c51ea9ee46a066460732c0d0f8e605a7
MD5 a21fdcb9db3484033f4d4e79e40a6f60
BLAKE2b-256 555d4564227a8b967b0aea8034599d6063ed3da88ef919d3b0f91e79e6c57929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01cef383afc7ea7a3b1696818c8712029bf2f1d64f5d4777dbaf0166becf2c00
MD5 bd277e4044a5113a18d758d1663fcc60
BLAKE2b-256 28650fa9dcdfd2c8a3fd0b127c982f5d98ba1fdcbd809ef7a146f0bb024e6427

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.9 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.2.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a72bbe53191fbe574c94c0f8b9451dce535b398b7c47ce2e26e21d55eaa1d7e
MD5 0206d4a3c206953c2167fa08fd051dd9
BLAKE2b-256 9ee1aed7ae2a8ff80280491ab4aa93ca918841f58f32a4ba2d3e309157715d9b

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 335750c9eb5b18326a138a09266862a52b4f474277c3e410b419bea9a1df8bee
MD5 dd05bea2bf390f62e34222fabb8483a9
BLAKE2b-256 bf00a65e93ce919b23899bcbb1ddd9982766beca3d6547def28549c1ecb57b15

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.0 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4eed53c12146de5df959d84384ffc2774651cab406ee4854e12728cf0eee5297
MD5 5f32d14c172a7e6f735265fa719a5ac2
BLAKE2b-256 33f5a27c7784ea6a16d6a1d52244ae224631178f03a22ac2b815cfecbf18acbf

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a993610383028f093112dce7f77b262e88fce9d70127535fcdc78953179857e8
MD5 2cf617e5fdba86cf2b278ea20f723043
BLAKE2b-256 8a7a9095475df5420c9e3b34adcf58649a133f76d59dca0c4ee4485cbafd2367

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 409a39f92e123be061626fdfd3e76625b04db103479bb4ba1c85b587db0b9498
MD5 1cb78e35d7a2ec58ff7dcce6fc94f01c
BLAKE2b-256 7e764aca79b242deaa2655880c685aee39a89dec8f93cead37584e0748cadea5

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 33.2 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a81067bdc015fee1cc148c79b346f24fdad1224a8898b4239c7cbdee1add8a60
MD5 8c600b7f703ffbd12563fada7455312b
BLAKE2b-256 4eda6a8d0db8e6c6587114541b1c50dd610e52c0e1698b461300555852d833dc

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38855b06a124361dc73c198853dee3f2b775531c4f4b7472f0e3d441192b3d8a
MD5 df1b13d7637e17607bdc183123aa6800
BLAKE2b-256 cf6ade02deddfc15d3b6a0584c40d9879b19aef5c7088edc1b0f6a56acf38944

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e40c35564081983eab6a07f9eb5693867bc447b0edf9c61b69446223d6593814
MD5 5c0a305bec60f4d1c613df650e644848
BLAKE2b-256 2de3b321f52582ffd323bb89b8f316c66f528cc55ea120355de2c99340f5fbb4

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a546cd2dfaecb227d24122257b98b2e062762871888835c7b608f1c41c3a77ad
MD5 435bc7818ec4809b9e0709e46eb103e0
BLAKE2b-256 938900032e9dc86fdd4f254b37c58d9d1f49cd8a5bdb5546265be74de40a18a7

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-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.2.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2fa9f4b382a6cf88f2f345044d0916a92f37cac21355585bd14bc7ee91af187
MD5 be91ada2dc1a3755b33f1c156f4f9fc6
BLAKE2b-256 8f711017f29259f486f963535213b2b81645da35edd14de3539084e2d291d16b

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d083cae02e344e760bd21c28d591ac5f7ddbd6e1a0ecba62092ae724abd5c28
MD5 1c87be759c76859533c64f861aedff94
BLAKE2b-256 28ed5a8ca69faa77fe56018acfc3e262da2a0729b34004bc351128aecdd17209

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.6m, 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.2.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9cf1098205c23fbcaaaef798afaff714fa9ffadf24166f5e85e6d16b9ef82a1
MD5 2667a66144ac53e24666377917033def
BLAKE2b-256 bac275b91029d080cbe50dcf39a38f48eb94bc70ba975af5d773fb3c27f3f319

See more details on using hashes here.

Supported by

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