Skip to main content

A Python module to customize the process title

Project description

Tests
author:

Daniele Varrazzo

The setproctitle module allows a process to change its title (as displayed by system tools such as ps, top or MacOS Activity Monitor).

Changing the title is mostly useful in multi-process systems, for example when a master process is forked: changing the children’s title allows to identify the task each process is busy with. The technique is used by PostgreSQL and the OpenSSH Server for example.

The procedure is hardly portable across different systems. PostgreSQL provides a good multi-platform implementation: this package was born as a wrapper around PostgreSQL code.

Installation

setproctitle is a C extension: in order to build it you will need a C compiler and the Python development support (the python-dev or python3-dev package in most Linux distributions). No further external dependencies are required.

You can use pip to install the module:

pip install setproctitle

You can use pip -t or virtualenv for local installations, sudo pip for a system-wide one… the usual stuff. Read pip or virtualenv docs for all the details.

Usage

The setproctitle module exports the following functions:

setproctitle(title)

Set title as the title for the current process.

getproctitle()

Return the current process title.

The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. These information are used by user-space tools such as ps and top.

setthreadtitle(title)

Set title as the title for the current thread.

getthreadtitle()

Get the current thread title.

The thread title is exposed by some operating systems as the file /proc/PID/task/TID/comm, which is used by certain tools such as htop.

Environment variables

A few environment variables can be used to customize the module behavior:

SPT_NOENV

Avoid clobbering /proc/PID/environ.

On many platforms, setting the process title will clobber the environ memory area. os.environ will work as expected from within the Python process, but the content of the file /proc/PID/environ will be overwritten. If you require this file not to be broken you can set the SPT_NOENV environment variable to any non-empty value: in this case the maximum length for the title will be limited to the length of the command line.

SPT_DEBUG

Print debug information on stderr.

If the module doesn’t work as expected you can set this variable to a non-empty value to generate information useful for debugging. Note that the most useful information is printed when the module is imported, not when the functions are called.

Module status

The module can be currently compiled and effectively used on the following platforms:

  • GNU/Linux

  • BSD

  • MacOS X

  • Windows

Note that on Windows there is no way to change the process string: what the module does is to create a Named Object whose value can be read using a tool such as Process Explorer (contribution of a more useful tool to be used together with setproctitle would be well accepted).

The module can probably work on HP-UX, but I haven’t found any to test with. It is unlikely that it can work on Solaris instead.

Releases history

Version 1.3.2

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

Version 1.3.1

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

