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

  • Add support for Python 3.13 (issue #139).

  • Drop support for Python 3.7.

Version 1.3.3

  • Add support for Python 3.12.

  • Fix package metadata to include Python 3.11, 3.12.

Version 1.3.2

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

Version 1.3.1

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

Version 1.3.0

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

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

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

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

  • Added package type annotations (issue #101).

  • Dropped support for Python 3.6.

Version 1.2.3

  • Added Python 3.10 packages (issue #102).

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

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

Version 1.2.2

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

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

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

Version 1.2.1

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

Version 1.2

  • added getthreadtitle() and setthreadtitle().

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

  • Manage much longer command lines (issue #52)

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

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

  • Added support for Python 3.9

  • Dropped support for Python < 3.6

Version 1.1.10

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

  • Use setuptools if available (issue #48).

Version 1.1.9

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

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

Version 1.1.8

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

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

Version 1.1.7

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

Uploaded Source

Built Distributions

setproctitle-1.3.4-pp310-pypy310_pp73-win_amd64.whl (12.1 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.4-pp310-pypy310_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.4-pp310-pypy310_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.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (11.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

setproctitle-1.3.4-pp39-pypy39_pp73-win_amd64.whl (12.1 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.4-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.4-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.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (11.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

setproctitle-1.3.4-pp38-pypy38_pp73-win_amd64.whl (12.1 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.4-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.4-pp38-pypy38_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.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (11.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

setproctitle-1.3.4-cp313-cp313-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

setproctitle-1.3.4-cp313-cp313-win32.whl (11.3 kB view details)

Uploaded CPython 3.13 Windows x86

setproctitle-1.3.4-cp313-cp313-musllinux_1_2_x86_64.whl (30.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

setproctitle-1.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl (32.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.4-cp313-cp313-musllinux_1_2_i686.whl (30.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

setproctitle-1.3.4-cp313-cp313-musllinux_1_2_aarch64.whl (31.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

setproctitle-1.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 kB view details)

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

setproctitle-1.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

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

setproctitle-1.3.4-cp313-cp313-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

setproctitle-1.3.4-cp313-cp313-macosx_10_13_universal2.whl (16.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

setproctitle-1.3.4-cp312-cp312-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

setproctitle-1.3.4-cp312-cp312-win32.whl (11.4 kB view details)

Uploaded CPython 3.12 Windows x86

setproctitle-1.3.4-cp312-cp312-musllinux_1_2_x86_64.whl (30.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

setproctitle-1.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl (32.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.4-cp312-cp312-musllinux_1_2_i686.whl (30.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

setproctitle-1.3.4-cp312-cp312-musllinux_1_2_aarch64.whl (31.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

setproctitle-1.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

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

setproctitle-1.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

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

setproctitle-1.3.4-cp312-cp312-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

setproctitle-1.3.4-cp312-cp312-macosx_10_13_universal2.whl (16.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

setproctitle-1.3.4-cp311-cp311-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

setproctitle-1.3.4-cp311-cp311-win32.whl (11.3 kB view details)

Uploaded CPython 3.11 Windows x86

setproctitle-1.3.4-cp311-cp311-musllinux_1_2_x86_64.whl (30.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

setproctitle-1.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl (32.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.4-cp311-cp311-musllinux_1_2_i686.whl (29.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

setproctitle-1.3.4-cp311-cp311-musllinux_1_2_aarch64.whl (30.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

setproctitle-1.3.4-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.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.0 kB view details)

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

setproctitle-1.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.0 kB view details)

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

setproctitle-1.3.4-cp311-cp311-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

setproctitle-1.3.4-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.4-cp310-cp310-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

setproctitle-1.3.4-cp310-cp310-win32.whl (11.4 kB view details)

Uploaded CPython 3.10 Windows x86

setproctitle-1.3.4-cp310-cp310-musllinux_1_2_x86_64.whl (29.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

setproctitle-1.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl (31.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.4-cp310-cp310-musllinux_1_2_i686.whl (29.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

setproctitle-1.3.4-cp310-cp310-musllinux_1_2_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

setproctitle-1.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

setproctitle-1.3.4-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.4-cp39-cp39-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.3.4-cp39-cp39-win32.whl (11.4 kB view details)

Uploaded CPython 3.9 Windows x86

setproctitle-1.3.4-cp39-cp39-musllinux_1_2_x86_64.whl (29.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

setproctitle-1.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl (31.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.4-cp39-cp39-musllinux_1_2_i686.whl (29.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

setproctitle-1.3.4-cp39-cp39-musllinux_1_2_aarch64.whl (30.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

setproctitle-1.3.4-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.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

setproctitle-1.3.4-cp39-cp39-macosx_10_9_universal2.whl (16.8 kB view details)

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

setproctitle-1.3.4-cp38-cp38-win_amd64.whl (12.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

setproctitle-1.3.4-cp38-cp38-win32.whl (11.4 kB view details)

Uploaded CPython 3.8 Windows x86

setproctitle-1.3.4-cp38-cp38-musllinux_1_2_x86_64.whl (30.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

setproctitle-1.3.4-cp38-cp38-musllinux_1_2_ppc64le.whl (31.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.4-cp38-cp38-musllinux_1_2_i686.whl (29.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

setproctitle-1.3.4-cp38-cp38-musllinux_1_2_aarch64.whl (30.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

setproctitle-1.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.4-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.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

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

File details

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

File metadata

  • Download URL: setproctitle-1.3.4.tar.gz
  • Upload date:
  • Size: 26.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.4.tar.gz
Algorithm Hash digest
SHA256 3b40d32a3e1f04e94231ed6dfee0da9e43b4f9c6b5450d53e6dd7754c34e0c50
MD5 9971bff3c4dc79e31565f1f79adb97af
BLAKE2b-256 ae4eb09341b19b9ceb8b4c67298ab4a08ef7a4abdd3016c7bb152e9b6379031d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5519f2a7b8c535b0f1f77b30441476571373add72008230c81211ee17b423b57
MD5 3f9d46a095c8c22b0db55306894c8ec0
BLAKE2b-256 b08d9e4a4651b1c5845a9aec0d2c08c65768ba5ca2ec76598124b45d384a5f46

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-pp310-pypy310_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.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 779006f9e1aade9522a40e8d9635115ab15dd82b7af8e655967162e9c01e2573
MD5 8d50eb36bf44ac56546b906e00af02c6
BLAKE2b-256 f589887c6872ceed5ca344d25c8cc8a3f9b99bbcb25613c4b680476b29aabe23

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb8a6a19be0cbf6da6fcbf3698b76c8af03fe83e4bd77c96c3922be3b88bf7da
MD5 921022757e57b53b764e39aa38dbee7a
BLAKE2b-256 fd1fb3b82633336cd9908bf74cbc06dd533025b3d3c202437c4e3d0bc871ca13

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 939d364a187b2adfbf6ae488664277e717d56c7951a4ddeb4f23b281bc50bfe5
MD5 3eb956a2ed5331b568e31dc65004ae8e
BLAKE2b-256 2fd0775418662081d44b91da236ed4503e10e7008c9c5fd30193e13db388fbef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 47669fc8ed8b27baa2d698104732234b5389f6a59c37c046f6bcbf9150f7a94e
MD5 3a06a7a65fb8068efeb3561c12b14cb6
BLAKE2b-256 87f49a97dd161cbf32331e24742d6aa32385d37b29b18ae45881f2863c6868c3

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02ca3802902d91a89957f79da3ec44b25b5804c88026362cb85eea7c1fbdefd1
MD5 03b897279d8f7fcde2b2e5017ea6e27c
BLAKE2b-256 e85adfbe448969137d790dade35e2d5573b0ecc678ea371d4177f9bd7027ee17

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e55d7ecc68bdc80de5a553691a3ed260395d5362c19a266cf83cbb4e046551f
MD5 e585df024673447d8f1934e1301e6ee8
BLAKE2b-256 18d46264e2f8428598046610fa681aa1008605a0bd9cfe6220dcdc639d07361b

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b6a4cbabf024cb263a45bdef425760f14470247ff223f0ec51699ca9046c0fe
MD5 be86d5410ffb6fa8cce0121a0ed76b16
BLAKE2b-256 6c1050a602f98e12284890a57ca0384e9efe45087c075d58953032d5c042134c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c3b1ce68746557aa6e6f4547e76883925cdc7f8d7c7a9f518acd203f1265ca5
MD5 e6406f3b22c0f15d3128f332286465d4
BLAKE2b-256 b6049c5a4b0d216f5c0f4a09d6ea75973794fa92b7647e7e5094c2c53a764cd1

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a2041b5788ce52f218b5be94af458e04470f997ab46fdebd57cf0b8374cc20e
MD5 0783c4d34a41f3a58bdc4a8eb03b5e20
BLAKE2b-256 ce6f756aea262111d00b36afdfd60a5e49a72c3aebd359eec814978e6acfef83

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abda20aff8d1751e48d7967fa8945fef38536b82366c49be39b83678d4be3893
MD5 5f7911093e4e3986f39ab4ff4b7581a6
BLAKE2b-256 0565aa2aeb42b3776254d3895f0498c375013fcb7a298f9a0f4de4a679b7eb1e

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 743836d484151334ebba1490d6907ca9e718fe815dcd5756f2a01bc3067d099c
MD5 bb2e41bf65ba360f6ef07a5e9f3e39bc
BLAKE2b-256 7dae23452dac85ae4516c61a8fda96d231faf7cd4f4ad1a4475a5663ee508815

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 adcd6ba863a315702184d92d3d3bbff290514f24a14695d310f02ae5e28bd1f7
MD5 b337fe2d43b502d588159969f4a6dbd8
BLAKE2b-256 e71a8149da1c19db6bd57164d62b1d91c188e7d77e695947cf1ac327c8aea513

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 091f682809a4d12291cf0205517619d2e7014986b7b00ebecfde3d76f8ae5a8f
MD5 9415bc9d07efc6e597999fb0b4f067f5
BLAKE2b-256 5fea3ce61e70a6b898e95c0a1e393964c829103dc4ad4b0732cd70c8fc13e54c

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dc3d656702791565994e64035a208be56b065675a5bc87b644c657d6d9e2232
MD5 b595aa2f346bfe1c64fe74bb51aae163
BLAKE2b-256 835301746ed8fb75239a001ee89d5eb8ad5a3022df510572d1cf60dd04567e13

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b669aaac70bd9f03c070270b953f78d9ee56c4af6f0ff9f9cd3e6d1878c10b40
MD5 a3963c3c852b849e01d02a2bfd1277c5
BLAKE2b-256 d84294e31d1f515f831e1ae43f2405794257eb940a7972b2fbb6283790db2958

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db78b645dc63c0ccffca367a498f3b13492fb106a2243a1e998303ba79c996e2
MD5 9cc798232cb955b7376155f57f106230
BLAKE2b-256 4f838d704bee57990b27537adf7c97540f32226ffa3922fb26bdd459da8a4470

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b19813c852566fa031902124336fa1f080c51e262fc90266a8c3d65ca47b74c
MD5 6b122861506bd8b1f8e59f3f2fa66a01
BLAKE2b-256 7ac0c12bdc2c91009defdd1b207ff156ccd691f5b9a6a0aae1ed9126d4ff9a0c

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 149fdfb8a26a555780c4ce53c92e6d3c990ef7b30f90a675eca02e83c6d5f76d
MD5 5f33ea227e4c6f7555d47f67d635137f
BLAKE2b-256 5cb41f0dba7525a2fbefd08d4086e7e998d9c7581153807fb6b3083d06e0b8e2

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa5057a86df920faab8ee83960b724bace01a3231eb8e3f2c93d78283504d598
MD5 d6cbb0d77fc298722f675981bffd9d08
BLAKE2b-256 eabecb2950b3f6ba460f530bda2c713828236c75d982d0aa0f62b33429a9b4d0

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-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.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ab9f5b7f2bbc1754bc6292d9a7312071058e5a891b0391e6d13b226133f36aa
MD5 943b51271d63e7eac093a7859f16f98f
BLAKE2b-256 830c3d972d9ea4165961a9764df5324d42bf2d059cb8a6ef516c67f068ed4d92

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ded03546938a987f463c68ab98d683af87a83db7ac8093bbc179e77680be5ba2
MD5 421ab541e4f005d64e43c5ff5937b184
BLAKE2b-256 2da807a160f9dcd1a7b1cad39ce6cbaf4425837502b0592a400c38cb21f0f247

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b17655a5f245b416e127e02087ea6347a48821cc4626bc0fd57101bfcd88afc
MD5 5274f4c86d564747d30b22daeeae986b
BLAKE2b-256 3003deff7089b525c0d8ec047e06661d2be67c87685a99be6a6aed2890b81c8f

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d6e3b177e634aa6bbbfbf66d097b6d1cdb80fc60e912c7d8bace2e45699c07dd
MD5 ae3aea9440a2f2ca1a831792f76f77df
BLAKE2b-256 d40151d07ab1dbec8885ebad419d254c06b9e28f4363c163b737a89995a52b75

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9c76e43cb351ba8887371240b599925cdf3ecececc5dfb7125c71678e7722c55
MD5 eebc0bf1730156c66f11613f964474ae
BLAKE2b-256 445c6e6665b5fd800206a9e537ab0d2630d7b9b31b4697d931ed468837cc9cf5

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 04d6ba8b816dbb0bfd62000b0c3e583160893e6e8c4233e1dca1a9ae4d95d924
MD5 c08119893fe045317d69fe8147a79a67
BLAKE2b-256 b2fabbc7ab32f253b9700ac20d78ba0d5fbdc4ea5789d33e1adb236cdf20b23a

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 726aee40357d4bdb70115442cb85ccc8e8bc554fc0bbbaa3a57cbe81df42287d
MD5 e906d2628bb8e334895201ee4ddf8be4
BLAKE2b-256 b0769b4877850c9c5f41c4bacae441285dead7c192bebf4fcbf3b3eb0e8033cc

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 97f1f861998e326e640708488c442519ad69046374b2c3fe9bcc9869b387f23c
MD5 0923e99fcfa9a67ba77d2824e9fc74b9
BLAKE2b-256 360e817be9934eda4cf63c96c694c3383cb0d2e5d019a2871af7dbd2202f7a58

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bba0a866f5895d5b769d8c36b161271c7fd407e5065862ab80ff91c29fbe554
MD5 860834429355b9069f1499b8b801412d
BLAKE2b-256 26abbbde90ea0ed6a062ef94fe1c609b68077f7eb586133a62fa62d0c8dd9f8c

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 122c2e05697fa91f5d23f00bbe98a9da1bd457b32529192e934095fadb0853f1
MD5 5a54c7090793fb953f50081684225b3e
BLAKE2b-256 9ba75f9c3c70dc5573f660f978fb3bb4847cd26ede95a5fc294d3f1cf6779800

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0855006261635e8669646c7c304b494b6df0a194d2626683520103153ad63cc9
MD5 db4293d26290b32044d20ccd44b4f7a4
BLAKE2b-256 45b704f5d221cbdcff35d6cdf74e2a852e69dc8d8e746eb1b314be6b57b79c41

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb5fefb53b9d9f334a5d9ec518a36b92a10b936011ac8a6b6dffd60135f16459
MD5 d2473720d52f65eb310bcf3ba44b25a1
BLAKE2b-256 86ed8031871d275302054b2f1b94b7cf5e850212cc412fe968f0979e64c1b838

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-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.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f963b6ed8ba33eda374a98d979e8a0eaf21f891b6e334701693a2c9510613c4c
MD5 9bc95bf5be6634924ac03eff0c5a9c90
BLAKE2b-256 4bcf4f19cdc7fdff3eaeb3064ce6eeb27c63081dba3123fbf904ac6bf0de440c

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a88e466fcaee659679c1d64dcb2eddbcb4bfadffeb68ba834d9c173a25b6184
MD5 93c97025403b0dd3e6468f0c99ee5228
BLAKE2b-256 25b28dff0d2a72076e5535f117f33458d520538b5a0900b90a9f59a278f0d3f6

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 317218c9d8b17a010ab2d2f0851e8ef584077a38b1ba2b7c55c9e44e79a61e73
MD5 e2ca852781e47061019930330d2b790c
BLAKE2b-256 b80cd69e1f91c8f3d3aa74394e9e6ebb818f7d323e2d138ce1127e9462d09ebc

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d06990dcfcd41bb3543c18dd25c8476fbfe1f236757f42fef560f6aa03ac8dfc
MD5 fdca1c309d483d812a517f7a7e11cf69
BLAKE2b-256 941f02fb3c6038c819d86765316d2a911281fc56c7dd3a9355dceb3f26a5bf7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 475986ddf6df65d619acd52188336a20f616589403f5a5ceb3fc70cdc137037a
MD5 5edda02a8c72b5799ec4bdd9421e4900
BLAKE2b-256 aa19240c4b99d57e045d3b2e2effa5924e810eabb18c56ef9c2336a7746dffe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9c9d7d1267dee8c6627963d9376efa068858cfc8f573c083b1b6a2d297a8710f
MD5 a339db94f0168248cab6c12d890454c5
BLAKE2b-256 accd08928fec23cbf4dae2a7b245b72d86e6458d64f4e7e6956cd80a9fda8c80

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b0080819859e80a7776ac47cf6accb4b7ad313baf55fabac89c000480dcd103
MD5 85d959672238c97de8ba40d0719e3bc1
BLAKE2b-256 62839194a4baed06e0e90a69e2e4a77a75e5a3ff008046870c79bc36a5c45e1c

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 202eae632815571297833876a0f407d0d9c7ad9d843b38adbe687fe68c5192ee
MD5 39e7613b63e6013a1fe92c15cb0e1b09
BLAKE2b-256 3d865939546e57238462a7839ae78399a635d1cfc5d125c7a12a28face111730

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d2a154b79d5fb42d1eff06e05e22f0e8091261d877dd47b37d31352b74ecc37
MD5 f8cf0681ea12942856ae23f15956d76d
BLAKE2b-256 a3cd747a67ce1f6ef8fd1fa46b0b13ba0e007b80914bd549318830b8691ab9f6

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef133a1a2ee378d549048a12d56f4ef0e2b9113b0b25b6b77821e9af94d50634
MD5 cf8b8f902506a88dae8ae2cbc021eee9
BLAKE2b-256 ec46adcffde6fb8d95458da0a568afdf0dabbbff6470299d94014676e1ab43c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3afa5a0ed08a477ded239c05db14c19af585975194a00adf594d48533b23701
MD5 91387dd47ab5d0f0ff910c1f3507c24c
BLAKE2b-256 2c7214984c127f708597e412f1a8cf7cac809b9bca50a267a6b01b221b094330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f859c88193ed466bee4eb9d45fbc29d2253e6aa3ccd9119c9a1d8d95f409a60d
MD5 180ea89009b026cc64667cf67d436479
BLAKE2b-256 614780988221679dfd93c464248abb71c2a96338f2ca3f8e3288d0ecb7422f4d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d758e2eed2643afac5f2881542fbb5aa97640b54be20d0a5ed0691d02f0867d
MD5 b4653633465f5f72c3d0e6d68d714d94
BLAKE2b-256 44bfa447a51054ceed23f69d4f7370289044b4508569f11da6db2eec087bc174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10a78fce9018cc3e9a772b6537bbe3fe92380acf656c9f86db2f45e685af376e
MD5 7d64cb34f1e984475b5c35066fb69aae
BLAKE2b-256 169d34ea09295620fddae65cf7caeac81bbfc386a3ae6ce26a4dcadbb54c134d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90ea8d302a5d30b948451d146e94674a3c5b020cc0ced9a1c28f8ddb0f203a5d
MD5 38cc432f2afbfb34bad45aa7e1370a08
BLAKE2b-256 4654e3aa4f46eddf795f10452ea878ff85c3496d36409636530f9a37e2de3cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f0f749f07002c2d6fecf37cedc43207a88e6c651926a470a5f229070cf791879
MD5 1612c78b7828bf5f7c1f7925e430f605
BLAKE2b-256 5d1a1fb7d622195bcb3ce7b04366a833e51cfa5ad632c5dafe32e0763cd3fdc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66821fada6426998762a3650a37fba77e814a249a95b1183011070744aff47f6
MD5 e50e9013bfe1cebd075f795ca9f8fbc6
BLAKE2b-256 52fd1fae8c4c13af22d8d17816c44421085509a08dfa77f573d31447d6cd540c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a65a147f545f3fac86f11acb2d0b316d3e78139a9372317b7eb50561b2817ba0
MD5 fe0b69b7601fbb9df51b24dacf9feb14
BLAKE2b-256 6837e18c5a00bfd1c4c2c815536d5c63a470e4364b571bd5096d38d0fe277bf5

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c52b12b10e4057fc302bd09cb3e3f28bb382c30c044eb3396e805179a8260e4
MD5 fda5c5ce30e657ce553106e132cb642f
BLAKE2b-256 d723fbfacfed8805983a83324099484e47b9028d0d3c07a0fe017123eee3f580

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 020ea47a79b2bbd7bd7b94b85ca956ba7cb026e82f41b20d2e1dac4008cead25
MD5 d3867881d7453ccb8b5645a016f15fd9
BLAKE2b-256 b3410dd85cef0e5a5a332bdda7b55738e950c2edecea3ae45c658990553d50f8

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e152f4ab9ea1632b5fecdd87cee354f2b2eb6e2dfc3aceb0eb36a01c1e12f94c
MD5 899fc95fd0e5b71ffabad4b6f19a8a73
BLAKE2b-256 38c45bfe02d4cdd16338973d452c7c6042abdd2827d90f7ce4e21bc003f2edb1

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f9732e59863eaeedd3feef94b2b216cb86d40dda4fad2d0f0aaec3b31592716
MD5 1cb8674b83ab71c68233198dc36f4ca1
BLAKE2b-256 a22a9f290f0d10ea87a266d63025078eabfa040ad29ea10d815e167a5104de00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a46ef3ecf61e4840fbc1145fdd38acf158d0da7543eda7b773ed2b30f75c2830
MD5 f982269fdd7133df1883db155e56cc01
BLAKE2b-256 630f74f9112f7f506acc01f085811c6d135751b6fa42d30207f53b25579d043a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7bc7088c15150745baf66db62a4ced4507d44419eb66207b609f91b64a682af
MD5 acc0fdcecc1ac2c89939375a81c89bb9
BLAKE2b-256 2ecd73a0fc913db50c3b736750ce67824f1108c2173e5d043a16ef9874b4f988

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06c16b7a91cdc5d700271899e4383384a61aae83a3d53d0e2e5a266376083342
MD5 2de0e0ee11bf57b4df69cc2b728d68c2
BLAKE2b-256 501ca4d3d8c20bf3bbafd8c5038e7da09043a9d21450b6a73694ada11c01b58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffcb09d5c0ffa043254ec9a734a73f3791fec8bf6333592f906bb2e91ed2af1a
MD5 f38c9fda8479e337bc3a4c3116e5695d
BLAKE2b-256 3b8853eec2373745069d4c8a59d41ee2ef4a48949b77cccd0077c270261b238a

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 754bac5e470adac7f7ec2239c485cd0b75f8197ca8a5b86ffb20eb3a3676cc42
MD5 bac328efe4d3a90b46b822aef8bb0b8e
BLAKE2b-256 32a6d49dbb0d75d02d11db49151469e1fee740efa45de7288bffcc4d88d0c290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f6661a69c68349172ba7b4d5dd65fec2b0917abc99002425ad78c3e58cf7595
MD5 8d3fe5e654946186e38b9821d5d29956
BLAKE2b-256 52f495937eb5c5370324a942ba90174c6d0fc7c5ad2f7f8ea989ccdbd6e1be5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0baadeb27f9e97e65922b4151f818b19c311d30b9efdb62af0e53b3db4006ce2
MD5 f521f58dc9bc1b5e7808de4af3aba963
BLAKE2b-256 60fedfade1421063643b0719d39e4d6cd5dc3eab8022a5652b78e491c5c9fa63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5f0521ed3bb9f02e9486573ea95e2062cd6bf036fa44e640bd54a06f22d85f35
MD5 91d4ad532142488fa0cdb187f5bf3ebf
BLAKE2b-256 fec84a30fa67b84a94b211e2aea99309be9c0ac1411dc14416cc59c3856295eb

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30bb223e6c3f95ad9e9bb2a113292759e947d1cfd60dbd4adb55851c370006b2
MD5 986dfc8b398c588bf72b70be14cf0421
BLAKE2b-256 0286c3e6b76af44248ce82e60452614e071241f26f0341b8296a1af4a9da0a7b

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4afcb38e22122465013f4621b7e9ff8d42a7a48ae0ffeb94133a806cb91b4aad
MD5 66208600dad4dafd9639eef3fe302cee
BLAKE2b-256 114535426ee8961cc9fbd63322c166e65d2da328e42c96140659d64a2d575fb9

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ad212ae2b03951367a69584af034579b34e1e4199a75d377ef9f8e08ee299b1
MD5 14bc5f18f0948b321a97399b2f7bf99b
BLAKE2b-256 c489d0a4d0cfe157246ca7a215af782e313ac68d02c0f400c0c644a349449e94

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 342570716e2647a51ea859b8a9126da9dc1a96a0153c9c0a3514effd60ab57ad
MD5 1abebc3d61e00696e8d468c4a021ca42
BLAKE2b-256 ec94293a7ad8852eb05090bcd1b66f6c4918035d1652c9a5afa2978e424d46a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a97d37ee4fe0d1c6e87d2a97229c27a88787a8f4ebfbdeee95f91b818e52efe
MD5 e3ee016bf5027496542ee82fa160b2c9
BLAKE2b-256 2025189b1b49ff32719469f404b7494b16aa2eb20065c2c984ef6159ef13bceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3058a1bb0c767b3a6ccbb38b27ef870af819923eb732e21e44a3f300370fe159
MD5 e7f553c85c6374735afcca73b409213e
BLAKE2b-256 a7a0cf37a410fd4ff89866217699bc8e6528523ea46177f7fa2fcd3e05c58039

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1eb115d53dc2a1299ae72f1119c96a556db36073bacb6da40c47ece5db0d9587
MD5 35554c03dec4c5297a72eb5ad1814ee4
BLAKE2b-256 27977624734a3d58a34d3e42f51f50e01a291b13c0a1db2992a110718226f40c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e61dd7d05da11fc69bb86d51f1e0ee08f74dccf3ecf884c94de41135ffdc75d
MD5 625eeaa1750e89d40855d97fda52e8c2
BLAKE2b-256 2c6323f7b0fd200b64393ba5c53632c85ea6950fbe4de40e8aa937b81b65ccf3

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ee5b19a2d794463bcc19153dfceede7beec784b4cf7967dec0bc0fc212ab3a3
MD5 3e07d623485e2ba653972bdfe7821cf4
BLAKE2b-256 61533686507b4c9950e915e6474e9c924053d2484bf3485dd88a789d89a8eec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bdaaa81a6e95a0a19fba0285f10577377f3503ae4e9988b403feba79da3e2f80
MD5 673c1f426c337ddfc4e5d3fddf8ac99d
BLAKE2b-256 6356699df6a7b808ff737795359e843f640ed646a3274dcd5c9c47caf9e888be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 59e0dda9ad245921af0328035a961767026e1fa94bb65957ab0db0a0491325d6
MD5 997d7914ae2352d48c56e1c218bb3c9e
BLAKE2b-256 f9244ed9d16915df44b9ce9f90a7eff40fefa6f3b5625cdd0d08e7cf656c98d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5edd01909348f3b0b2da329836d6b5419cd4869fec2e118e8ff3275b38af6267
MD5 78eeddc1699ea51730c3cfe84d1d019e
BLAKE2b-256 6d5b772dc7be8352f53b830cb64738b6a83878dbcd7db587c07e902cb3a19aa2

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62d66e0423e3bd520b4c897063506b309843a8d07343fbfad04197e91a4edd28
MD5 503a7614220addc9aa127c790bdb62c9
BLAKE2b-256 2db8bab0ea0c36a1f868ac94433b6b9aa2f4891284f59394f4a904fe972d3049

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0361428e6378911a378841509c56ba472d991cbed1a7e3078ec0cacc103da44a
MD5 dbc154c9172ca901c295475d606b8583
BLAKE2b-256 4f4871c4df15bab29a52840d843b7b1043912567d903a2f2dfc2c300a3c9c5f6

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a166251b8fbc6f2755e2ce9d3c11e9edb0c0c7d2ed723658ff0161fbce26ac1c
MD5 729f2376e5f33c034c8f612ded9bbeff
BLAKE2b-256 38c7745afea5946a7ec06c1b37ef2b041d5ab5bde1a0bfe65bd8d07094af7ce8

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb693000b65842c85356b667d057ae0d0bac6519feca7e1c437cc2cfeb0afc59
MD5 defa89466780e8c4c25b204e065b679e
BLAKE2b-256 d08ae5401fb7c00fb29400e35b3a6d8cd8b372b51258e62c3ac3162ee468f4b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28b8614de08679ae95bc4e8d6daaef6b61afdf027fa0d23bf13d619000286b3c
MD5 131491982c8d49484448ea55f5d1fddf
BLAKE2b-256 8725b0e8255400eef2ec376d9e4e344154b0e9d4c631f06b655e10f570f0ab3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b2ef636a6a25fe7f3d5a064bea0116b74a4c8c7df9646b17dc7386c439a26cf
MD5 da326da7812642efb1438db284167a04
BLAKE2b-256 9fead36a4022dad036f0f32a897c9cb166dc5d675fa35d28682443b9db0ac0f5

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-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.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc9d79b1bf833af63b7c720a6604eb16453ac1ad4e718eb8b59d1f97d986b98c
MD5 e8b565f2e96296f1a2dff4981c9c6312
BLAKE2b-256 28a289aea3db59a4993389b30cf20eb3271738c4f095cc0da03fdc2e55d006bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24f3c8be826a7d44181eac2269b15b748b76d98cd9a539d4c69f09321dcb5c12
MD5 114ae07f2d905101702abbd82317ec99
BLAKE2b-256 68a105f1cf389772fdd35b5e8a6329ce87f4470a8efe58c46b6e480c83bc15e0

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceb3ce3262b0e8e088e4117175591b7a82b3bdc5e52e33b1e74778b5fb53fd38
MD5 a5e328a29e44fc7871bf3cd00a6435d0
BLAKE2b-256 1dd6b5ef35edf8dca32453f631467c9a4aa4dce30a7013da70783b4e3a0f5544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 acf41cf91bbc5a36d1fa4455a818bb02bf2a4ccfed2f892ba166ba2fcbb0ec8a
MD5 e93875d21b1e54a9fb751a41252efb97
BLAKE2b-256 5bf02c93895c23756e357522c81dc92ce1335f7951dea36f379f66fd2510ceb8

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page