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 package was born as a 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.2

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

Version 1.3.1

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

Version 1.3.0

  • Added fallback no-op implementation if building the extension fails.

  • Added support for displaying title as the process name in MacOS Activity Monitor (issue #10).

  • Fixed “Symbol not found: _Py_GetArgcArgv” error when using Xcode provided Python (issues #82, #103).

  • Fixed FreeBSD support, broken in 1.2 (issue #94).

  • Added package type annotations (issue #101).

  • Dropped support for Python 3.6.

Version 1.2.3

  • Added Python 3.10 packages (issue #102).

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

  • Package build moved to cibuildwheel, other wheels provided (issue #47).

Version 1.2.2

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

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

  • Added wheel packages for aarch64 (issue #95).

Version 1.2.1

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

Version 1.2

  • added getthreadtitle() and setthreadtitle().

  • Initialisation of the module moved to the first usage: importing the module doesn’t cause side effects.

  • Manage much longer command lines (issue #52)

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

  • Fixed build for Python 3.8 (issues #66, #72)

  • Added support for Python 3.9

  • Dropped support for Python < 3.6

Version 1.1.10

  • Fixed building with certain prctl.h implementations (issue #44).

  • Use setuptools if available (issue #48).

Version 1.1.9

  • Fixed build on VC (issues #20, #33).

  • Added MANIFEST.in to the source distribution to help with RPM building (issue #30).

Version 1.1.8

  • Added support for Python “diehard” 2.4 (pull request #3).

  • Fixed build on Mac OS X 10.9 Maverick (issue #27).

Version 1.1.7

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.2.tar.gz (27.2 kB view details)

Uploaded Source

Built Distributions

setproctitle-1.3.2-pp39-pypy39_pp73-win_amd64.whl (11.8 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 kB view details)

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

setproctitle-1.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.3 kB view details)

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

setproctitle-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.2-pp38-pypy38_pp73-win_amd64.whl (11.8 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 kB view details)

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

setproctitle-1.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.4 kB view details)

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

setproctitle-1.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.2-pp37-pypy37_pp73-win_amd64.whl (11.8 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 kB view details)

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

setproctitle-1.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.4 kB view details)

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

setproctitle-1.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.2-cp311-cp311-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

setproctitle-1.3.2-cp311-cp311-win32.whl (11.1 kB view details)

Uploaded CPython 3.11 Windows x86

setproctitle-1.3.2-cp311-cp311-musllinux_1_1_x86_64.whl (41.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

setproctitle-1.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl (42.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.2-cp311-cp311-musllinux_1_1_i686.whl (39.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

setproctitle-1.3.2-cp311-cp311-musllinux_1_1_aarch64.whl (41.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

setproctitle-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.1 kB view details)

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

setproctitle-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.1 kB view details)

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

setproctitle-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

setproctitle-1.3.2-cp311-cp311-macosx_10_9_universal2.whl (16.9 kB view details)

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

setproctitle-1.3.2-cp310-cp310-win_amd64.whl (11.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

setproctitle-1.3.2-cp310-cp310-win32.whl (11.0 kB view details)

Uploaded CPython 3.10 Windows x86

setproctitle-1.3.2-cp310-cp310-musllinux_1_1_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

setproctitle-1.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl (39.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.2-cp310-cp310-musllinux_1_1_i686.whl (37.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

setproctitle-1.3.2-cp310-cp310-musllinux_1_1_aarch64.whl (38.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

setproctitle-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.7 kB view details)

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

setproctitle-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.7 kB view details)

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

setproctitle-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

setproctitle-1.3.2-cp310-cp310-macosx_10_9_universal2.whl (16.9 kB view details)

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

setproctitle-1.3.2-cp39-cp39-win_amd64.whl (11.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.3.2-cp39-cp39-win32.whl (11.0 kB view details)

Uploaded CPython 3.9 Windows x86

setproctitle-1.3.2-cp39-cp39-musllinux_1_1_x86_64.whl (37.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

setproctitle-1.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl (39.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.2-cp39-cp39-musllinux_1_1_i686.whl (36.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

setproctitle-1.3.2-cp39-cp39-musllinux_1_1_aarch64.whl (38.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

setproctitle-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.4 kB view details)

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

setproctitle-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.4 kB view details)

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

setproctitle-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

setproctitle-1.3.2-cp39-cp39-macosx_10_9_universal2.whl (16.9 kB view details)

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

setproctitle-1.3.2-cp38-cp38-win_amd64.whl (11.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

setproctitle-1.3.2-cp38-cp38-win32.whl (11.0 kB view details)

Uploaded CPython 3.8 Windows x86

setproctitle-1.3.2-cp38-cp38-musllinux_1_1_x86_64.whl (38.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

setproctitle-1.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl (40.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.2-cp38-cp38-musllinux_1_1_i686.whl (37.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

setproctitle-1.3.2-cp38-cp38-musllinux_1_1_aarch64.whl (39.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

setproctitle-1.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.2 kB view details)

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

setproctitle-1.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.0 kB view details)

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

setproctitle-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

setproctitle-1.3.2-cp38-cp38-macosx_10_9_universal2.whl (16.9 kB view details)

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

setproctitle-1.3.2-cp37-cp37m-win_amd64.whl (11.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

setproctitle-1.3.2-cp37-cp37m-win32.whl (11.0 kB view details)

Uploaded CPython 3.7m Windows x86

setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl (39.0 kB view details)

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

setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (40.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_i686.whl (37.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl (39.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.4 kB view details)

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

setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.4 kB view details)

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

setproctitle-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: setproctitle-1.3.2.tar.gz
  • Upload date:
  • Size: 27.2 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.2.tar.gz
Algorithm Hash digest
SHA256 b9fb97907c830d260fa0658ed58afd48a86b2b88aac521135c352ff7fd3477fd
MD5 fa9771540422a59a8dee1331ad6fd3a9
BLAKE2b-256 b547ac709629ddb9779fee29b7d10ae9580f60a4b37e49bce72360ddf9a79cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7aa0aac1711fadffc1d51e9d00a3bea61f68443d6ac0241a224e4d622489d665
MD5 302f68d63064fd2e7c53a76a97c1a1cb
BLAKE2b-256 b11c54779981a1b8f7669eaccafb3aac75900e4e0db7c42a3ce3997c7170f09e

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65d884e22037b23fa25b2baf1a3316602ed5c5971eb3e9d771a38c3a69ce6e13
MD5 4bc2e183e5004a65d589d5957379cee5
BLAKE2b-256 8df07d0999aaa3efb1d5e4f1bb7d7a0fee133e94a70e0780c3032e6cc19c66da

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e3ac25bfc4a0f29d2409650c7532d5ddfdbf29f16f8a256fc31c47d0dc05172
MD5 2580988263a695bfa16be12f40c4788a
BLAKE2b-256 41c7107d46b676592ce508bd0ad3ac3b94acb1754460f375eccaba6e151375a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.7 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.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a149a5f7f2c5a065d4e63cb0d7a4b6d3b66e6e80f12e3f8827c4f63974cbf122
MD5 77a67ecc2981b77cf5f8dc3fdce37f3d
BLAKE2b-256 029c48155692325ff7ca9b841cfc7894ea6770c4a24455f8775959916f08e723

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b2c9cb2705fc84cb8798f1ba74194f4c080aaef19d9dae843591c09b97678e98
MD5 129ddeecf0db9a6bd92952ec34e4b56a
BLAKE2b-256 51323b1e97e4ce33de2f68e7b036032d876eaf7655f43fc8f386f31552544d50

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b617f12c9be61e8f4b2857be4a4319754756845dbbbd9c3718f468bbb1e17bcb
MD5 7d999f2251d0284f70ed9d2d5aa34806
BLAKE2b-256 c619f317a8a1b3063affae0cd04bed33ddef710f8169a5bb2ae066280ae1ca5d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1aafc91cbdacc9e5fe712c52077369168e6b6c346f3a9d51bf600b53eae56bb
MD5 c4eebcd36f3a7aca29b10be4c9bb0faf
BLAKE2b-256 25e439f9b58efd84149a56ac1bb9ceec2ba8ae7efd90f83ba1b87752a6a9c5f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.7 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.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 faec934cfe5fd6ac1151c02e67156c3f526e82f96b24d550b5d51efa4a5527c6
MD5 cc09a6b09d70c70bbbcf1d912d40931e
BLAKE2b-256 3c1582ec06f392cee2670e16ac35a59f44723cf72103d19407cbb071b5850201

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2fbd8187948284293f43533c150cd69a0e4192c83c377da837dbcd29f6b83084
MD5 435b1037d06ef25f240b44f3fc1e4943
BLAKE2b-256 368f49c57050c87d1955d8a3def39b09f6481a1ba95fd48456b97a4e12a9a776

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8579a43eafd246e285eb3a5b939e7158073d5087aacdd2308f23200eac2458b
MD5 b60e1df10b92a975a673763cc14b1abd
BLAKE2b-256 aa142f09103e288f06a6628447873bb2484538a1fe293f24a7238fa558d3c6cb

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c91b9bc8985d00239f7dc08a49927a7ca1ca8a6af2c3890feec3ed9665b6f91e
MD5 c8fef99c1eeb15a57129758070043e2f
BLAKE2b-256 8e26904b99ea77b569a2e85331f710f8374d7f2c668914dd71f5062fdc5027a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.7 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.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dad42e676c5261eb50fdb16bdf3e2771cf8f99a79ef69ba88729aeb3472d8575
MD5 2089ed95efb410e6685cc2a844b642e1
BLAKE2b-256 cf8607d7d30f25fc59aa6d9c2781c65299e2e056101febf58daa820e7a5b7846

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 88486e6cce2a18a033013d17b30a594f1c5cb42520c49c19e6ade40b864bb7ff
MD5 9b5d6cbaddd631e6d7d6901727054b53
BLAKE2b-256 7b9369ee2f7a651ca6a01b05aab3c55b9db3a44ff50125120cfacd46ced239b5

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca58cd260ea02759238d994cfae844fc8b1e206c684beb8f38877dcab8451dfc
MD5 6bf82418774a617ac2c30b5d3e0a46b3
BLAKE2b-256 3fa4931fb6e85ea5ea7569e563b8a97b43c695f97bb3fa88ee7d70492329679d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 db684d6bbb735a80bcbc3737856385b55d53f8a44ce9b46e9a5682c5133a9bf7
MD5 8039c7df1378caebc9a6ce19e70defd9
BLAKE2b-256 96e7e409f944c8d22667f725eaba9d6c505ce6c44d91ff5922acc8347447ac66

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 37ece938110cab2bb3957e3910af8152ca15f2b6efdf4f2612e3f6b7e5459b80
MD5 00b4fda6b247d23e15145d0a06e5d631
BLAKE2b-256 26a8e406c98df9ff7a7481b8bb9ab4b410405a39751ec8b54ac8108bd0c80b4d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4bba3be4c1fabf170595b71f3af46c6d482fbe7d9e0563999b49999a31876f77
MD5 2d3a868856ee9419808aaf04a3827923
BLAKE2b-256 4d7d9c8371cde990ecce6d263c9b482bae0e75d49505589f1f7ef1ad4f756bbd

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a8e0881568c5e6beff91ef73c0ec8ac2a9d3ecc9edd6bd83c31ca34f770910c4
MD5 058cd7d8fa1ba72bbc43c3803c573d75
BLAKE2b-256 0e08a1fa4d4a3077604e71eb6b76795814b44a8a1fec874b06bca853157b2313

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e932089c35a396dc31a5a1fc49889dd559548d14cb2237adae260382a090382e
MD5 d07b2a594eb6fabcb0b7fbfb2a26f3a8
BLAKE2b-256 1c4cc1ef1118bcb756fd10bee57a2748240b033168501c77aec80d0eb9874f64

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7d17c8bd073cbf8d141993db45145a70b307385b69171d6b54bcf23e5d644de
MD5 af56f2e5dff69a93ce67061f8f9de717
BLAKE2b-256 e18d4ad25c2e80e81f9c698add6c7a96e547c7194412ce85bce6c2c75eb8d2f8

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-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.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 570d255fd99c7f14d8f91363c3ea96bd54f8742275796bca67e1414aeca7d8c3
MD5 30cd653936b0053a01c2b9d22b0ff75b
BLAKE2b-256 18c7890da8a5790fa733a9fbf47d92e8226c1ff4bf1853dbdbabbdaa3aa6dffc

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e4f8f12258a8739c565292a551c3db62cca4ed4f6b6126664e2381acb4931bf
MD5 7f2a4c6c87af01d9afaa01947d1629c6
BLAKE2b-256 d77646e536e87e0e46309f5664ebecebbbc541315d81ad301e93204d0248beed

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 587c7d6780109fbd8a627758063d08ab0421377c0853780e5c356873cdf0f077
MD5 2ff78483eed044192d0b7b3ced3f0d8a
BLAKE2b-256 8c4c1b2c04a95da8e6c0951223bfbb0d4b56876ba35567455b88bbc9e48b7052

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a97d51c17d438cf5be284775a322d57b7ca9505bb7e118c28b1824ecaf8aeaa
MD5 ad5173436e4bc663fb3f8063c2ca18a5
BLAKE2b-256 4af9f4e96c6c95d5e5e958405292ddb9dd932ec083c6f76ba55458b6caa4db02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.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.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e85e50b9c67854f89635a86247412f3ad66b132a4d8534ac017547197c88f27d
MD5 1d59be01883a0a1bb457c3042327dc91
BLAKE2b-256 9f0b207ccb4f375b9fc51c9d7f4df259055d608fa9df4a7bd9125ba1a296ad78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.0 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e425be62524dc0c593985da794ee73eb8a17abb10fe692ee43bb39e201d7a099
MD5 ad3a8b5c08feab4b741f628d33d999b6
BLAKE2b-256 55d46cc75bf9aee7f4f1cb557f05d4ced06b33315d39f0c5e3f2a02000c5b86f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 38.2 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.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f2719a398e1a2c01c2a63bf30377a34d0b6ef61946ab9cf4d550733af8f1ef1
MD5 e0e37279c86cb192ece8cb18b67b27f0
BLAKE2b-256 458c295ff4d931fa9e45510eb29d772aed93c5b1c365f5e54a55129a91c96eba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 39.8 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.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fa2f50678f04fda7a75d0fe5dd02bbdd3b13cbe6ed4cf626e4472a7ccf47ae94
MD5 1f05380cf51b2a5fdae843a468ccf22d
BLAKE2b-256 ea85a5df3ef79b642a188ace9f73fd9b2527bd2549a155aaa3e7d6a5bafd3061

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 37.0 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.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c2c46200656280a064073447ebd363937562debef329482fd7e570c8d498f806
MD5 0b9fd4ed8f437b3d737a09b0ed412b10
BLAKE2b-256 8788106215fddc0fbb64337715406d5f5f97f999a3c7de98a7476d39609332a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 38.5 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.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 265ecbe2c6eafe82e104f994ddd7c811520acdd0647b73f65c24f51374cf9494
MD5 34719d5ab7c1932b126e674aa85c68bd
BLAKE2b-256 3ae6132696161734102966b1ad558e05b0ff65ed9d192f1e781b0d55cec88d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a55fe05f15c10e8c705038777656fe45e3bd676d49ad9ac8370b75c66dd7cd7
MD5 8d169762d7cbc4092c907dbd3018b171
BLAKE2b-256 49a30c011499a8e0ee3dd38d73b1e32e4ca4f2cb903b6d317f4b96d78787bde8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c877691b90026670e5a70adfbcc735460a9f4c274d35ec5e8a43ce3f8443005
MD5 6b3758d4dce9e39db50a33c8929219ea
BLAKE2b-256 43b1c951d93fb88f684f65e7160b918fff77c0ac348d240839e8a53b1b05b119

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00c9d5c541a2713ba0e657e0303bf96ddddc412ef4761676adc35df35d7c246
MD5 a26128935893245c22c5d54e4a317eb5
BLAKE2b-256 46b6d1a2fc143997d89dc2dd9b55646fddb702699624510d619e101c8e149bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab45146c71ca6592c9cc8b354a2cc9cc4843c33efcbe1d245d7d37ce9696552d
MD5 7d957ee5223cfcc0530cde1f7e2bcb47
BLAKE2b-256 8978670e28d65a1c70a0e1a06ea7c10ef57235d0e303d3019fedef7ce801e0f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.3 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.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 630f6fe5e24a619ccf970c78e084319ee8be5be253ecc9b5b216b0f474f5ef18
MD5 53349eed118f0f5295164ab9c59e1b89
BLAKE2b-256 20a38d19f528ffbb3496040bc0cbef02a8678a102b9c04effd55ac1fcd7d2c07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 16.9 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.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 288943dec88e178bb2fd868adf491197cc0fc8b6810416b1c6775e686bab87fe
MD5 7e1c43743bcfc08828fd8971eb852e27
BLAKE2b-256 04a919a77c1ead9b0b3e9e366aafb64d8cdf31ed25e42a781dded07907332300

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.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.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a47d97a75fd2d10c37410b180f67a5835cb1d8fdea2648fd7f359d4277f180b9
MD5 8c2509536794464a8eaeecb1f17b0196
BLAKE2b-256 40bcfb3193adca261b25b6c01bb9faeebce4b3c24a96be3f1dc9a1ddd307142e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.0 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4d8938249a7cea45ab7e1e48b77685d0f2bab1ebfa9dde23e94ab97968996a7c
MD5 5853bac827647bbcae8eafb3aa41457b
BLAKE2b-256 e2e135f913b4538313b151d961384efddbf907447e8113d30b8ddbee4e35d781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 37.8 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.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f0bed90a216ef28b9d227d8d73e28a8c9b88c0f48a082d13ab3fa83c581488f
MD5 4c94ccef2c474fa232f2739f10fac054
BLAKE2b-256 a96ec50be96334dcb7a63f7fca5897d99f2ae1deee378cec8dbd8a56c3cd4ded

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 39.4 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.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b34baef93bfb20a8ecb930e395ccd2ae3268050d8cf4fe187de5e2bd806fd796
MD5 51e68fded366e60429ad9644a363e2f3
BLAKE2b-256 290f884a680fed30dbd1f99fba1f0ae189a1bc7026246150a1b4a5492108c231

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 36.7 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.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fed18e44711c5af4b681c2b3b18f85e6f0f1b2370a28854c645d636d5305ccd8
MD5 3fa2e12a8e47120ab1422166c0c02b54
BLAKE2b-256 42695495ee592ad6c6411c9d1f1d610e37557f14fa5d039ef82bf86f328ca289

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 38.1 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.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bae283e85fc084b18ffeb92e061ff7ac5af9e183c9d1345c93e178c3e5069cbe
MD5 04ec6bbf6c727aa32883fc450748f808
BLAKE2b-256 dd6ee920bb0ce7bc7eebdef249643ac3b66dbd9677d668472a86b88149575234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffc61a388a5834a97953d6444a2888c24a05f2e333f9ed49f977a87bb1ad4761
MD5 cbe01b487984f83ea1a3133e667fce45
BLAKE2b-256 66b0bb81bad3120364523b1a9511564f6ec6f5de322400cd5f3ebef526d40c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c5d5dad7c28bdd1ec4187d818e43796f58a845aa892bb4481587010dc4d362b
MD5 e3f81b5bc525408c01e3fdff67035801
BLAKE2b-256 9a12cc8c117c13319e7c56aea7c33d127150e538da7e9a4808aa91e07d424610

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe8a988c7220c002c45347430993830666e55bc350179d91fcee0feafe64e1d4
MD5 6ce6cbf3bbfc2b1c8c9fdd7c5c604c19
BLAKE2b-256 b77e4f71712c98fd06b3075c93a1a2135c5f656191b2aae30895ca7bc7a0da03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fa1a0fbee72b47dc339c87c890d3c03a72ea65c061ade3204f285582f2da30f
MD5 c1e4a5641085b8cfed0b3447ddc9349a
BLAKE2b-256 f34e3b13ff5965903911f4e93631fb3ae7419943e0dc77e479b781e34540fae3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.3 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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4058564195b975ddc3f0462375c533cce310ccdd41b80ac9aed641c296c3eff4
MD5 e04b7a815bb2883d4c9e19e2c20200a1
BLAKE2b-256 4aa4cb6c3d274e8f5c36c65590723d58f994f407a0c835ac94379c00b89df4dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 16.9 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.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 de3a540cd1817ede31f530d20e6a4935bbc1b145fd8f8cf393903b1e02f1ae76
MD5 f909f0ad82388c49d1483304c1105d48
BLAKE2b-256 50efcff921345cadf05bef3cb4da37eac23d08fd063222a633231e8ae1f61a0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.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.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e43f315c68aa61cbdef522a2272c5a5b9b8fd03c301d3167b5e1343ef50c676c
MD5 3e5e9f0162ad7a2070083aa7e3a5c478
BLAKE2b-256 75fb4531dcab73775a3cc22a0db69e7ec459b6d8c873b62f61e226ffebd6e963

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.0 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4749a2b0c9ac52f864d13cee94546606f92b981b50e46226f7f830a56a9dc8e1
MD5 68858378e686f8cc65118cc4413df312
BLAKE2b-256 6d351332cdad5c3d6af89e0df54d0668103a40cebbf5263436c27e07171fe92d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 38.6 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.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 589be87172b238f839e19f146b9ea47c71e413e951ef0dc6db4218ddacf3c202
MD5 f60d775891895f43ad1d2657e741a6b6
BLAKE2b-256 5c48ac39c43ca8709b23f8410a6e483e89a836f02c082b77134441d12502f380

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 40.3 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.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8ff3c8cb26afaed25e8bca7b9dd0c1e36de71f35a3a0706b5c0d5172587a3827
MD5 98b6b9d89cfd31b3515fa9d86d5b68fe
BLAKE2b-256 a67930829bdf3d8825000780f1b9ddcb3970898f30e8fd20c82744ad5ba92bf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 37.3 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.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c8a09d570b39517de10ee5b718730e171251ce63bbb890c430c725c8c53d4484
MD5 87f7df3cb1a328f3fd93450856f7e887
BLAKE2b-256 290b715f78956a4910dbf7c3aaa6a8246e5d225fdb4ac1127689d9ba6e6896be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 39.0 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.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9124bedd8006b0e04d4e8a71a0945da9b67e7a4ab88fdad7b1440dc5b6122c42
MD5 f621eee5a034cc286261c505fcaaef5a
BLAKE2b-256 820deecf43456f202bb8342bbe7a8e441f5e6245f99894c7955936acc67a4f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fb4f769c02f63fac90989711a3fee83919f47ae9afd4758ced5d86596318c65
MD5 cdc632d92c4bed8c9458af4d1c5701d2
BLAKE2b-256 e594dd65531001480c9ff83fd374d7e0b3c5343d8b17fc299c941097b8f5c552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcd3cf4286a60fdc95451d8d14e0389a6b4f5cebe02c7f2609325eb016535963
MD5 b5e287c14c33e9a4a558ea1152b7623c
BLAKE2b-256 7153f0e0b2e635ffaba4a1822a5a3c11acda4f6d997feed8692db7c5cc1502ad

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f0cde41857a644b7353a0060b5f94f7ba7cf593ebde5a1094da1be581ac9a31
MD5 441193bb92caa361da01422c277ce961
BLAKE2b-256 ceeada374494f0edede3bc098a747e308d40ba737e3b160d3ff46cce05f84c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5194b4969f82ea842a4f6af2f82cd16ebdc3f1771fb2771796e6add9835c1973
MD5 2861f71be6bf2103b65309ce56454449
BLAKE2b-256 76ddf0b702d3a2ada49307b958e9cff6c3d9215a325da46380e983ddf23969bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.3 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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4bfc89bd33ebb8e4c0e9846a09b1f5a4a86f5cb7a317e75cc42fee1131b4f4f
MD5 fb89cec0fbe780ee3c73366becd7f186
BLAKE2b-256 d56d912d49dc1d007daa0d47c21b2d65fa31d97752bf879f9d18381baaf8c180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 16.9 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.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5b932c3041aa924163f4aab970c2f0e6b4d9d773f4d50326e0ea1cd69240e5c5
MD5 dd853e2c3e663d4e1a5e6fe1dd8787f8
BLAKE2b-256 097bd8aa13b2ca77541a6ec99edfec4f6f9372c32016355001f16cb2ab691404

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.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.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a499fff50387c1520c085a07578a000123f519e5f3eee61dd68e1d301659651f
MD5 c278f4322fd6679a71a957c6f188acbd
BLAKE2b-256 d253c30a9ceaea3dd897635fdc34f5e859fe4c46924dbf3e428c1a06674edc3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 11.0 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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e5c50e164cd2459bc5137c15288a9ef57160fd5cbf293265ea3c45efe7870865
MD5 1ac40ad8e8af28600ee6acfe65c31f25
BLAKE2b-256 1c2cdc514271ee4ecf16d7682762e7218cbe0556a189acb52dbd5092e8dc3889

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 39.0 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.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7fe9df7aeb8c64db6c34fc3b13271a363475d77bc157d3f00275a53910cb1989
MD5 0c056fee704925217991b49a21aec9ad
BLAKE2b-256 392e65a12b007d579a8d5fab6e50198a2ad7bbda9c6d304a69796a062426d913

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 40.6 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.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 55ce1e9925ce1765865442ede9dca0ba9bde10593fcd570b1f0fa25d3ec6b31c
MD5 20edfeee0514ae35a53c5cbed9391fec
BLAKE2b-256 e86321103403a459271b241340381c6763699597dccafc6b9dd6bf75451ab999

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 37.6 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.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ff863a20d1ff6ba2c24e22436a3daa3cd80be1dfb26891aae73f61b54b04aca
MD5 908d2190dc066318849a635966b3a894
BLAKE2b-256 9c67e8872c89efca609954185f1089d596b206a33d6a8e31f7295a4b5cd05468

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 39.2 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.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e49ae693306d7624015f31cb3e82708916759d592c2e5f72a35c8f4cc8aef258
MD5 57e08847f5f167bd496ac95ccfa9d11d
BLAKE2b-256 af6b871ae1b3c7b8c475fc6ad7a1ad6b3bc4465771c2772c7fb5520400f3d4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f29b75e86260b0ab59adb12661ef9f113d2f93a59951373eb6d68a852b13e83
MD5 63e961eae07cd73ed05127dcae3e7f49
BLAKE2b-256 6a40ee7b7fcf19ef1befc3c716a2ca8b6fa8dd35815b7eef838a14bf135275d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 710e16fa3bade3b026907e4a5e841124983620046166f355bbb84be364bf2a02
MD5 935a0745c20913a8fd942f5ce60b036e
BLAKE2b-256 9e31a0f29c88617705b6dc7a72b6cb7a270f1c15b7f53ae99adc592f506fd151

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.2-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.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0452282258dfcc01697026a8841258dd2057c4438b43914b611bccbcd048f10
MD5 30f5a3eb57a62d3d1466a46495515a92
BLAKE2b-256 4bb195367ba12415e48f331379032fe8060c56fbddc0b74838d1c6668e031a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c8d9650154afaa86a44ff195b7b10d683c73509d085339d174e394a22cccbb9
MD5 45567efedde521ff9f3be916d1527409
BLAKE2b-256 2274bdedbb32ca2b85a6eb23afacfd83cf4b4a9334d91e33b178812cf1d3db58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.3 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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92c626edc66169a1b09e9541b9c0c9f10488447d8a2b1d87c8f0672e771bc927
MD5 4a590accbd881e38cbe55f5659db808e
BLAKE2b-256 9f862af288f58d44bd79b9840e8365da0e403c8d76665d5ed16b0b07016a73bf

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