Version 1.3.0

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

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

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

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

  • Added package type annotations (issue #101).

  • Dropped support for Python 3.6.

Version 1.2.3

  • Added Python 3.10 packages (issue #102).

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

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

Version 1.2.2

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

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

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

Version 1.2.1

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

Version 1.2

  • added getthreadtitle() and setthreadtitle().

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

  • Manage much longer command lines (issue #52)

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

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

  • Added support for Python 3.9

  • Dropped support for Python < 3.6

Version 1.1.10

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

  • Use setuptools if available (issue #48).

Version 1.1.9

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

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

Version 1.1.8

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

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

Version 1.1.7

Version 1.1.6

  • The module can be compiled again on Windows (issue #21).

Version 1.1.5

  • No module bug, but a packaging issue: files README and HISTORY added back into the distribution.

Version 1.1.4

  • The module works correctly in embedded Python.

  • setproctitle() accepts a keyword argument.

  • Debug output support always compiled in: the variable SPT_DEBUG can be used to emit debug log.

Version 1.1.3

  • Don’t clobber environ if the variable SPT_NOENV is set (issue #16).

Version 1.1.2

  • Find the setproctitle include file on OpenBSD (issue #11).

  • Skip test with unicode if the file system encoding wouldn’t make it pass (issue #13).

Version 1.1.1

  • Fixed segfault when the module is imported under mod_wsgi (issue #9).

Version 1.1

  • The module works correctly with Python 3.

Version 1.0.1

  • setproctitle() works even when Python messes up with argv, e.g. when run with the -m option (issue #8).

Version 1.0

No major change since the previous version. The module has been heavily used in production environment without any problem reported, so it’s time to declare it stable.

Version 0.4

Version 0.3

  • Module works on Mac OS X 10.2. Reported working on OS X 10.6 too.

Version 0.2

  • Added prctl() call on Linux >= 2.6.9 to update /proc/self/status.

Version 0.1

  • Initial public release.

Project details


Download files

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

Source Distribution

setproctitle-1.3.3.tar.gz (27.3 kB view details)

Uploaded Source

Built Distributions

setproctitle-1.3.3-pp310-pypy310_pp73-win_amd64.whl (11.8 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.3-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.3-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.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.3-pp39-pypy39_pp73-win_amd64.whl (11.9 kB view details)

Uploaded PyPy Windows x86-64

setproctitle-1.3.3-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.3-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.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

setproctitle-1.3.3-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.3-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.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

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

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

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

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

Uploaded PyPy macOS 10.9+ x86-64

setproctitle-1.3.3-cp312-cp312-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

setproctitle-1.3.3-cp312-cp312-win32.whl (11.1 kB view details)

Uploaded CPython 3.12 Windows x86

setproctitle-1.3.3-cp312-cp312-musllinux_1_1_x86_64.whl (40.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

setproctitle-1.3.3-cp312-cp312-musllinux_1_1_ppc64le.whl (42.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

setproctitle-1.3.3-cp312-cp312-musllinux_1_1_i686.whl (39.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

setproctitle-1.3.3-cp312-cp312-musllinux_1_1_aarch64.whl (40.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

setproctitle-1.3.3-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.3-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.3-cp312-cp312-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.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

setproctitle-1.3.3-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.3-cp312-cp312-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

setproctitle-1.3.3-cp312-cp312-macosx_10_9_universal2.whl (16.9 kB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

setproctitle-1.3.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

setproctitle-1.3.3-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.3-cp310-cp310-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

setproctitle-1.3.3-cp310-cp310-win32.whl (11.1 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

setproctitle-1.3.3-cp310-cp310-musllinux_1_1_ppc64le.whl (39.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

setproctitle-1.3.3-cp310-cp310-musllinux_1_1_aarch64.whl (38.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

setproctitle-1.3.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

setproctitle-1.3.3-cp310-cp310-macosx_10_9_universal2.whl (17.0 kB view details)

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

setproctitle-1.3.3-cp39-cp39-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.3.3-cp39-cp39-win32.whl (11.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

setproctitle-1.3.3-cp39-cp39-musllinux_1_1_ppc64le.whl (39.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

setproctitle-1.3.3-cp39-cp39-musllinux_1_1_aarch64.whl (38.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

setproctitle-1.3.3-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.3-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.3-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.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

setproctitle-1.3.3-cp38-cp38-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

setproctitle-1.3.3-cp38-cp38-win32.whl (11.1 kB view details)

Uploaded CPython 3.8 Windows x86

setproctitle-1.3.3-cp38-cp38-musllinux_1_1_x86_64.whl (38.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

setproctitle-1.3.3-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.3-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.3-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.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl (11.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

setproctitle-1.3.3-cp37-cp37m-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

setproctitle-1.3.3-cp37-cp37m-win32.whl (11.1 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

setproctitle-1.3.3-cp37-cp37m-musllinux_1_1_ppc64le.whl (40.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

setproctitle-1.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl (39.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

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

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: setproctitle-1.3.3.tar.gz
  • Upload date:
  • Size: 27.3 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.3.tar.gz
Algorithm Hash digest
SHA256 c913e151e7ea01567837ff037a23ca8740192880198b7fbb90b16d181607caae
MD5 1c042d6717212de791c4f9b63e7b544e
BLAKE2b-256 ffe1b16b16a1aa12174349d15b73fd4b87e641a8ae3fb1163e80938dbbf6ae98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 200ede6fd11233085ba9b764eb055a2a191fb4ffb950c68675ac53c874c22e20
MD5 76f364d1e004d8aae389825fe9a44fe7
BLAKE2b-256 767897f36752438cb5c6409b53eb3b1a334827cede43acab65e4fc4a0014cf9f

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-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.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38ae9a02766dad331deb06855fb7a6ca15daea333b3967e214de12cfae8f0ef5
MD5 832ae00256c0ea17dc807d3989c13b55
BLAKE2b-256 701d3b2249c833c7d52b59ff0602d760df0543dc1e6c272f145b949750edeb01

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-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.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e3b99b338598de0bd6b2643bf8c343cf5ff70db3627af3ca427a5e1a1a90dd9
MD5 5a601905af7df34d9175106c631ada18
BLAKE2b-256 3530ac99ecae8458ba995f85aa3aa911004679b405922e1487b0fba6fe8f4d37

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b9e62ddb3db4b5205c0321dd69a406d8af9ee1693529d144e86bd43bcb4b6c0
MD5 338dc5025fe1b6e1023eb9ff081076e5
BLAKE2b-256 24558b369b56007a5a2c7594cdb58cd4a09d7cca65b28483bb5582c6975663f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eae8988e78192fd1a3245a6f4f382390b61bce6cfcc93f3809726e4c885fa68d
MD5 21942c40c89c38c45c3ee2ceb9f2295b
BLAKE2b-256 cdf6e8206102bd6d549e8d347650061d62dda8c8e46e9447e0081abc650f4d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33c5609ad51cd99d388e55651b19148ea99727516132fb44680e1f28dd0d1de9
MD5 010b0d405b31670be8b1bc674fcc6b67
BLAKE2b-256 f6ea628bf63fc17c2550b7d9db7e162f40c376deb15380b9b8bf077bee3f52e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5e7266498cd31a4572378c61920af9f6b4676a73c299fce8ba93afd694f8ae7
MD5 49f760e02c4f05777db1ce655c24e2b5
BLAKE2b-256 1be430eee8071edcd565fe6feb9f449bc88ec2e77a7ee94ffa939db5a532168a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7f27e0268af2d7503386e0e6be87fb9b6657afd96f5726b733837121146750d
MD5 d111673f6b91db5bd3260dbc8baf11c6
BLAKE2b-256 6dc424147daa49f7946440eb3dec9f3b7374a3c3db98dccfde4b7fbd240b714b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 224602f0939e6fb9d5dd881be1229d485f3257b540f8a900d4271a2c2aa4e5f4
MD5 143aeadd706dab7bf39a40e3539b7033
BLAKE2b-256 71280bf519dfc44370136969b8453fbccb048c14da99f5c61ba68f97e989c118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d876d355c53d975c2ef9c4f2487c8f83dad6aeaaee1b6571453cb0ee992f55f6
MD5 8f2ede6d1671b0722fdd3c9a667d9fd4
BLAKE2b-256 ebdd5adbe788c569acec36bc42c100b2d744013b49cb0d7f613e99fe86432dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3ba57029c9c50ecaf0c92bb127224cc2ea9fda057b5d99d3f348c9ec2855ad3
MD5 ac3fbf065876f6a48e2a98d4c006ad81
BLAKE2b-256 d5b810b311f0d4fd24288743a4784d0584cbfd1aae39bb642123d0badc818500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59335d000c6250c35989394661eb6287187854e94ac79ea22315469ee4f4c244
MD5 370dd318f832db5a2b70e16d7535d2a9
BLAKE2b-256 1b6eb0d49138d163b318f2eee3cccd5d7cfb69238111cdee8f015924da7bda19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aeaa71fb9568ebe9b911ddb490c644fbd2006e8c940f21cb9a1e9425bd709574
MD5 ae37a243c42670b1083440c0ce882907
BLAKE2b-256 e7babb0713b244ca053441e578856865c0cb506bac68110cbaf0263617313211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1da82c3e11284da4fcbf54957dafbf0655d2389cd3d54e4eaba636faf6d117a
MD5 3ca58a301bf2ca45a2a1ae2a09acbaac
BLAKE2b-256 a0d5d5149b21c9022d75ed21c1976f5d58cf1114832a549f485bab559f959660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5e08e232b78ba3ac6bc0d23ce9e2bee8fad2be391b7e2da834fc9a45129eb87
MD5 db20df55f4a0434bacf024101d68f974
BLAKE2b-256 fe03df574756d156c5894db922a0801ac4973847ce51da3e579d9ba7d6a2de2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d3a953c50776751e80fe755a380a64cb14d61e8762bd43041ab3f8cc436092f
MD5 1bcaf8cc155995bd8ca2e6fa34ca2003
BLAKE2b-256 3bd9eb0174fe8e494c895b6cdc818df76a2ef8e192baf849dae9188b1796a193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f38d48abc121263f3b62943f84cbaede05749047e428409c2c199664feb6abc7
MD5 abe185f19ebc50146cb60ca3117eed00
BLAKE2b-256 90e8ece468e93e99d3b2826e9649f6d03e80f071d451e20c742f201f77d1bea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2df2b67e4b1d7498632e18c56722851ba4db5d6a0c91aaf0fd395111e51cdcf4
MD5 442e772bf09296ce3a19c2638b93d8ea
BLAKE2b-256 5ec111e80061ac06aece2a0ffcaf018cdc088aebb2fc586f68201755518532ad

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a6ba2494a6449b1f477bd3e67935c2b7b0274f2f6dcd0f7c6aceae10c6c6ba3
MD5 c7051503572e4d82ae2511bac2e61fad
BLAKE2b-256 7bb22403cecf2e5c5b4da22f7d9df4b2149bf92d03a3422185e682e81055549c

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 4fe1c49486109f72d502f8be569972e27f385fe632bd8895f4730df3c87d5ac8
MD5 d3509e5f6c4da03f8cb30f1adaf6294a
BLAKE2b-256 22178763dc4f9ddf36af5f043ceec213b0f9f45f09fd2d5061a89c699aabe8b0

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 287490eb90e7a0ddd22e74c89a92cc922389daa95babc833c08cf80c84c4df0a
MD5 83a0b755e36dc1d3bc57bdcada443a82
BLAKE2b-256 db314f0faad7ef641be4e8dfcbc40829775f2d6a4ca1ff435a4074047fa3dad1

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 87e668f9561fd3a457ba189edfc9e37709261287b52293c115ae3487a24b92f6
MD5 cbadd7a072f7a9513fc287bc2284af78
BLAKE2b-256 515ca6257cc68e17abcc4d4a78cc6666aa0d3805af6d942576625c4a468a72f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab2900d111e93aff5df9fddc64cf51ca4ef2c9f98702ce26524f1acc5a786ae7
MD5 616756370eaee6ecb8bf00a26515e86d
BLAKE2b-256 66fb2d90806b9a2ed97c140baade3d1d2d41d3b51458300a2d999268be24d21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 477d3da48e216d7fc04bddab67b0dcde633e19f484a146fd2a34bb0e9dbb4a1e
MD5 2e06acc086ea3ebd4719438ba6be3494
BLAKE2b-256 8f1ff97ea7bf71c873590a63d62ba20bf7294439d1c28603e5c63e3616c2131a

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-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.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6d50252377db62d6a0bb82cc898089916457f2db2041e1d03ce7fadd4a07381
MD5 ae9b7f4263ead36443dfb55b331bda16
BLAKE2b-256 2022fd76bbde4194d4e31d5b31a02f80c8e7e54a99d3d8ff34f3d656c6655689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 088b9efc62d5aa5d6edf6cba1cf0c81f4488b5ce1c0342a8b67ae39d64001120
MD5 17474f5554ab39a913f8d3c25f55f2b0
BLAKE2b-256 3839e7ce791f5635f3a16bd21d6b79bd9280c4c4aed8ab936b4b21334acf05a7

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdfd7254745bb737ca1384dee57e6523651892f0ea2a7344490e9caefcc35e64
MD5 e147c07e91c1198ba590fa8303844874
BLAKE2b-256 49e5562ff00f2f3f4253ff8fa6886e0432b8eae8cde82530ac19843d8ed2c485

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d4460795a8a7a391e3567b902ec5bdf6c60a47d791c3b1d27080fc203d11c9dc
MD5 e412268b88710fe94ad2bffaf0009b52
BLAKE2b-256 32229672612b194e4ac5d9fb67922ad9d30232b4b66129b0381ab5efeb6ae88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a680d62c399fa4b44899094027ec9a1bdaf6f31c650e44183b50d4c4d0ccc085
MD5 f7e81bdcb37795a1c9e37f9693415a7c
BLAKE2b-256 7ebaf6da9ba74e8c2c662e932b27a01025c1bee2846222f6a2e87a69c259772f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6a143b31d758296dc2f440175f6c8e0b5301ced3b0f477b84ca43cdcf7f2f476
MD5 2eefba7f71aa60f46c110f8fc856be67
BLAKE2b-256 33fb14b41e920406a12de0a164ef3b86d62edb4fac63d91d9f86f3b80dae5b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 417de6b2e214e837827067048f61841f5d7fc27926f2e43954567094051aff18
MD5 bc895eb4f142633a15cce332f9e78da8
BLAKE2b-256 64b15786c0442435eb18d04299c8ce7d1f86feb5154444ac684963527a76e169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e5119a211c2e98ff18b9908ba62a3bd0e3fabb02a29277a7232a6fb4b2560aa0
MD5 9d211ff21deeea71dd0f2d16de1a14eb
BLAKE2b-256 3afeebbcffd6012b9cf5edb017a9c30cfc2beccf707f5bf495da8cf69b4abe69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 664698ae0013f986118064b6676d7dcd28fefd0d7d5a5ae9497cbc10cba48fa5
MD5 60fea63376a6f9ca7f0869a299ffff94
BLAKE2b-256 811b0498c36a07a73d39a7070f45d96a299006e624efc07fc2e2296286237316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 184239903bbc6b813b1a8fc86394dc6ca7d20e2ebe6f69f716bec301e4b0199d
MD5 ecf040c25f3c9c3811e0a7a090d27adc
BLAKE2b-256 82c279ad43c914418cb1920e0198ac7326061c05cd4ec75c86ed0ca456b7e957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f05e66746bf9fe6a3397ec246fe481096664a9c97eb3fea6004735a4daf867fd
MD5 1437ec434628ce788de6e4377b34f1c4
BLAKE2b-256 7952503b546da451deb78fde27fec96c39d3f63a7958be60c9a837de89f47a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 195c961f54a09eb2acabbfc90c413955cf16c6e2f8caa2adbf2237d1019c7dd8
MD5 5cf16be6a84ab53daf14feb85a1c3301
BLAKE2b-256 13f0263954ca925a278036f100405e7ba82d4341e1e6bdc09f35362a7b40f684

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.3-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.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64286f8a995f2cd934082b398fc63fca7d5ffe31f0e27e75b3ca6b4efda4e353
MD5 091c47a729e1479217ddfaf3a6c454a1
BLAKE2b-256 fddf44b267cb8f073a4ae77e120f0705ab3a07165ad90cecd4881b34c7e1e37b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5901a31012a40ec913265b64e48c2a4059278d9f4e6be628441482dd13fb8b5
MD5 97f14d476c1141769896a833e80f9d90
BLAKE2b-256 4872aeb734419a58a85ca7845c3d0011c322597da4ff601ebbc28f6c1dfd1ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 950f6476d56ff7817a8fed4ab207727fc5260af83481b2a4b125f32844df513a
MD5 eebd320a6256d0ee9f485f726031d1d0
BLAKE2b-256 ff5d77edf4c29c8d6728b49d3f0abb22159bb9c0c4ddebd721c09486b34985c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 334f7ed39895d692f753a443102dd5fed180c571eb6a48b2a5b7f5b3564908c8
MD5 d39e424ee3be08a461c012ba18915928
BLAKE2b-256 c9177f9d5ddf4cfc4386e74565ccf63b8381396336e4629bb165b52b803ceddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 200620c3b15388d7f3f97e0ae26599c0c378fdf07ae9ac5a13616e933cbd2086
MD5 d4c973317df03e986fd2e98516d5bf96
BLAKE2b-256 29ff80a02c5b414c2d3ff49c36c0a571a94aa3b4236f07eee39f72ebdb7314a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a1fcac43918b836ace25f69b1dca8c9395253ad8152b625064415b1d2f9be4fb
MD5 7a4d4884accc73d1df2e3dd5e7e57474
BLAKE2b-256 0c1b753432a877bcdfb099e280795c86ac7dc245d9651b98308f606bb3db610d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 da0d57edd4c95bf221b2ebbaa061e65b1788f1544977288bdf95831b6e44e44d
MD5 7bb0853323c1c62c8c633b0b553b0ff4
BLAKE2b-256 3d9217168f4bb1a695094e93e73a1ef1f7b89953a6d91e8a7699a2c840ba712f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 38da436a0aaace9add67b999eb6abe4b84397edf4a78ec28f264e5b4c9d53cd5
MD5 6ba8706bffe0f92a8c19be5051c83526
BLAKE2b-256 94ad4166381d79f6ae8138be9b49f05d193a8deb748debace9896dffad45a753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6a249415f5bb88b5e9e8c4db47f609e0bf0e20a75e8d744ea787f3092ba1f2d0
MD5 02e493f8b0f821b2ac472e8b3250fb58
BLAKE2b-256 9d09bc108723bbfb7c50c22fdf22191f3e32abcb5d6f46610018030b25f601c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9617b676b95adb412bb69645d5b077d664b6882bb0d37bfdafbbb1b999568d85
MD5 061d71c16aff6606e0cf7b1d335d5784
BLAKE2b-256 69a72a77b68c11db87c22350381d6ce022011eb420076790e0e3697153e89458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c05ac48ef16ee013b8a326c63e4610e2430dbec037ec5c5b58fcced550382b74
MD5 7a2a3e71606789d6e860ce54f3d009b9
BLAKE2b-256 d0ae010811bece9a59a8bba131d9e7acea9c2e3c3cbf544bf06d8b10b8c28ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbbd6c7de0771c84b4aa30e70b409565eb1fc13627a723ca6be774ed6b9d9fa3
MD5 736c03e2490e8308ffdf0a2335a17b74
BLAKE2b-256 9c566f4a4e80b2810eb7ea9ab355022c780ef80457de368ab5b6b21b795e4f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc74e84fdfa96821580fb5e9c0b0777c1c4779434ce16d3d62a9c4d8c710df39
MD5 870ad39a420e25eac69e9c6a100ac62e
BLAKE2b-256 79e754b36be02aee8ad573be68f6f46fd62838735c2f007b22df50eb5e13a20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1342f4fdb37f89d3e3c1c0a59d6ddbedbde838fff5c51178a7982993d238fe4f
MD5 8e6aa5e1fc8ac95be4255a57e0e20137
BLAKE2b-256 877b69bdc791001250dff279a1a81904f3f563caece4fa1607a95b9fd5197d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c331e91a14ba4076f88c29c777ad6b58639530ed5b24b5564b5ed2fd7a95452
MD5 8ac3635e24d6efd0386b7e8106a3b375
BLAKE2b-256 c37dd03f319e0f3b3a6e98731a56cd4d81478ed0c12531b822fd2c728b948edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 897a73208da48db41e687225f355ce993167079eda1260ba5e13c4e53be7f754
MD5 d624974d2bea5357fe300075c7655e6f
BLAKE2b-256 4fccc51e6371f640a9adbe693ddb89d68596e5a8e4b5e05b4d3c65ec504e2f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5a740f05d0968a5a17da3d676ce6afefebeeeb5ce137510901bf6306ba8ee002
MD5 27665e83f855d4b470db479e1ea2a470
BLAKE2b-256 c8f2252cdf1e52f5814dc7ea0c88a38e1063323cb0248a00816b1ecb61c70127

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.1 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 21112fcd2195d48f25760f0eafa7a76510871bbb3b750219310cf88b04456ae3
MD5 a42ab48909e23f7af01a0117fce1f6b7
BLAKE2b-256 bdf47954e48f45e8637e1a2bb5c953fe69324334023b9846c73bf9025fa29a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 415bfcfd01d1fbf5cbd75004599ef167a533395955305f42220a585f64036081
MD5 9c3893221196650a43b65acec1f18b59
BLAKE2b-256 0be7a22fcde004759c986be0b70219350fc8b32e1595b4db551397626bd76b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ddedd300cd690a3b06e7eac90ed4452348b1348635777ce23d460d913b5b63c3
MD5 2b39ce13eec7bc6dbafe3c9e61779f6a
BLAKE2b-256 55bf00afdd3fb13b6cddf1549bfec7471acded945fc7efc694864b32ee7c1506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 69d565d20efe527bd8a9b92e7f299ae5e73b6c0470f3719bd66f3cd821e0d5bd
MD5 65530d23b0bb4ce82e1c0374fa371b81
BLAKE2b-256 f3fea309f7bba1ce658252b4ea6a3eedb4e0ba6a5bafea02955deddedf654176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e18b7bd0898398cc97ce2dfc83bb192a13a087ef6b2d5a8a36460311cb09e775
MD5 062e91ec1172122105c77566adb036a2
BLAKE2b-256 2800bf2d80220aaa74b35e2b90e306c4b97ca139094addef06cc924cbcc60b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e4a8104db15d3462e29d9946f26bed817a5b1d7a47eabca2d9dc2b995991503
MD5 a7b8651cac065c072a11e7bcde042963
BLAKE2b-256 97afbbbb998f494868f299718133b04df7bead131c6172439df46f4ad15bbfa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f5d9027eeda64d353cf21a3ceb74bb1760bd534526c9214e19f052424b37e42
MD5 4f015bc492e58c07feeeb647a9530514
BLAKE2b-256 19867d4aa2cd62d9c1624c893f8bd2950a0c3cf6de5192d3feace3fa8de2ca37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf16381c7bf7f963b58fb4daaa65684e10966ee14d26f5cc90f07049bfd8c1e
MD5 e94fde14a699982779a9bb1810eb90ac
BLAKE2b-256 c39c0ff2dc4967c30fe1e60ef5d651547065e431380f8b30af0e8fafadcb2a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c32c41ace41f344d317399efff4cffb133e709cec2ef09c99e7a13e9f3b9483c
MD5 389e20e2d7e4b2e8131c14f78867c3a2
BLAKE2b-256 169cdf08dd42473d790fcc2e154e7efc50c1cccfa737319c3aa07dbddd11f433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bc94cf128676e8fac6503b37763adb378e2b6be1249d207630f83fc325d9b11
MD5 298f770ef7b320ecb7fe256296d66f70
BLAKE2b-256 1673b1c1c4f0915382e1bd1be601637526593d409651ea7da87148cf5470442c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c7951820b77abe03d88b114b998867c0f99da03859e5ab2623d94690848d3e45
MD5 910f988a21d40b49528ee5e9150d1103
BLAKE2b-256 51dacd043f4bfab9957c18626fbfd80878ec78cefc55c379af2137e2d147f3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ab92e51cd4a218208efee4c6d37db7368fdf182f6e7ff148fb295ecddf264287
MD5 e7fa6e822f22665db2fd5510266e3912
BLAKE2b-256 c0c1cfcb8660765f503b06f89a204f59a5107510f3141a97ef73f5eebb10056d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.1 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 059f4ce86f8cc92e5860abfc43a1dceb21137b26a02373618d88f6b4b86ba9b2
MD5 9bcf31e80ef302c4c33408fa0c194dd3
BLAKE2b-256 a11c50fe0756b6191029bad37e6403a9ff8a5e22c7e2d7bab60e4ac1db97d0b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a83ca086fbb017f0d87f240a8f9bbcf0809f3b754ee01cec928fff926542c450
MD5 f6ec9f147d1df4cbf035b10180903ee7
BLAKE2b-256 a637c51936835a3785ece28a2b13c93b6fb86cb3d88eec1ef14111cb95245892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 37a62cbe16d4c6294e84670b59cf7adcc73faafe6af07f8cb9adaf1f0e775b19
MD5 9e7b7847ebf60fa5101128e48aac404a
BLAKE2b-256 2ef821b19c0144b59bea252119df1f80340d82355112b60da0c2fd96d6eea0d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 af4061f67fd7ec01624c5e3c21f6b7af2ef0e6bab7fbb43f209e6506c9ce0092
MD5 33c5e1fe03b09139ac09dc6354e3313a
BLAKE2b-256 e11c7f0d1639b8e69ec4debe271b4f203757ca39b8df437a5fb44c6d6df1aaf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af2c67ae4c795d1674a8d3ac1988676fa306bcfa1e23fddb5e0bd5f5635309ca
MD5 c22c1bf337175ac31d1589ed0b9ad68f
BLAKE2b-256 2ab2901ba598a6ae8f4e4c41975ed7197a4161142892460da5ed4877190ab577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a911b26264dbe9e8066c7531c0591cfab27b464459c74385b276fe487ca91c12
MD5 e38c38b099fd4b4bbfbc8b343a97d0fa
BLAKE2b-256 2462b16b1eb9c8e0cc272985b839b29cd4052a7aec2c4ca5381f9a364cb3f790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 554eae5a5b28f02705b83a230e9d163d645c9a08914c0ad921df363a07cf39b1
MD5 f38d3c3cbd07aed92e56579eeb3e3a25
BLAKE2b-256 1eff1805a1cd6603f83b0c2cf1e00d365fcb527895ad40982d75deed92813d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df3f4274b80709d8bcab2f9a862973d453b308b97a0b423a501bcd93582852e3
MD5 244cb37c02bf312808b54699029e5a0b
BLAKE2b-256 458d68eec8de2d22a8ed6004344b35f94f2407ba723beee6ab468f162bb7be3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2982efe7640c4835f7355fdb4da313ad37fb3b40f5c69069912f8048f77b28c8
MD5 73c40d6fbf2ebd2ad51af2c384c7e6a5
BLAKE2b-256 38a6000d04a69aee71883752486063a56706317b88828415abd648ebdbe63352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 accb66d7b3ccb00d5cd11d8c6e07055a4568a24c95cf86109894dcc0c134cc89
MD5 dc6087ad09f91de4b94b64121e4c741c
BLAKE2b-256 0e0298a9714ab9115cffa3db89a0470a4004e381c53e8074cd8364ffea16b369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ff814dea1e5c492a4980e3e7d094286077054e7ea116cbeda138819db194b2cd
MD5 5274da845107229b40879d0ea2bbfa03
BLAKE2b-256 5cde54750a8b5709af35732aee57b56ded6345aa32b2c2066cce89dae7a79959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c9a402881ec269d0cc9c354b149fc29f9ec1a1939a777f1c858cdb09c7a261df
MD5 240a0cb535642112915b063002491c00
BLAKE2b-256 c768c01c388327594810317b7fcfea0e72e30f4ae9e2237f54143a61dc5c1d1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7f1d36a1e15a46e8ede4e953abb104fdbc0845a266ec0e99cc0492a4364f8c44
MD5 1e65fd921e349133a5527b88c9c121dd
BLAKE2b-256 b5e58f93b282c85b92dddaa30685fc426732d4dc6ffb4a84ce9c7ab2c228f037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e71f6365744bf53714e8bd2522b3c9c1d83f52ffa6324bd7cbb4da707312cd8
MD5 fc39475befb7c1ec04b48f9837c63687
BLAKE2b-256 a6458b2e258420fffb4392856bf0fe32f28386f07e192c032f1b23081f4103d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b1067647ac7aba0b44b591936118a22847bda3c507b0a42d74272256a7a798e9
MD5 624d636aec2db017bc2c6c5e4c67ebe3
BLAKE2b-256 2cc7adf5c3cee203f4d1fd9ed3d4387d379e26172ff422b29c355f3befedfbe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 507e8dc2891021350eaea40a44ddd887c9f006e6b599af8d64a505c0f718f170
MD5 72c979a8fcc15d4af983792956838239
BLAKE2b-256 7e351fa02fbe22a957cd93b15e3ed8049c3a904f5e055558876a24f160ddd483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c1c84beab776b0becaa368254801e57692ed749d935469ac10e2b9b825dbdd8e
MD5 b329ff2d470e63869316b2d1fe27b2af
BLAKE2b-256 7aaf52ca8d562f21aba4910d7a06663cbdfdaf920fd7c37b62a31b752f00bae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00e6e7adff74796ef12753ff399491b8827f84f6c77659d71bd0b35870a17d8f
MD5 1f41c2a5952e5ad2c445716d91bd5efd
BLAKE2b-256 eafb97e6a1a77e94f6d8bc20cfe51dc2f727d3604233f56d6e65a812f7b585b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68f960bc22d8d8e4ac886d1e2e21ccbd283adcf3c43136161c1ba0fa509088e0
MD5 bffc2832539c4b9ef7a70fa67e9f2bbf
BLAKE2b-256 3c1e4979dbe11244813e1b31306a1cf62e05e47f7394c5915f3d1923eea665ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad6d20f9541f5f6ac63df553b6d7a04f313947f550eab6a61aa758b45f0d5657
MD5 5a8ff358b0e5632608b92b0b9822cbc6
BLAKE2b-256 66bf620ee20caa0c5c1592af7c72dd3339714e2e7b50f97a47e53e3e65b56d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53bc0d2358507596c22b02db079618451f3bd720755d88e3cccd840bafb4c41c
MD5 fb4f542d7227872e4f9a6bf4b2da54e6
BLAKE2b-256 2ebebf32e99ed7bb38bec8ad69970b0d518fc896ee633f6777b476adced6ba38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 816330675e3504ae4d9a2185c46b573105d2310c20b19ea2b4596a9460a4f674
MD5 28b48816703dfdd58cdc852e56ea3a8b
BLAKE2b-256 38b765c156928857a8ed3922b948d491083a96611a6f56a7933aa41d3a514f26

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