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.5 (unreleased)

  • Fix bouncing Dock icon on macOS (issue #143).

  • Fix building on C23 compilers (issue #145).

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

Uploaded Source

Built Distributions

setproctitle-1.3.5-pp310-pypy310_pp73-win_amd64.whl (12.2 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.5-pp310-pypy310_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.5-pp310-pypy310_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.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (11.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

setproctitle-1.3.5-pp39-pypy39_pp73-win_amd64.whl (12.2 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.5-pp39-pypy39_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.5-pp39-pypy39_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.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl (11.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy Windows x86-64

setproctitle-1.3.5-pp38-pypy38_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.5-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.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

setproctitle-1.3.5-cp313-cp313-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

setproctitle-1.3.5-cp313-cp313-win32.whl (11.5 kB view details)

Uploaded CPython 3.13 Windows x86

setproctitle-1.3.5-cp313-cp313-musllinux_1_2_x86_64.whl (30.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

setproctitle-1.3.5-cp313-cp313-musllinux_1_2_ppc64le.whl (32.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.5-cp313-cp313-musllinux_1_2_i686.whl (30.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

setproctitle-1.3.5-cp313-cp313-musllinux_1_2_aarch64.whl (31.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

setproctitle-1.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.7 kB view details)

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

setproctitle-1.3.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.6 kB view details)

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

setproctitle-1.3.5-cp313-cp313-macosx_11_0_arm64.whl (11.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

setproctitle-1.3.5-cp313-cp313-macosx_10_13_universal2.whl (17.2 kB view details)

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

setproctitle-1.3.5-cp312-cp312-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

setproctitle-1.3.5-cp312-cp312-win32.whl (11.5 kB view details)

Uploaded CPython 3.12 Windows x86

setproctitle-1.3.5-cp312-cp312-musllinux_1_2_x86_64.whl (30.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

setproctitle-1.3.5-cp312-cp312-musllinux_1_2_ppc64le.whl (32.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.5-cp312-cp312-musllinux_1_2_i686.whl (30.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

setproctitle-1.3.5-cp312-cp312-musllinux_1_2_aarch64.whl (31.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

setproctitle-1.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.7 kB view details)

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

setproctitle-1.3.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.6 kB view details)

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

setproctitle-1.3.5-cp312-cp312-macosx_11_0_arm64.whl (11.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

setproctitle-1.3.5-cp312-cp312-macosx_10_13_universal2.whl (17.2 kB view details)

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

setproctitle-1.3.5-cp311-cp311-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

setproctitle-1.3.5-cp311-cp311-win32.whl (11.5 kB view details)

Uploaded CPython 3.11 Windows x86

setproctitle-1.3.5-cp311-cp311-musllinux_1_2_x86_64.whl (30.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

setproctitle-1.3.5-cp311-cp311-musllinux_1_2_ppc64le.whl (32.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.5-cp311-cp311-musllinux_1_2_i686.whl (29.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

setproctitle-1.3.5-cp311-cp311-musllinux_1_2_aarch64.whl (30.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

setproctitle-1.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (11.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

setproctitle-1.3.5-cp311-cp311-macosx_10_9_universal2.whl (17.3 kB view details)

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

setproctitle-1.3.5-cp310-cp310-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

setproctitle-1.3.5-cp310-cp310-win32.whl (11.5 kB view details)

Uploaded CPython 3.10 Windows x86

setproctitle-1.3.5-cp310-cp310-musllinux_1_2_x86_64.whl (29.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

setproctitle-1.3.5-cp310-cp310-musllinux_1_2_ppc64le.whl (31.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.5-cp310-cp310-musllinux_1_2_i686.whl (29.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

setproctitle-1.3.5-cp310-cp310-musllinux_1_2_aarch64.whl (30.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

setproctitle-1.3.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

setproctitle-1.3.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.8 kB view details)

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

setproctitle-1.3.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.8 kB view details)

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

setproctitle-1.3.5-cp310-cp310-macosx_11_0_arm64.whl (11.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

setproctitle-1.3.5-cp310-cp310-macosx_10_9_universal2.whl (17.3 kB view details)

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

setproctitle-1.3.5-cp39-cp39-win_amd64.whl (12.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.3.5-cp39-cp39-win32.whl (11.5 kB view details)

Uploaded CPython 3.9 Windows x86

setproctitle-1.3.5-cp39-cp39-musllinux_1_2_x86_64.whl (29.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

setproctitle-1.3.5-cp39-cp39-musllinux_1_2_ppc64le.whl (31.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

setproctitle-1.3.5-cp39-cp39-musllinux_1_2_i686.whl (29.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

setproctitle-1.3.5-cp39-cp39-musllinux_1_2_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

setproctitle-1.3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.5-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.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 kB view details)

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

setproctitle-1.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.5 kB view details)

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

setproctitle-1.3.5-cp39-cp39-macosx_11_0_arm64.whl (11.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

setproctitle-1.3.5-cp38-cp38-musllinux_1_2_x86_64.whl (30.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

setproctitle-1.3.5-cp38-cp38-musllinux_1_2_ppc64le.whl (32.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

setproctitle-1.3.5-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.5-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.5-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.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.1 kB view details)

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

setproctitle-1.3.5-cp38-cp38-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

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

File details

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

File metadata

  • Download URL: setproctitle-1.3.5.tar.gz
  • Upload date:
  • Size: 26.7 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.5.tar.gz
Algorithm Hash digest
SHA256 1e6eaeaf8a734d428a95d8c104643b39af7d247d604f40a7bebcf3960a853c5e
MD5 d15aaca57137d538c9c6721a55d23ce4
BLAKE2b-256 c44d6a840c8d2baa07b57329490e7094f90aac177a1d5226bc919046f1106860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6bddef4e27d0ed74e44b58bf050bc3108591bf17d20d461fc59cd141282f849c
MD5 37e6aed88776d91be5ac33538a77caeb
BLAKE2b-256 c1a21fb0647a251f4c788b94f751cf23171b2a905758fd13ef8d126222d41428

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4028639b511f5e641d116b3b54ad70c637ebd1b4baac0948283daf11b104119f
MD5 444fc55eb1d21f34b87e28a0b180fed4
BLAKE2b-256 a915caa47039e267ea67316b285e2e308ae529872ad6a143edf03a7d8edf6175

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31dc9b330e7cac7685bdef790747c07914081c11ee1066eb0c597303dfb52010
MD5 3c9e55262b724c8f6bb6e13104103288
BLAKE2b-256 a65fa049640b05c609585ad0f471e667be0fd9ab533219127b455826d31587d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc66b84beb0d5eb03abf0c3140c6d2cbe3d67ae9f0824a09dfa8c6ff164319a6
MD5 22c835ba31f82aac8e5e7246a006f9c0
BLAKE2b-256 4aba2524329ce958599069f0d0e4cfd3d6fbb7c58a4408b9e5609698e47353ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fe3bfd5e51c24349d022e062a96c316a1b8862ea9a0cf5ea2a8b2ae008b77cec
MD5 1ba06bd328e828e77672d1efbc321aed
BLAKE2b-256 c35a00c448f0c994b91a26491cb50b6b1c086dbfcad28a6f3495e9254f8cbae7

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36b130cf8fe76dc05ad1d48cc9ff3699eb1f0d8edbf6f46a3ce46a7041e49d7b
MD5 472c79ed2893beb16488d9a2a6bd7743
BLAKE2b-256 551c0bb8e3b7ba4fb78acf25b74e0b8913da95e6d91bf164753a7001809641cf

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95913af603da5b4c7635bf1fb67ecc5df7c18360b6cfb6740fd743bb150a6e17
MD5 90cf68fa13f65770fbf835706f412c9f
BLAKE2b-256 6a3d30f2dee43d99aaee59eaa243a6e1edbc0496d66a34bc5c445e785b14fff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b63bda3cb4b6526720dc7c6940b891c593f41771d119aeb8763875801ce2296d
MD5 741ca59f038f573f61fbbb5bb7a5ea6c
BLAKE2b-256 d6442fac732dd64db1b54e2b7dadae5d1fa5735e3fb13b5673b2e09c35443d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a863296a31fb578726c570314cb78ff3a3fddb65963dc01ea33731760f20a92c
MD5 75d27a3a40e243cf48693428289f67af
BLAKE2b-256 d3b26984bb1c521e6c08742e0c1de00c433dcae54c104a4bc177a6813fb0191b

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cef63879c79a570aabf7c158f453bf8d1285f0fda4b6b9b7a52d64b49c084d40
MD5 36ddb0553342f0f940a2d73bcb1b9854
BLAKE2b-256 b840f6d33b6fac9feb08da63a58aa9b3daddfa922eef4b11e5c81e6c62ace116

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cefc2dbdc48121022c3c05644cd3706f08e0b3c0ce07814d3c04daba0617936
MD5 00adadd85a8e8d75b671cb00bf728899
BLAKE2b-256 4e0772805314847fab93412245727a8b10ce4f7eacc8b63e1e33b1f9c73c3c02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9996be1d1df399c3cdc6d72ce0064e46bc74fc6e29fe16a328511a303dd4d418
MD5 9ee7aba1e8f4e60063570163de89dc53
BLAKE2b-256 5a87eaf5e9343b4609f649b6cb8f786dcea6acd35fa62f28543fb54f2cde26b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e1d28eb98c91fbebd3e443a45c7da5d84974959851ef304c330eabd654a386f1
MD5 9e91700e87d56d71a93e00855515fac0
BLAKE2b-256 eff1a19cde9f3f4054aed7c6077e7fc3420a5151ec6173cf3235fe000722ccb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e9c0d0cfcf715631b10d5950d04a9978f63bc46535724ef7c2eaf1dca9988642
MD5 bb23218a58ea4253ea502957a505914c
BLAKE2b-256 3834a3bdaeaee03e11aef82b45014738f1210f90e37359c41eda3e49b4ce891c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a7fed67ab49f60bd51f3b4cffff3f8d754d1bb0a40e42869911301ec6519b65
MD5 ff7377818c39bcce5a700a41da25a978
BLAKE2b-256 1a710c1e151ef6899260da4009e7170f56261486d3149e9bad40990b52bdd620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d880630fd81d1b3bde121c352ca7ea2f2ff507ef40c3c011d0928ed491f912c9
MD5 d366eb5b671c8322ac595f6832091ad1
BLAKE2b-256 254b83575bb403967f1069b68a8799979fe7979b5a7c17703d2984965d8f4e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 269d41cd4f085b69821d1ee6599124f02dbbc79962b256e260b6c9021d037994
MD5 d34fe5a3cd87d68e34e828a53896c9a6
BLAKE2b-256 f308fa13f2da6bd10ca756a45f8fed2888f439e9ce7d6402258e87ceef2d4c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36178b944019ec7fc52bb967ffeee296a11d373734a7be276755bedb3db5c141
MD5 ef7f91a86e1f441c5c0d3a119622d82e
BLAKE2b-256 775572af3dbb0b1304bad54ea3b7cf1b524a8a2868da0b4c38bc18290f0097f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a887582bfdb6dcbc482db0ef9e630ad23ca95875806ef2b444bf6fbd7b7d7ca
MD5 f8de08457924151ae54708c1d09a9c98
BLAKE2b-256 01f2b00fe72c20897695f85932d193a5c57ecf94cbf825c0fd4082e3fa3e00bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd70c95a94473216e7c7a7a1f7d8ecbaca5b16d4ba93ddbfd32050fc485a8451
MD5 ec93d23dd394855d1052f73b6f335472
BLAKE2b-256 f0228430c879a8e3201508924a6cf45dba92b9a7b105fac8eebd0ef62e60fba9

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ab52b4c2ce056a1b60d439991a81ca90f019488d4b4f64b2779e6badd3677e6
MD5 f03d3f1419cf735dd46e5621b95d0f13
BLAKE2b-256 16991bcb837134c71f332bfeaf923e68279566362b7d1504aa106af8046696e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 755671c39a9e70834eeec6dc6b61e344399c49881d2e7ea3534a1c69669dd9cc
MD5 3a8b840df7acab38de24b5df38b10ea1
BLAKE2b-256 115be497bf702ea5d553a331ca879e73a18bbd8f7d66d18d275cb2324e4144c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4969d996bdfbe23bbd023cd0bae6c73a27371615c4ec5296a60cecce268659ef
MD5 a329dccdacc72230a5bff823374a10f0
BLAKE2b-256 3d0014781f0ac28c7a37fe2ba321c276188ddd5ca73d69dab8a0f739d57b776b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 162fd76781f57f42ddf27c475e5fef6a8df4fdd69b28dd554e53e2eb2bfe0f95
MD5 9c9b85c1379753b19a357d2b08accccb
BLAKE2b-256 ab78d6b5aa3af2dd64f6c32e78fb85797b9725a3cdcbdf17dffc5838019918c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7a8c01ffd013dda2bed6e7d5cb59fbb609e72f805abf3ee98360f38f7758d9b
MD5 0c1a0506a38bf3d3385b0b1cd2abb5d7
BLAKE2b-256 c18ce8a7cb568c4552618838941b332203bfc77ab0f2d67c1cb8f24dee0370ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cf4e3ded98027de2596c6cc5bbd3302adfb3ca315c848f56516bb0b7e88de1e9
MD5 04402ed0695c4fbd47c200a2138c258f
BLAKE2b-256 65f06cd06fffff2553be7b0571447d0c0ef8b727ef44cc2d6a33452677a311c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3b5e2eacd572444770026c9dd3ddc7543ce427cdf452d40a408d1e95beefb30
MD5 431698df87d66568b5b20b0ef5be1238
BLAKE2b-256 6e0813b561085d2de53b9becfa5578545d99114e9ff2aa3dc151bcaadf80b17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50cfbf86b9c63a2c2903f1231f0a58edeb775e651ae1af84eec8430b0571f29b
MD5 f5306e8e3e7b82d8dcaa3c771c48d513
BLAKE2b-256 13eee1f27bf52d2bec7060bb6311ab0ccede8de98ed5394e3a59e7a14a453fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d8a411e752e794d052434139ca4234ffeceeb8d8d8ddc390a9051d7942b2726
MD5 1f7e7473d8b23ee9e689453d72b15834
BLAKE2b-256 72e7b394c55934b89f00c2ef7d5e6f18cca5d8dfa26ef628700c4de0c85e3f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83b016221cf80028b2947be20630faa14e3e72a403e35f0ba29550b4e856767b
MD5 d1608be6d05e0dc0d9461d4089efaa6e
BLAKE2b-256 b0624509735be062129694751ac55d5e1fbb6d86fa46a8689b7d5e2c23dae5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b91e68e6685998e6353f296100ecabc313a6cb3e413d66a03d74b988b61f5ff
MD5 946cc8728eadd07734caf53f22fa19ce
BLAKE2b-256 1513167cdd55e00a8e10b36aad79646c3bf3c23fba0c08a9b8db9b74622c1b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea6c505264275a43e9b2acd2acfc11ac33caf52bc3167c9fced4418a810f6b1c
MD5 e1e879cf3aa63a671c4c58f4975c845a
BLAKE2b-256 36d6e90e23b4627e016a4f862d4f892be92c9765dd6bf1e27a48e52cd166d4a3

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 828727d220e46f048b82289018300a64547b46aaed96bf8810c05fe105426b41
MD5 7b0bbecdfd7c430f0e2189484a5c248f
BLAKE2b-256 527978b05c7d792c9167b917acdab1773b1ff73b016560f45d8155be2baa1a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc1fda208ae3a2285ad27aeab44c41daf2328abe58fa3270157a739866779199
MD5 cc5b9350e794b982fae2e036f5a46b32
BLAKE2b-256 9b22574a110527df133409a75053b7d6ff740993ccf30b8713d042f26840d351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6ec1d86c1b4d7b5f2bdceadf213310cf24696b82480a2a702194b8a0bfbcb47
MD5 68cf64cce0a4865b2b8e45b81a658cf9
BLAKE2b-256 b93d2ca9df5aa49b975296411dcbbe272cdb1c5e514c43b8be7d61751bb71a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 523424b9be4dea97d95b8a584b183f35c7bab2d0a3d995b01febf5b8a8de90e4
MD5 1bf8eabaca85968e99d6809b2d895c98
BLAKE2b-256 2b1904755958495de57e4891de50f03e77b3fe9ca6716a86de00faa00ad0ee5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab3ae11e10d13d514d4a5a15b4f619341142ba3e18da48c40e8614c5a1b5e3c3
MD5 65be6d312a92384ee69de1496c4f606b
BLAKE2b-256 e7576e937ac7aa52db69225f02db2cfdcb66ba1db6fdc65a4ddbdf78e214f72a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea07f29735d839eaed985990a0ec42c8aecefe8050da89fec35533d146a7826d
MD5 74638d84c630fda081b61fb428ff62b2
BLAKE2b-256 9e43cc7155461f0b5a48aebdb87d78239ff3a51ebda0905de478d9fa6ab92d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62a01c76708daac78b9688ffb95268c57cb57fa90b543043cda01358912fe2db
MD5 5d1916a559c54e4d3b0aca48470c9fbe
BLAKE2b-256 5509c0ba311879d9c05860503a7e2708ace85913b9a816786402a92c664fe930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1534d6cd3854d035e40bf4c091984cbdd4d555d7579676d406c53c8f187c006f
MD5 acff5ebe97980aa71daa03b168ddd21a
BLAKE2b-256 e2d6b3c52c03ee41e7f006e1a737e0db1c58d1dc28e258b83548e653d0c34f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1f13a25fc46731acab518602bb1149bfd8b5fabedf8290a7c0926d61414769d
MD5 b7d60fdb2351c6a61ef802608f3640c3
BLAKE2b-256 d48462a359b3aa51228bd88f78b44ebb0256a5b96dd2487881c1e984a59b617d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78288ff5f9c415c56595b2257ad218936dd9fa726b36341b373b31ca958590fe
MD5 2b546d07fcd1838ce233fee9e8d5220f
BLAKE2b-256 a6dcd8ab6b1c3d844dc14f596e3cce76604570848f8a67ba6a3812775ed2c015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fec8340ab543144d04a9d805d80a0aad73fdeb54bea6ff94e70d39a676ea4ec0
MD5 246867edb576e37c8724d027032c3d03
BLAKE2b-256 5a1258220de5600e0ed2e5562297173187d863db49babb03491ffe9c101299bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0424e1d33232322541cb36fb279ea5242203cd6f20de7b4fb2a11973d8e8c2ce
MD5 9b5ff560d8d40f3d1ec9159f70c9a3b6
BLAKE2b-256 473a75d11fedff5b21ba9a4c5fe3dfa5e596f831d094ef1896713a72e9e38833

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2c371550a2288901a0dcd84192691ebd3197a43c95f3e0b396ed6d1cedf5c6c
MD5 958fadbb60f4e6f38a36ef34e6c5554b
BLAKE2b-256 316ebaaf70bd9a881dd8c12cbccdd7ca0ff291024a37044a8245e942e12e7135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eab441c89f181271ab749077dcc94045a423e51f2fb0b120a1463ef9820a08d0
MD5 229277d717b805b0ee7762d738d2c889
BLAKE2b-256 fac4fbb308680d83c1c7aa626950308318c6e6381a8273779163a31741f3c752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca82fae9eb4800231dd20229f06e8919787135a5581da245b8b05e864f34cc8b
MD5 e9f09af0dc13e1c4b346dc6a83f6909b
BLAKE2b-256 c7a176ad2ba6f5bd00609238e3d64eeded4598e742a5f25b5cc1a0efdae5f674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1c8dcc250872385f2780a5ea58050b58cbc8b6a7e8444952a5a65c359886c593
MD5 5cdb7804b179f3fa9e0b0d77ff761c3e
BLAKE2b-256 ec4a9e0243c5df221102fb834a947f5753d9da06ad5f84e36b0e2e93f7865edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81f2328ac34c9584e1e5f87eea916c0bc48476a06606a07debae07acdd7ab5ea
MD5 12af59ee832eb30eb376439c927ba21c
BLAKE2b-256 a6f42dd926687b7a3bdaa83533e2898f929e1ff3bdeb6aa271bdb1d4d5923c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd2cccd972e4282af4ce2c13cd9ebdf07be157eabafd8ce648fffdc8ae6fbe28
MD5 f871f8fd22907c8704db12842278758d
BLAKE2b-256 ba0f4551cbb120d003fa1284ee35d559366e09b513a87dfee02f804da1936054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaee7acba2733a14a886488b7495bfec4a8d6407124c04a0946dbde1684230a3
MD5 6533e17e48fe2366c0e38883ff68ddad
BLAKE2b-256 ec9d6b697c1562b21368e579d820bca2a607e565638fd332247841eb65dec4b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8ec0a7fe9f1ba90900144489bc93ce7dd4dec3f3df1e7f188c9e58364fe4a4c5
MD5 c4a6b04fff228dc7faed815759d442ea
BLAKE2b-256 c69656f45f0b81fcc776f925c34e2699040df39cfc6b3cc7520d9b378314435b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 867af4a5c3d85484fbcc50ea88bcd375acf709cff88a3259575361849c0da351
MD5 4fd5bbc0ba501c057ee78f6b5947133d
BLAKE2b-256 7ebf65a8f8f2d03cd9a9429cfa0d6b22282ff7a609a4d08602bcb8351a271bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 310c7f4ca4c8476a9840b2cd4b22ee602a49a3c902fdcd2dd8284685abd10a9a
MD5 abcc9deaa1bb84ea38ce1bce453adcbe
BLAKE2b-256 45604c17211c2d80e6fe9fa486fa3214d565d0cd9a6eff0b67e6219ddb2ba49c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb0500e1bc6f00b8ba696c3743ddff14c8679e3c2ca9d292c008ac51488d17cf
MD5 e8d5f868c7ae3c0953650fd9b973f882
BLAKE2b-256 034de2055dfb1b492fd3a3b27deeaa642d81c580d48a16bc9b07afc3504af677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53fc971f7bf7a674f571a23cdec70f2f0ac88152c59c06aa0808d0be6d834046
MD5 16af55d2bca556c27cdd5f6303402aaf
BLAKE2b-256 012dabc817b3778d9b1f7675020030379a0c39e0bf74b36af211b26191a63da3

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5a05e2c3fdfbda32b9c9da72d0506398d1efb5bd2c5981b9e12d3622eb3d4f9
MD5 29f821ef4a3ac4961c0519325fbbad9d
BLAKE2b-256 df462ea4d436c7d664d41df7e60fbd3103f1139a931638e998f478e870e72255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 995b3ac1b5fe510f4e1d1c19ebf19f4bceb448f2d6e8d99ea23f33cb6f1a277e
MD5 22aae62f6045d26547f1d27b1ca820d4
BLAKE2b-256 8928a1f23d7d127dff59fe75ad671d1d5c83ab8cba10d0e343820b96d5d8a2f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55b278135be742b8901067479626d909f6613bd2d2c4fd0de6bb46f80e07a919
MD5 54e7e6b0ed80bea4deb488ab9161250e
BLAKE2b-256 ed64936c1f92d60052f11a8de9f90a4b7ec4996b8ebd6d67ba425ed214c80771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02870e0cb0de7f68a7a8a5b23c2bc0ce63821cab3d9b126f9be80bb6cd674c80
MD5 f008731b8b04ea3ac839f29e9ed35c54
BLAKE2b-256 9de19ccff2682c38061baa07e128b60712bc18e3398aa7d5471c51a704f9d24c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c64199a73d442a06d372b5286942229a43e86fa41bf36f317dcc60c036aff0bb
MD5 a36c51771ecb7660dcbab2f23e4c5c5a
BLAKE2b-256 c6429ebc421d3b9be8413150fddb8a7c692e9039f3562b4a6464ea561e1f9074

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.5 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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 707c23d4a88f5e66f1005d93558bf84eb45fc0fb0c4f33480a0c7d0895e8e848
MD5 fffadf99f867381dc5744712b7d9e844
BLAKE2b-256 6cbdba33cbf738f2dc006d249019b18f71be762be94e0d102232c784e1a40e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b58d49c32a46c48dcc2812635a89e6bee31139b03818da49a0bbaeaf01edef9
MD5 464d4f97a392705e286b55884796cab8
BLAKE2b-256 f4321b633f9dd8178a95bb03baf559bc444c5594eb6afe0fb38a3211ed873e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 322067ef1ffe70d297b00bee8a3862fed96021aa4318e3bce2d7c3bfa7a8d1e7
MD5 b9e4816de2279443d6ddf9746c3ee5f2
BLAKE2b-256 2830edc30fc030b8ab63ca529763b43ba2687f901211f91e0c8ed725b7efb008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bb6ea3d6e690677619508050bc681d86223723bdf67e4e8a8dffc3d04ca3044
MD5 6bcf47ea830e96ac68dd023ca6776bb0
BLAKE2b-256 522017c764fb5afce725fd7660b985b67ce63802ceda295fe33e1490b4229a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1af1d310b5b6cda692da52bd862a9833086c0a3f8380fa92505dd23857dcf60
MD5 f0045fe3ee304a7adac3964e09c5a7d3
BLAKE2b-256 ecb70a162868f9cd4b5d432da82562e3eebc2da308441fe3145d84763d0ee447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8305b6e6c203222c61318f338f1de08269ec66c247bf251593c215ff1fbeaf9
MD5 36600c5b4d40e3ad891867afe2598091
BLAKE2b-256 34d1618635630a8f83132f71106b97aa1d7fb5d2bae0ce1125efc496e2c087d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4272295721cf1fd2acf960b674d6dc09bec87f2a1e48995817b4ec4a3d483faf
MD5 3075801d3ecee0e761119b1f12b047dd
BLAKE2b-256 140ca1e1a0554c1261a754eeadef03149115c10e59c1514e254e8532d5639fd5

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4629de80c47155a26e8d87a0a92d9428aa8d79ccfe2c20fd18888580619704e1
MD5 ca7d3f6adaa81d9895e416df2482e12b
BLAKE2b-256 347d4126adef1870d6e880b84923f3e17451ea3e02273b97fb14159f20d25a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 becc9f3f605936506d2bd63d9cf817b7ee66b10d204184c4a633064dbed579d6
MD5 2a605ff9ef38f307171503a592170a1a
BLAKE2b-256 a0f5b94bbbddcbff1d49df0e686cdec2c29b730081c734b104f24cc301a656bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d57e7626329d4fb138da5ce15270b08a91326969956fb19c7a8fec2639066704
MD5 dd18a5e275a610fa7817017cdebe3ffd
BLAKE2b-256 ed824695bcdf097c45ed999b3c590d021b75e7e3c700241f28c27e4c937f6d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c4b299b5bbadf00034978b8d741c85af25173146747eb9dab22596ec805a52d6
MD5 af0c24fea69cabf432e3e9b294843923
BLAKE2b-256 d35890f1a24b0155254da876ae71eff4018931f35038a9766d88b63e4279087e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a58f00f35d6038ce1e8a9e5f87cb5ecce13ce118c5977a603566ad1fccc8d2cb
MD5 03c950b5f8c335574bdefee3c523ad99
BLAKE2b-256 3fe3e482f265b0d943f08c6b0ab2e6b8ee3b24ab96fe2ebd8a7f2d1c4e30d9ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.5-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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 53ce572cdbd43a0bed2aa24299cd823ebf233a7fa720cc7f8634728c213679c0
MD5 e17b158d5f433f2f99963b7a82da3383
BLAKE2b-256 b822aefff7b725248bc98ce6ff64cbf12e07c03c75db3dedacb31556de6f1343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b19fd76d46b8096a463724739c3b09cf5ce38317f559f56f424f6ce7158de3
MD5 3ea377502e20b50a958b059a7638f8f0
BLAKE2b-256 12b8f213ee638774a327be8af5e652b3b7e6a81b28c8811c33d842d80bd7ed7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7edd4fbb9fd17ed0e5a7f8bde9fa61c3987a34372084c45bab4eab6a2e554762
MD5 62b3ded8413c46f239f2f2e2e0338dca
BLAKE2b-256 761f7e59dcdd502eef0d878b5c7e21c3697b77c2826a2b24ce3aacdc175e574e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8915d69260ba6a6aaf9a48f6b53dbf9f8e4dc0cb4ae25bc5edb16a1666b6e47c
MD5 9640d88ab2adbae8c99ea100655facc2
BLAKE2b-256 85f01ceb50291620f8afc277d17074853291c55133c156ac16871f18f18c3d2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ca56e39d10b6758046694a84950e5c5570a034c409ef3337595f64fc2cfa94d
MD5 ecd0c6bfecce3ff396c7b0450bb7cc67
BLAKE2b-256 c54c49a8246136fab5f8781439aa3acbf083e99e0e88129ec4230cbc6b204c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b1d2628ac9868f960d7e87b3a9b2bb337104c3644b699e52e01efd7e106e4fe
MD5 5ed21d27e2d6bc89e8ad724cbcce75ab
BLAKE2b-256 a32c1b039a8f5b1db85a1285383da0bc07e8869d841e5271efa062144fabdf61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20b84de1780bbb0adc67560a113a0ea57e6ecfce2325680de8efe6c2a2f781ac
MD5 3869be93deaddcbf80b02a37a3467911
BLAKE2b-256 432954e5a258028b2a1e8f7e6e9a8f74e747c8e329987a6bb6fe029cfeb090cd

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.5-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.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc4f783e100f8b451cd92fcabd3b831edfb1f7cb02be4a79b972f138e0001885
MD5 0f17a2faf82b07c75b1278e38111d42f
BLAKE2b-256 59fb86f02c262a38e1515ad50277b575810e1400c91fe53e29b8fb0453bec1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa912c4d08c66afda30dd5af8f2e9c59065dfc36a51edbd5419c3a7c962875aa
MD5 164d6a8231080b80e5873981aae16347
BLAKE2b-256 9ebaa347cc33d23092715cdb5e77081088f25bf1c2c73810810a918f2c8a4f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae2ce64ea87837c4e3e65a7a232ff80cf09aa7d916e74cb34a245c47fcd87981
MD5 814544c16fe9093b58a6453d3340b31a
BLAKE2b-256 d9c567ebe82637b62a1459ed3f2fda7cebde0fd0fc7e2478eca6214e58afa362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8995a1217b52d11d92bafd069961a47c5e13d8751ca976a32b3ecbbd471eaf9b
MD5 049552b551209f252991b2fea24b9330
BLAKE2b-256 8733fbd10a3af85b02a4df200830924b1f7c5160d98db4cd6d482f7e24599db4

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