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

  • Add support for free-threading (issue #147)

Version 1.3.5

  • 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.6.tar.gz (26.9 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPyWindows x86-64

setproctitle-1.3.6-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 kB view details)

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

setproctitle-1.3.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

setproctitle-1.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (11.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

setproctitle-1.3.6-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 kB view details)

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

setproctitle-1.3.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

setproctitle-1.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (11.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

setproctitle-1.3.6-pp38-pypy38_pp73-win_amd64.whl (12.2 kB view details)

Uploaded PyPyWindows x86-64

setproctitle-1.3.6-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 PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

setproctitle-1.3.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

setproctitle-1.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (11.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_x86_64.whl (32.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_ppc64le.whl (34.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_i686.whl (31.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_aarch64.whl (32.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (35.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

setproctitle-1.3.6-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.0 kB view details)

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

setproctitle-1.3.6-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

setproctitle-1.3.6-cp313-cp313t-macosx_11_0_arm64.whl (12.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

setproctitle-1.3.6-cp313-cp313t-macosx_10_13_universal2.whl (17.4 kB view details)

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

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

setproctitle-1.3.6-cp313-cp313-musllinux_1_2_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp313-cp313-musllinux_1_2_ppc64le.whl (33.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp313-cp313-musllinux_1_2_i686.whl (31.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

setproctitle-1.3.6-cp313-cp313-musllinux_1_2_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

setproctitle-1.3.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

setproctitle-1.3.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.8 kB view details)

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

setproctitle-1.3.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.7 kB view details)

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

setproctitle-1.3.6-cp313-cp313-macosx_11_0_arm64.whl (12.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

setproctitle-1.3.6-cp313-cp313-macosx_10_13_universal2.whl (17.4 kB view details)

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

setproctitle-1.3.6-cp312-cp312-musllinux_1_2_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp312-cp312-musllinux_1_2_ppc64le.whl (33.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp312-cp312-musllinux_1_2_i686.whl (31.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

setproctitle-1.3.6-cp312-cp312-musllinux_1_2_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

setproctitle-1.3.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.7 kB view details)

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

setproctitle-1.3.6-cp312-cp312-macosx_11_0_arm64.whl (12.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

setproctitle-1.3.6-cp312-cp312-macosx_10_13_universal2.whl (17.4 kB view details)

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

setproctitle-1.3.6-cp311-cp311-musllinux_1_2_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp311-cp311-musllinux_1_2_ppc64le.whl (32.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp311-cp311-musllinux_1_2_i686.whl (30.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

setproctitle-1.3.6-cp311-cp311-musllinux_1_2_aarch64.whl (31.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

setproctitle-1.3.6-cp311-cp311-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.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

setproctitle-1.3.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.2 kB view details)

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

setproctitle-1.3.6-cp311-cp311-macosx_11_0_arm64.whl (12.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

setproctitle-1.3.6-cp311-cp311-macosx_10_9_universal2.whl (17.4 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

setproctitle-1.3.6-cp310-cp310-musllinux_1_2_x86_64.whl (30.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp310-cp310-musllinux_1_2_ppc64le.whl (32.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp310-cp310-musllinux_1_2_i686.whl (29.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

setproctitle-1.3.6-cp310-cp310-musllinux_1_2_aarch64.whl (30.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

setproctitle-1.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

setproctitle-1.3.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.9 kB view details)

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

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

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

setproctitle-1.3.6-cp310-cp310-macosx_11_0_arm64.whl (12.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

setproctitle-1.3.6-cp310-cp310-macosx_10_9_universal2.whl (17.4 kB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

setproctitle-1.3.6-cp39-cp39-musllinux_1_2_x86_64.whl (30.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp39-cp39-musllinux_1_2_ppc64le.whl (31.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp39-cp39-musllinux_1_2_i686.whl (29.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

setproctitle-1.3.6-cp39-cp39-musllinux_1_2_aarch64.whl (30.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

setproctitle-1.3.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (32.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

setproctitle-1.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

setproctitle-1.3.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.6 kB view details)

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

setproctitle-1.3.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.6 kB view details)

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

setproctitle-1.3.6-cp39-cp39-macosx_11_0_arm64.whl (12.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

setproctitle-1.3.6-cp39-cp39-macosx_10_9_universal2.whl (17.4 kB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

setproctitle-1.3.6-cp38-cp38-musllinux_1_2_x86_64.whl (30.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

setproctitle-1.3.6-cp38-cp38-musllinux_1_2_ppc64le.whl (32.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

setproctitle-1.3.6-cp38-cp38-musllinux_1_2_i686.whl (29.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

setproctitle-1.3.6-cp38-cp38-musllinux_1_2_aarch64.whl (30.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

setproctitle-1.3.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

setproctitle-1.3.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.3 kB view details)

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

setproctitle-1.3.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.1 kB view details)

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

setproctitle-1.3.6-cp38-cp38-macosx_11_0_arm64.whl (11.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

setproctitle-1.3.6-cp38-cp38-macosx_10_9_universal2.whl (17.3 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for setproctitle-1.3.6.tar.gz
Algorithm Hash digest
SHA256 c9f32b96c700bb384f33f7cf07954bb609d35dd82752cef57fb2ee0968409169
MD5 3024b0fafcfdb7d61a90b78b71aab55e
BLAKE2b-256 9eaf56efe21c53ac81ac87e000b15e60b3d8104224b4313b6eacac3597bd183d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0e6b5633c94c5111f7137f875e8f1ff48f53b991d5d5b90932f27dc8c1fa9ae4
MD5 8b2718b8fa981fdbdcb93213a5d8cf02
BLAKE2b-256 f77803f2e42eb83bce6f853d7751ae95f8a3ae7408145a0b6cdd717be01497d7

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ac3eb04bcf0119aadc6235a2c162bae5ed5f740e3d42273a7228b915722de20
MD5 adaa2cb360914359f06b80cb51042258
BLAKE2b-256 5c460b89e7ebe77543e721c67077ad93fc8c7c3c31a8db3b12e00d02950f6adc

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 797f2846b546a8741413c57d9fb930ad5aa939d925c9c0fa6186d77580035af7
MD5 6e682aea138ab57f59a1ce87fe0f09e0
BLAKE2b-256 7846db58cf700f1408cf0f63d3f939f7b077bd450da8e037310f70e74c41262f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cde5b83ec4915cd5e6ae271937fd60d14113c8f7769b4a20d51769fe70d8717
MD5 e9d5dc90b0cbd59c0904355ec12a29c0
BLAKE2b-256 d02bf19977b646b64c1440dade2c385c89c39f74ce5254defa102dfd9c163e0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a5963b663da69ad25fa1559ee064584935570def665917918938c1f1289f5ebc
MD5 9e007ebd4865566d7954177dbccf0326
BLAKE2b-256 8d8fe108c7ef434afbed823013356b6401ced8aa1aef03b118b3c2d6d6fed9db

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8834ab7be6539f1bfadec7c8d12249bbbe6c2413b1d40ffc0ec408692232a0c6
MD5 9fae35caa9742ec4d7c81cd7218f97d7
BLAKE2b-256 0c82b208480e68ff75ae475aa649fe8b04fbc5509fa8e43268775fb8ace81364

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92df0e70b884f5da35f2e01489dca3c06a79962fb75636985f1e3a17aec66833
MD5 5130f2866ddbd01a015c777dda7b7b3c
BLAKE2b-256 2eb3fc91b9ba8547e3a8c3732b64c8d3fefcd51f902bba8be351aa0e461a7fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b50700785eccac0819bea794d968ed8f6055c88f29364776b7ea076ac105c5d
MD5 3a03b7fc5f1dc1f53eb4dc6adf47557d
BLAKE2b-256 df11fa611d7ed77ca28da4f870e280bae23e93ed790ea15ff2f3a19e81fd085a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83066ffbf77a5f82b7e96e59bdccbdda203c8dccbfc3f9f0fdad3a08d0001d9c
MD5 1b4f7b59376424aa98707dfccb4b8b4f
BLAKE2b-256 0605bc2b1211dac23558107da661f371438abbdd96f0bfd0e10b3d30b4b87dfe

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fc97805f9d74444b027babff710bf39df1541437a6a585a983d090ae00cedde
MD5 f43545bb104347db2757d400b951adb0
BLAKE2b-256 289e8371bfd3a0102c074f27e584332447144181aa8b771ce882d40439c446df

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae82507fe458f7c0c8227017f2158111a4c9e7ce94de05178894a7ea9fefc8a1
MD5 3f09a346579201501a2b5fa6e2cc80bc
BLAKE2b-256 69e57493040d39052dbbbb0f47dbabd81d8e474b2ec491cbcacf4a5fbad534ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded9e86397267732a0641d4776c7c663ea16b64d7dbc4d9cc6ad8536363a2d29
MD5 0a50f4d9832e87641792d00c9d0b4243
BLAKE2b-256 845c37f6fede627e5db9f0bb6039f973d9003b5e929c11385bf6730d93c2c8dc

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 74973aebea3543ad033b9103db30579ec2b950a466e09f9c2180089e8346e0ec
MD5 de444f51259452c2fe6a4feceb1f57ce
BLAKE2b-256 65237833d75a27fba25ddc5cd3b54cd03c4bf8e18b8e2dbec622eb6326278ce8

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-win32.whl.

File metadata

  • Download URL: setproctitle-1.3.6-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 d483cc23cc56ab32911ea0baa0d2d9ea7aa065987f47de847a0a93a58bf57905
MD5 1ce0600a0e03d483f776ff8bb768bc01
BLAKE2b-256 32212503e38520cb076a7ecaef6a35d6a6fa89cf02af3541c84c811fd7500d20

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d136fbf8ad4321716e44d6d6b3d8dffb4872626010884e07a1db54b7450836cf
MD5 016eafaff5b749869e1c55f15d0f043f
BLAKE2b-256 9afd5474b04f1c013ff460129d2bc774557dd6e186da4667865efef9a83bf378

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4431629c178193f23c538cb1de3da285a99ccc86b20ee91d81eb5f1a80e0d2ba
MD5 861b4de944730c3ac50f7be6aeda72fb
BLAKE2b-256 950a126b9ff7a406a69a62825fe5bd6d1ba8671919a7018c4f9e2c63f49bfcb6

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49498ebf68ca3e75321ffe634fcea5cc720502bfaa79bd6b03ded92ce0dc3c24
MD5 ef3486b97add3a1d7a99d50a64b60cdf
BLAKE2b-256 1a73c84ec8880d543766a12fcd6b65dbd013770974a40577889f357409b0441e

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c051f46ed1e13ba8214b334cbf21902102807582fbfaf0fef341b9e52f0fafbf
MD5 c28e39ab59e1c2c99d43c869301e078c
BLAKE2b-256 dfa61508d37eb8008670d33f13fcdb91cbd8ef54697276469abbfdd3d4428c59

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d73f14b86d0e2858ece6bf5807c9889670e392c001d414b4293d0d9b291942c3
MD5 ad3cdb3f92e0369b849330521497b0f5
BLAKE2b-256 cc603ef49d1931aff2a36a7324a49cca10d77ef03e0278452fd468c33a52d7e3

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d88c63bd395c787b0aa81d8bbc22c1809f311032ce3e823a6517b711129818e4
MD5 f87b176d6315ed78f96c0f68eee83243
BLAKE2b-256 b7b94878ef9d8483adfd1edf6bf95151362aaec0d05aac306a97ff0383f491b5

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-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.6-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785cd210c0311d9be28a70e281a914486d62bfd44ac926fcd70cf0b4d65dff1c
MD5 2f56a18ed6ba1958531a3b25e984c665
BLAKE2b-256 eaa55dd5c4192cf18d16349a32a07f728a9a48a2a05178e16966cabd6645903e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3393859eb8f19f5804049a685bf286cb08d447e28ba5c6d8543c7bf5500d5970
MD5 59407c2076015570b5fdae9d98ee0fc4
BLAKE2b-256 81c6dee0a973acecefb0db6c9c2e0ea7f18b7e4db773a72e534741ebdee8bbb8

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81c443310831e29fabbd07b75ebbfa29d0740b56f5907c6af218482d51260431
MD5 116c2a3ca47eca3fa4af5d10b6837803
BLAKE2b-256 0438a184f857b988d3a9c401e470a4e38182a5c99ee77bf90432d7665e9d35a3

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 23a57d3b8f1549515c2dbe4a2880ebc1f27780dc126c5e064167563e015817f5
MD5 a0004dd8b0b3381880fce0b0585b907f
BLAKE2b-256 39adc3941b8fc6b32a976c9e2d9615a90ae793b69cd010ca8c3575dbc822104f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b70c07409d465f3a8b34d52f863871fb8a00755370791d2bd1d4f82b3cdaf3d5
MD5 1db7525792b14a08db8c401367394e9e
BLAKE2b-256 baf57f47f0ca35c9c357f16187cee9229f3eda0237bc6fdd3061441336f361c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d714e002dd3638170fe7376dc1b686dbac9cb712cde3f7224440af722cc9866a
MD5 805b1f270f766f14d1a232c5cd98dc4e
BLAKE2b-256 1bba5f68eb969f7336f54b54a599fd3ffbd7662f9733b080bc8598705971b3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f8194b4d631b003a1176a75d1acd545e04b1f54b821638e098a93e6e62830ef
MD5 c1097f54c3dea799289d5b9c8b70c6a3
BLAKE2b-256 aa054b223fd4ef94e105dc7aff27fa502fb7200cf52be2bb0c064bd2406b5611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 de004939fc3fd0c1200d26ea9264350bfe501ffbf46c8cf5dc7f345f2d87a7f1
MD5 8b255217bfc40943409aad0093a2e7ac
BLAKE2b-256 3162e3e4a4e006d0e549748e53cded4ff3b667be0602860fc61b7de8b412b667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3e44d08b61de0dd6f205528498f834a51a5c06689f8fb182fe26f3a3ce7dca9
MD5 88c625643a559bbbae6e39ecbcfc0f85
BLAKE2b-256 70782d5385206540127a3dca0ff83225b1ac66873f5cc89d4a6d3806c92f5ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dba8faee2e4a96e934797c9f0f2d093f8239bf210406a99060b3eabe549628e
MD5 3d78379e6fff89911faab7c6110a69f0
BLAKE2b-256 e6b1c553ed5af8cfcecd5ae7737e63af58a17a03d26f3d61868c7eb20bf7e3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2b17855ed7f994f3f259cf2dfbfad78814538536fa1a91b50253d84d87fd88d
MD5 445f6060955660ac98ac24acd713294b
BLAKE2b-256 9fb3894b827b93ef813c082479bebf88185860f01ac243df737823dd705e7fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7890e291bf4708e3b61db9069ea39b3ab0651e42923a5e1f4d78a7b9e4b18301
MD5 e5dd578a231cf653dc6d8f48377ac5c7
BLAKE2b-256 dcfed5d00aaa700fe1f6160b6e95c225b29c01f4d9292176d48fd968815163ea

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63cc10352dc6cf35a33951656aa660d99f25f574eb78132ce41a85001a638aa7
MD5 7fcd55d8a3a2bf5d11416a32b083ba64
BLAKE2b-256 fad3c2590c5daa2e9a008d3f2b16c0f4a351826193be55f147cb32af49c6d814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e51ec673513465663008ce402171192a053564865c2fc6dc840620871a9bd7c
MD5 c06f2acf1a59288cd75edf347547df25
BLAKE2b-256 b2cd5330734cca1a4cfcb721432c22cb7899ff15a4101ba868b2ef452ffafea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 751ba352ed922e0af60458e961167fa7b732ac31c0ddd1476a2dfd30ab5958c5
MD5 3676c6553a396f0fc1ed5c0973e0134e
BLAKE2b-256 5c5b4e0db8b10b4543afcb3dbc0827793d46e43ec1de6b377e313af3703d08e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e2a9e62647dc040a76d55563580bf3bb8fe1f5b6ead08447c2ed0d7786e5e794
MD5 cd6585d4879fef532ac0ab8cc6546f2c
BLAKE2b-256 8976f1a2fdbf9b9602945a7489ba5c52e9863de37381ef1a85a2b9ed0ff8bc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 082413db8a96b1f021088e8ec23f0a61fec352e649aba20881895815388b66d3
MD5 17d02120b7ac0e970fdac05ecc07a4ff
BLAKE2b-256 609ad88f1c1f0f4efff1bd29d9233583ee341114dda7d9613941453984849674

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db608db98ccc21248370d30044a60843b3f0f3d34781ceeea67067c508cd5a28
MD5 3015b8e4c820e888bac7dfce157b5912
BLAKE2b-256 44fe743517340e5a635e3f1c4310baea20c16c66202f96a6f4cead222ffd6d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6f4abde9a2946f57e8daaf1160b2351bcf64274ef539e6675c1d945dbd75e2a
MD5 92e771f18c7c3eb3d14b745a72d5501f
BLAKE2b-256 983fa457b8550fbd34d5b482fe20b8376b529e76bf1fbf9a474a6d9a641ab4ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b2e54f4a2dc6edf0f5ea5b1d0a608d2af3dcb5aa8c8eeab9c8841b23e1b054fe
MD5 73147310b5ba291350eb245aa2c81cd2
BLAKE2b-256 2220c495e61786f1d38d5dc340b9d9077fee9be3dfc7e89f515afe12e1526dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e288f8a162d663916060beb5e8165a8551312b08efee9cf68302687471a6545d
MD5 0285ac34b85680f9f79e9c4e2effc0bf
BLAKE2b-256 f30165948d7badd66e63e3db247b923143da142790fa293830fdecf832712c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf355fbf0d4275d86f9f57be705d8e5eaa7f8ddb12b24ced2ea6cbd68fdb14dc
MD5 7edd9de5a6377a4a8a7ed064fbfa71cc
BLAKE2b-256 358854de1e73e8fce87d587889c7eedb48fc4ee2bbe4e4ca6331690d03024f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb465dd5825356c1191a038a86ee1b8166e3562d6e8add95eec04ab484cfb8a2
MD5 8b5b36ed2cad492d804491386fac6456
BLAKE2b-256 ae68c53162e645816f97212002111420d1b2f75bf6d02632e37e961dc2cd6d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea002088d5554fd75e619742cefc78b84a212ba21632e59931b3501f0cfc8f67
MD5 bd9274428e3295e9ab52dd560bcf1af3
BLAKE2b-256 3303b085d192b9ecb9c7ce6ad6ef30ecf4110b7f39430b58a56245569827fcf4

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0d6252098e98129a1decb59b46920d4eca17b0395f3d71b0d327d086fefe77d
MD5 1ea7e086f228dedbfc04de2021ad6bbd
BLAKE2b-256 e3fb5e9b5068df9e9f31a722a775a5e8322a29a638eaaa3eac5ea7f0b35e6314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2c8e20487b3b73c1fa72c56f5c89430617296cd380373e7af3a538a82d4cd6d
MD5 3541d7ae4b4c8e007e97ea94081bdc61
BLAKE2b-256 ac0d119a45d15a816a6cf5ccc61b19729f82620095b27a47e0a6838216a95fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cca16fd055316a48f0debfcbfb6af7cea715429fc31515ab3fcac05abd527d8
MD5 3517f8bd932583b7d00a6c4009c12482
BLAKE2b-256 d5489699191fe6062827683c43bfa9caac33a2c89f8781dd8c7253fa3dba85fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 af44bb7a1af163806bbb679eb8432fa7b4fb6d83a5d403b541b675dcd3798638
MD5 c2896bb8abb2c083119fb0d8ae9d13be
BLAKE2b-256 8ffb99456fd94d4207c5f6c40746a048a33a52b4239cd7d9c8d4889e2210ec82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b73cf0fe28009a04a35bb2522e4c5b5176cc148919431dcb73fdbdfaab15781
MD5 9e66d0cbf47b7cff556d8efd46d19421
BLAKE2b-256 c91552cf5e1ff0727d53704cfdde2858eaf237ce523b0b04db65faa84ff83e13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8050c01331135f77ec99d99307bfbc6519ea24d2f92964b06f3222a804a3ff1f
MD5 104f0346c20546e1abe09f7055f4bb2a
BLAKE2b-256 5f73a2a8259ebee166aee1ca53eead75de0e190b3ddca4f716e5c7470ebb7ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad1c2c2baaba62823a7f348f469a967ece0062140ca39e7a48e4bbb1f20d54c4
MD5 3d98e79e50ab38767601954c653335c3
BLAKE2b-256 19f84d075a7bdc3609ac71535b849775812455e4c40aedfbf0778a6f123b1774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a094b7ce455ca341b59a0f6ce6be2e11411ba6e2860b9aa3dbb37468f23338f4
MD5 498644b51f7d39213a6a0c52b5c10e68
BLAKE2b-256 6723681232eed7640eab96719daa8647cc99b639e3daff5c287bd270ef179a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb7452849f6615871eabed6560ffedfe56bc8af31a823b6be4ce1e6ff0ab72c5
MD5 57c65f7b01ac0ee5d287b68d26b6daa2
BLAKE2b-256 b5b781f101b612014ec61723436022c31146178813d6ca6b947f7b9c84e9daf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4adf6a0013fe4e0844e3ba7583ec203ca518b9394c6cc0d3354df2bf31d1c034
MD5 ac1fa0b03eea04e02cf4e239ec8e8164
BLAKE2b-256 97b5f799fb7a00de29fb0ac1dfd015528dea425b9e31a8f1068a0b3df52d317f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cce0ed8b3f64c71c140f0ec244e5fdf8ecf78ddf8d2e591d4a8b6aa1c1214235
MD5 9ab689d3dc2def71c96affd9b2bb73b0
BLAKE2b-256 1f137325dd1c008dd6c0ebd370ddb7505977054a87e406f142318e395031a792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af188f3305f0a65c3217c30c6d4c06891e79144076a91e8b454f14256acc7279
MD5 f91d098d47330d9d7efc87fb0b135871
BLAKE2b-256 5b47f103c40e133154783c91a10ab08ac9fc410ed835aa85bcf7107cb882f505

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1065ed36bd03a3fd4186d6c6de5f19846650b015789f72e2dea2d77be99bdca1
MD5 de7da3cff718a924094fb9e59badb1af
BLAKE2b-256 cc41fbf57ec52f4f0776193bd94334a841f0bc9d17e745f89c7790f336420c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70100e2087fe05359f249a0b5f393127b3a1819bf34dec3a3e0d4941138650c9
MD5 ffa3a1b018c4677a8f111b21848c77f1
BLAKE2b-256 0c0a6075bfea05a71379d77af98a9ac61163e8b6e5ef1ae58cd2b05871b2079c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50706b9c0eda55f7de18695bfeead5f28b58aa42fd5219b3b1692d554ecbc9ec
MD5 afd4183de19f23ebd7cb9c4da87d2ea4
BLAKE2b-256 393743a5a3e25ca1048dbbf4db0d88d346226f5f1acd131bb8e660f4bfe2799f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a1d856b0f4e4a33e31cdab5f50d0a14998f3a2d726a3fd5cb7c4d45a57b28d1b
MD5 28c1dd1f4a02b5c1edc9c69dcc5da2d6
BLAKE2b-256 273b8288d0cd969a63500dd62fc2c99ce6980f9909ccef0770ab1f86c361e0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4efc91b437f6ff2578e89e3f17d010c0a0ff01736606473d082913ecaf7859ba
MD5 4848a193aaa0c454273d5960032fe673
BLAKE2b-256 38b064c3948f7957db44b4c5edfe9c197de493144dc915ddf95cf36aeca0dc52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9483aa336687463f5497dd37a070094f3dff55e2c888994f8440fcf426a1a844
MD5 760a25b62bd8028cec3f1fc6112bf785
BLAKE2b-256 a74f4db265493567865428dcec376f8142a9c65d27c10c3ac915d173b4053afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38ca045626af693da042ac35d7332e7b9dbd52e6351d6973b310612e3acee6d6
MD5 d96295d8bd6f214d47462a29504a9ce3
BLAKE2b-256 e724ce080682b144f057814efbe95daac09149e90f7689e2515897817a941686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2407955dc359d735a20ac6e797ad160feb33d529a2ac50695c11a1ec680eafab
MD5 88548d0f0b4b9b184898a1cd3b16927b
BLAKE2b-256 db1dc394322a5425c12f4ada0696eb6d194768752d4e3acaca0c9d593025feb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df5fcc48588f82b6cc8073db069609ddd48a49b1e9734a20d0efb32464753c4
MD5 690d6ec5e20604d789634a6a4755f261
BLAKE2b-256 41608eb197b56b0a3110eef2a1d2ddb61b3f5809dbab9d975aa40c86e5d4b312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 109fc07b1cd6cef9c245b2028e3e98e038283342b220def311d0239179810dbe
MD5 196bc5057c7cbb74624936911bc3ba0a
BLAKE2b-256 2704b43a622a9fbf0f216a50b523067d3b07739ede2106a7226223e33abf6659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97a138fa875c6f281df7720dac742259e85518135cd0e3551aba1c628103d853
MD5 c74aa77942316c1edd9011749974b364
BLAKE2b-256 5a5ff159b22d286a349633d4090090b8e6632fb84575a64f189b68e70a613c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13624d9925bb481bc0ccfbc7f533da38bfbfe6e80652314f789abc78c2e513bd
MD5 d3d62a27145785c403addee1c65d7869
BLAKE2b-256 8af4f1cd54fedae1cdacf1d1db833dc096bfb1f029451f60e68563e4c26ed2f7

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6af330ddc2ec05a99c3933ab3cba9365357c0b8470a7f2fa054ee4b0984f57d1
MD5 3db0c87ec8dfaa59a5109b09445eccf6
BLAKE2b-256 672bc3cbd4a4462c1143465d8c151f1d51bbfb418e60a96a754329d28d416575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c86e9e82bfab579327dbe9b82c71475165fbc8b2134d24f9a3b2edaf200a5c3d
MD5 b05277bbb963989eb475cf0b0d93e6aa
BLAKE2b-256 9c25e5ea2673d951dafc04b6544d7b33dd9283733d715c8f40e93d39ae35d6a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aa1935aa2195b76f377e5cb018290376b7bf085f0b53f5a95c0c21011b74367
MD5 419f0e25b21d7d214a08f39bb3c0d39c
BLAKE2b-256 a445909b0dcd68b16d2e58de0e861c0c0b67748ccc87ff9b59136e9710b528b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ebcf34b69df4ca0eabaaaf4a3d890f637f355fed00ba806f7ebdd2d040658c26
MD5 cc9bc4c6c8be488a02e044a165fe6e45
BLAKE2b-256 7ddb8214810cae49e2e474ea741aaa7d6111486f27377e864f0eb6d297c9be56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2940cf13f4fc11ce69ad2ed37a9f22386bfed314b98d8aebfd4f55459aa59108
MD5 a8731a4f8863ca3c7fa7b2082b806e75
BLAKE2b-256 e23cf11db7a9168b82e87e84816eabdca2b624520838200cfa123c9aba0c79ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 17d7c833ed6545ada5ac4bb606b86a28f13a04431953d4beac29d3773aa00b1d
MD5 aeda8fc43d3dd9ec2eaa4c46620d7974
BLAKE2b-256 00d00a36027fab8e47dbfea42d4e17c78206ba3faeab72b65e872a9c82f577f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2156d55308431ac3b3ec4e5e05b1726d11a5215352d6a22bb933171dee292f8c
MD5 b843eaa645c819db1c9d50aea5bb6bd2
BLAKE2b-256 00c739d73db7698f2498b7a340499103b87a09810b65e45a2dca63b918ecf4d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 543f59601a4e32daf44741b52f9a23e0ee374f9f13b39c41d917302d98fdd7b0
MD5 07f528c116e5542dbc75dcb1625bff6b
BLAKE2b-256 57779d63a1139ac33a721a58023334ea2776c94fa4c909d1bf945594abd3eb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f33fbf96b52d51c23b6cff61f57816539c1c147db270cfc1cc3bc012f4a560a9
MD5 6c9e386afc9ad2733d04c1b5411842a9
BLAKE2b-256 b2b89a44c3f3f5ffcff778f4b662795e7644ab3f616a1d4c42aae00f48d448e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18d0667bafaaae4c1dee831e2e59841c411ff399b9b4766822ba2685d419c3be
MD5 5ad3853885beb98c2e28a085d080e7ef
BLAKE2b-256 500df695386ca855618c78f43803a71f52ba5201a1fba5e5b10eed9eb21847cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d50bfcc1d1692dc55165b3dd2f0b9f8fb5b1f7b571a93e08d660ad54b9ca1a5
MD5 c53909d5d3e3d3c43e13499eff516fd5
BLAKE2b-256 fbe91cd69bec906bb31320fa83a470d8df007dd1cb70309487d61cf2430f9709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdd7315314b0744a7dd506f3bd0f2cf90734181529cdcf75542ee35ad885cab7
MD5 53dada60c87316b745f346d701694f7f
BLAKE2b-256 22f473ab265b6ffbd6ae5bbbb287d5b0533f4004ab77716ed22d9e8fe147d05d

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d5a369eb7ec5b2fdfa9927530b5259dd21893fa75d4e04a223332f61b84b586
MD5 f0d80ea91150215b6c9018a3fb800e5a
BLAKE2b-256 dc4f027ac688b4fcd4d6f04344e3dbca69cee4154454a9a578a5aa1edc62f75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 163dba68f979c61e4e2e779c4d643e968973bdae7c33c3ec4d1869f7a9ba8390
MD5 6b309e9b22b115cbedc8fa4b12f27be5
BLAKE2b-256 85bf6928c7cd5927c37b90eb094fb98c8cf1da1cf1462f6a8904020303179058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 156795b3db976611d09252fc80761fcdb65bb7c9b9581148da900851af25ecf4
MD5 1c1b98814a8c39747fddc0af3c8757e3
BLAKE2b-256 31861e5af105ccf0fe4232be77742ee4278887df28331000da5ad85e7e2dd584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 391bb6a29c4fe7ccc9c30812e3744060802d89b39264cfa77f3d280d7f387ea5
MD5 86247485e2abf74519b24805e4cf5765
BLAKE2b-256 c6c2444f0a21bc8eaa82e166a1147ee8a972275b0d54347525cd2030cecafdb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.3.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d5a6c4864bb6fa9fcf7b57a830d21aed69fd71742a5ebcdbafda476be673d212
MD5 03f4e7fb45b42c22d2eb8c401397caf1
BLAKE2b-256 9c81df70abefbd6c47e9b75a646809e433ce85bf74723ca89a213d2a0f2cdb70

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5313a4e9380e46ca0e2c681ba739296f9e7c899e6f4d12a6702b2dc9fb846a31
MD5 ecea9c1b7f6373c1459e4d70f65fc0ae
BLAKE2b-256 21b11971c0cdd958f36736544b11fc0c9807db17ed9289fa85a0621fedfd36db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 807796fe301b7ed76cf100113cc008c119daf4fea2f9f43c578002aef70c3ebf
MD5 1d75011cb572e62f0aaabc5d7c2657f3
BLAKE2b-256 947643618f4e1eb2a69acf2a4a74d051e7a61eea92a6a91e1a2f11f9bd90b1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b0174ca6f3018ddeaa49847f29b69612e590534c1d2186d54ab25161ecc42975
MD5 d8c425ee00d4e97754857c713bcd32ca
BLAKE2b-256 152d7962e4dd79efe154ff7c56604d7d1d339755a75fb2c963596579880d6582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57bc54763bf741813a99fbde91f6be138c8706148b7b42d3752deec46545d470
MD5 73a61ad567e4783f5bc5997f1834b93b
BLAKE2b-256 182498cdee92e0293aec0a4992a3c9463c84711ff7ed4ee95a45e1806b9e5064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 793a23e8d9cb6c231aa3023d700008224c6ec5b8fd622d50f3c51665e3d0a190
MD5 ca8434e0e34df723deb5c151f594d457
BLAKE2b-256 fb1ec059ba58a06642522c067c35abf41f0af71e8c146e8d528112c1d6c585a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4ae2ea9afcfdd2b931ddcebf1cf82532162677e00326637b31ed5dff7d985ca
MD5 2a10a1c58facbb1642e9719f8d01e26b
BLAKE2b-256 cd0fa6cba8daee124b107123f850dc72961eff2a7e0b3778736a7ae2be27ec33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f24d5b9383318cbd1a5cd969377937d66cf0542f24aa728a4f49d9f98f9c0da8
MD5 8bfc821aa965a9a7e17724fb86e0207d
BLAKE2b-256 bd61f994d8697e8ca62159a7757314de4b2ff22e53fd83f414937fd7258d54fe

See more details on using hashes here.

File details

Details for the file setproctitle-1.3.6-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.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1b20a5f4164cec7007be55c9cf18d2cd08ed7c3bf6769b3cd6d044ad888d74b
MD5 a01e4c44eb3027aede08ff2d17f3065c
BLAKE2b-256 56e94775e019cfe2138553b13b4b8a664fd5a535a182026676bfb6955704b807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 805bb33e92fc3d8aa05674db3068d14d36718e3f2c5c79b09807203f229bf4b5
MD5 59b1793e0fb4709d9db3a24d167dc6bc
BLAKE2b-256 78b65c010f3dff4a6e8e51a459877cfe373408ae1a60e83c374bee2119a221d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a1d3aa13acfe81f355b0ce4968facc7a19b0d17223a0f80c011a1dba8388f37
MD5 4e5ffdd3b530cdca9cb6b569c60dbd51
BLAKE2b-256 bc75c6ae31587de0067c5f25b8fe5c7e20d9bcc9b6ff48e529d9076460c95f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for setproctitle-1.3.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3884002b3a9086f3018a32ab5d4e1e8214dd70695004e27b1a45c25a6243ad0b
MD5 eddf3cdae9dab52648e76b9b99548faa
BLAKE2b-256 283a91e3df9a3942f63c6e1858d4c82c14cd87e73a98831ebf2c3b2b15fd7c3e

See more details on using hashes here.

Supported by

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