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 and top).

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 module is a Python 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.2.2

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

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

  • Added wheel packages for aarch64 (issues #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 (#52)

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

  • Fixed build for Python 3.8 (#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.2.2.tar.gz (24.0 kB view details)

Uploaded Source

Built Distributions

setproctitle-1.2.2-cp39-cp39-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

setproctitle-1.2.2-cp39-cp39-win32.whl (9.9 kB view details)

Uploaded CPython 3.9 Windows x86

setproctitle-1.2.2-cp39-cp39-manylinux1_x86_64.whl (35.5 kB view details)

Uploaded CPython 3.9

setproctitle-1.2.2-cp39-cp39-manylinux1_i686.whl (34.6 kB view details)

Uploaded CPython 3.9

setproctitle-1.2.2-cp38-cp38-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

setproctitle-1.2.2-cp38-cp38-win32.whl (9.9 kB view details)

Uploaded CPython 3.8 Windows x86

setproctitle-1.2.2-cp38-cp38-manylinux1_x86_64.whl (36.1 kB view details)

Uploaded CPython 3.8

setproctitle-1.2.2-cp38-cp38-manylinux1_i686.whl (35.2 kB view details)

Uploaded CPython 3.8

setproctitle-1.2.2-cp37-cp37m-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

setproctitle-1.2.2-cp37-cp37m-win32.whl (9.9 kB view details)

Uploaded CPython 3.7m Windows x86

setproctitle-1.2.2-cp37-cp37m-manylinux2014_aarch64.whl (36.8 kB view details)

Uploaded CPython 3.7m

setproctitle-1.2.2-cp37-cp37m-manylinux1_x86_64.whl (36.6 kB view details)

Uploaded CPython 3.7m

setproctitle-1.2.2-cp37-cp37m-manylinux1_i686.whl (35.5 kB view details)

Uploaded CPython 3.7m

setproctitle-1.2.2-cp36-cp36m-win_amd64.whl (10.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

setproctitle-1.2.2-cp36-cp36m-win32.whl (9.9 kB view details)

Uploaded CPython 3.6m Windows x86

setproctitle-1.2.2-cp36-cp36m-manylinux2014_aarch64.whl (35.7 kB view details)

Uploaded CPython 3.6m

setproctitle-1.2.2-cp36-cp36m-manylinux1_x86_64.whl (35.6 kB view details)

Uploaded CPython 3.6m

setproctitle-1.2.2-cp36-cp36m-manylinux1_i686.whl (34.4 kB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: setproctitle-1.2.2.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2.tar.gz
Algorithm Hash digest
SHA256 7dfb472c8852403d34007e01d6e3c68c57eb66433fb8a5c77b13b89a160d97df
MD5 9898587a1668f1c53f6699ca5d35256d
BLAKE2b-256 a17fa1d4f4c7b66f0fc02f35dc5c85f45a8b4e4a7988357a29e61c14e725ef86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fc5bebd34f451dc87d2772ae6093adea1ea1dc29afc24641b250140decd23bb
MD5 fb8c831cc509d279936a7c6bdadd1e1a
BLAKE2b-256 ffea0c249215e21b2588ac370d738873e3842ff981942202a2b9517f600fd797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 249526a06f16d493a2cb632abc1b1fdfaaa05776339a50dd9f27c941f6ff1383
MD5 322202ac2dcc6fb8deed2282b3ab6e61
BLAKE2b-256 3beba889106a9391c44f7ec456da1ead1054ec0e7e400bd4e2e02188c8f8d901

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f6136966c81daaf5b4b010613fe33240a045a4036132ef040b623e35772d998
MD5 87f2e83bad6dbf36671e177732dc7308
BLAKE2b-256 69ed20c8af2af9ec869696e8a4a777b920d9e7c7c7ce5f3f34444329f84d5953

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 970798d948f0c90a3eb0f8750f08cb215b89dcbee1b55ffb353ad62d9361daeb
MD5 813a9be800feb0cb5dde4562a816e864
BLAKE2b-256 5e59f9fef4d0682ff03a392365322d160d8ca5257a0a782b93cea7cb7658e53e

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 077943272d0490b3f43d17379432d5e49c263f608fdf4cf624b419db762ca72b
MD5 83d18a9d371e1d6568ac2bb48a277815
BLAKE2b-256 b65dc09df79458318acf027e9ccab1b8c13a26314fba302de35ca0aa7f21f76e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0d160d46c8f3567e0aa27b26b1f36e03122e3de475aacacc14a92b8fe45b648a
MD5 ba05a05248aff0a91c915cfe2339339e
BLAKE2b-256 387e6794cfb1d910d982221f08b0617737e454470b53d67fbb3cf831ab891b81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 17598f38be9ef499d74f2380bf76b558be72e87da75d66b153350e586649171b
MD5 95e43b4db5e2fe3af07f737dad010a2b
BLAKE2b-256 4c6ba70de194afd9b65253180603a80cb19109d7c00d45c44b3454c06b822ffb

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 36.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc4393576ed3ac87ddac7d1bd0faaa2fab24840a025cc5f3c21d14cf0c9c8a12
MD5 605ac18e95f1ee371db693cb9abbe207
BLAKE2b-256 7de1761a1e90ac68b92e296025e7e93b24f4e0f46f92d5ae86108228312f2b22

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c611f65bc9de5391a1514de556f71101e6531bb0715d240efd3e9732626d5c9e
MD5 dc5c6c10155fd92027713879c72c7111
BLAKE2b-256 3cdc00fb59a01ed15134e6ccdd450e629418431fe9a6433b2ee9479c27660ae3

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 35.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e13a5c1d9c369cb11cdfc4b75be432b83eb3205c95a69006008ffd4366f87b9e
MD5 5451a2cc1f756f51fee5aec05ab33f9d
BLAKE2b-256 218a32fdafc0664c681507df24dbaa7c28f823a5289f03e663c51dae7f3a3278

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a11d329f33221443317e2aeaee9442f22fcae25be3aa4fb8489e4f7b1f65cdd2
MD5 0479224d4c341ded43fb13b0a2c9937e
BLAKE2b-256 ed2099e07871185c68db67ad71ec6e21f8977364b2014922904c8cc234b307bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: setproctitle-1.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 28b884e1cb9a53974e15838864283f9bad774b5c7db98c9609416bd123cb9fd1
MD5 9c2494139445f0a454661048da6e4af6
BLAKE2b-256 2c62156a441a81a8a46c9d1e3f31863eb79b12445da3e02f158bf39e7d993fe6

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbf914179dc4540ee6bfd8228b4cc1f1f6fb12dad66b72b5c9b955b222403220
MD5 77ef7d7325309fbba64634745f6ab219
BLAKE2b-256 d44965d5f5f9fd9e763f3aa9ceb4bb5109a6572851a98c74a01a5e968ac22adc

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e696c93d93c23f377ccd2d72e38908d3dbfc90e45561602b805f53f2627d42ea
MD5 83d982f57adbe54b7df0bce4fdaf0a9f
BLAKE2b-256 975c16a6e69febfbee3f1a1a8c4318d1f054ff4d3ef2a61b233937c316cba06d

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba1fb32e7267330bd9f72e69e076777a877f1cb9be5beac5e62d1279e305f37f
MD5 50a175889d28c2881e22a00429577c78
BLAKE2b-256 b1108ec969cd05fb952dc876dd74d01eff0acda9b50f44f9f80e957eaa14073d

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5260e8700c5793d48e79c5e607e8e552e795b698491a4b9bb9111eb74366a450
MD5 cd60a54d9f32d6bb558cb2ba99ff13ef
BLAKE2b-256 937824acecb09c0d9d0fd66d18cede29198d273ded9637e013cc0f6e7429d6c0

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0df728d0d350e6b1ad8436cc7add052faebca6f4d03257182d427d86d4422065
MD5 52adf917eec8bdcfa6c97c62ba02e937
BLAKE2b-256 4fe9c982c4e51ba106e7a14979d685cf90f9349e8175650d0e7dcffc663ba878

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8ef655eab26e83ec105ce79036bb87e5f2bf8ba2d6f48afdd9595ef7647fcf4
MD5 e3b55c548586a53e1ad0546549bfdca5
BLAKE2b-256 7f3871723520cc77e4165ff76de0ea949ee957c9d4821a9ca332a9741b8daa55

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 35.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 30bc7a769a4451639a0adcbc97bdf7a6e9ac0ef3ddad8d63eb1e338edb3ebeda
MD5 5c374be2b79246e57437a4e4a2c82d52
BLAKE2b-256 bb7e9b3683a42e3aa7cba8364149fd12be1a17c8d0b5cf3f587320b86e5e0248

See more details on using hashes here.

File details

Details for the file setproctitle-1.2.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: setproctitle-1.2.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for setproctitle-1.2.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9106bcbacae534b6f82955b176723f1b2ca6514518aab44dffec05a583f8dca8
MD5 3a55b7cbefa2f4f91d7b251f51b15102
BLAKE2b-256 2d0b2aa75c055667eb151a2b94bae83df650e42f666c52bd1ef9af7f457be8b1

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