Skip to main content

Customize process "title" as reported by ps and similar tools

Project description

processtitle

License python pypi PyPI Downloads

This Python extension module allows you to customize the process "title" as reported by ps, top, Activity Monitor, Task Manager and similar tools.

It is similar to the well-known py-setproctitle module but, not being constrained by backward compatibility, does things a bit differently - and hopefully more conveniently - for the user. (If you are already familiar with py-setproctitle, make sure to read the differences from py-setproctitle section.)

Modifying the process title is useful in many cases. When you have many Python scripts, or worse, many instances of the same Python script running on your system, it is very hard to understand which one is which, if all you see in your process list is "Python" or "python3 same-script". Using this module allows your script to specify what it is for or what it is doing to be shown in the process list instead.

Platform support

The module will happily run and do nothing on any compatible system, but the systems where it actually works (i.e. changes the process title) are: Linux, macOS, Windows, {Free|Net|Open|DragonFly}BSD and Illumos. See platform details below for more information about each platform.

In all cases, only reasonably recent versions of each platform are supported. No attempt is made to work on ancient Linux kernels, Windows XP etc. etc. If you are stuck with a very old system, your best bet is py-setproctitle.

Requirements

  • Python >= 3.10, capable of loading native extensions. In particular, CPython, PyPy and GraalPy are all supported.
  • If your platform doesn't have a binary wheel available, you will need:
    • A C++ compiler capable of compiling C++20 (GCC 10.2 or above and CLang 13 or above are known to work)
    • Python development libraries available (like python3-dev package in most Linux distributions)

Installing

pip install processtitle

Usage

import processtitle

processtitle.prepare(...optional config params...)

if not processtitle.set_to("my fancy process"):
    print("oops, process title couldn't be set")
else:
    print(f"last set process title is {processtitle.last_set()}")

The processtitle.prepare currently has the following keyword-only optional parameters defined:

fork_safe_only: bool = False : use only such external libraries and/or APIs that are safe if your process later performs a fork without exec. Currently this is only relevant on macOS where APIs needed to update title in Activity Monitor are not fork-safe and will cause crashes if used together with fork without exec.

If you wish to enable debug output from this module you can use standard logging machinery:

import logging

logging.basicConfig(...)
logging.getLogger("processtitle").setLevel(logging.DEBUG)

Alternatively, you can use a py-setproctitle-compatible method by setting SPT_DEBUG environment variable to a non-empty value (which is not "0"). For example:

SPT_DEBUG=1 your_script_that_uses_processtitle

For troubleshooting and general convenience you can also call the module directly or via a wrapper script:

$ processtitle
$ #or
$ python3 -m processtitle

This produces a list of process IDs and their titles by delegating to ps or Windows PowerShell in a way most appropriate to each platform. Run processtitle -h to see the available command line options.

Thread and other safety

processtitle itself is thread-safe - all its operations are protected by a mutex. However, the effects of changing process title are not. On every platform, changing the title modifies some global process information. If this information is accessed by another thread at the same time, Bad Things Will Happen. Therefore, it is advisable to only change the title before other threads are running or when you are absolutely sure they are suspended.

On some platforms, processtitle modifies pointers visible to native code (for example argv[1]... and environ on many Unix systems). It never deallocates the memory pointed to by these, so any native code that uses cached values of such pointers should be safe. Python's sys.argv and os.environ should be completely unaffected by any of these manipulations.

Differences from py-setproctitle

The most notable difference between processtitle and py-setproctitle is that this library requires you to call processtitle.prepare() before setting the process title. Absolutely nothing is done prior to prepare - just importing the module has no side effects. The prepare() method arguments allow you to customize library behavior on platforms where multiple incompatible behaviors are possible. Currently this affects only macOS (see macOS details below) but in the future might be extended to other platforms.

In addition:

  • There is no requirement to import processtitle as early as possible. It does not rely on Python interpreter state which may be changed by other libraries
  • There is no general "get process title" call (instead you can query the last title you set via last_set()). This is because querying the original title might not be possible on some platforms.
  • Currently there are no "set/get thread title" calls. If there is any interest, they may be added in the future.
  • processtitle supports Windows. At the time of this writing py-setproctitle does not.
  • Wherever possible processtitle avoids tinkering with argv and relies on other safer, documented or semi-documented methods.
  • processtitle uses standard Python logging module to produce diagnostic output rather than just printing to stdout. (For compatibility, SPT_DEBUG environment variable is also supported - it simply sets the default logging level for this module to logging.DEBUG)
  • processtitle is written in C++, not C, so it requires a reasonably modern C++ compiler when binary wheels are not available.
  • processtitle does not support old or no longer maintained operating systems like AIX, HP-UX etc.

Platform details

Linux

On Linux you will be able to see the process title in the output of ps or top commands, as well as with any other tool that displays process info.

To change the title, processtitle uses the following methods:

processtitle.set_to() returns True if at least one of these methods succeeded.

macOS

On macOS there are 2 independent places where process title is shown: ps, top and similar commands and Activity Monitor. They take information from completely different places and modifying one doesn't modify the other. Unfortunately, the API required to change the title for Activity Monitor cannot be used if your process later fork()-s without exec(). If used in such a process, the forked process will most likely crash randomly and unpredictably. Note that some popular libraries such as gunicorn may use fork() internally.

[!IMPORTANT] Using fork without exec in Python on macOS (or any other platform) is, in general, dangerous because you rarely know for sure whether the libraries your code depends upon are fork-safe. This is why the multiprocessing library avoids fork by default on macOS and, recently, on all platforms.

Because of this issue, if you must use fork() on macOS you have two options:

  1. Pass fork_safe_only=True argument to processtitle.prepare() in the parent process. Doing so will prevent use of any non-fork-safe APIs but will also preclude customized process title from being shown in Activity Monitor.

  2. Alternatively, if feasible, call processtitle.prepare() after the last fork() in the parent process.

To change the title, processtitle uses the following methods:

  • Changing the content of native (not Python's) argv[0] (while preserving the rest of argv and relocating environ).
  • If fork_safe_only is False undocumented Launch Services calls

processtitle.set_to() returns True if at least one of these methods succeeded.

Windows

On Windows you can see the process name by looking at the process command line. You can see the command lines of running processes in three ways:

  1. Using PowerShell's Get-WmiObject Win32_Process call:
Get-WmiObject Win32_Process | Select-Object ProcessId, CommandLine

If you use cmd as your command interpreter you can achieve the same effect via:

powershell -c "Get-WmiObject Win32_Process | Select-Object ProcessId, CommandLine"
  1. Using processtitle command line utility installed with this package. Run processtitle -h for details of available switches. The utility internally uses WMI but in a more sophisticated way.

  2. In Task Manager details view. If the "Command Line" column is not present, right-click the columns header, choose "Select columns" and check "Command Line" entry in the list.

[!IMPORTANT] Task Manager caches the command line of the process. If you had Task Manager open and showing the command line and then changed it, you might need to restart it to show the updated value.

To change the title, processtitle modifies/replaces partially-documented RTL_USER_PROCESS_PARAMETERS via undocumented or partially documented calls.

BSDs

On {Free|Net|Open|DragonFly}BSD you will be able to see the process title in the output of ps or top commands, as well as with any other tool that displays process info. All of these platforms will, in general, add the original executable name (e.g. python3) to the actual title either as a prefix or a suffix.

[!NOTE] At the time of this writing the default compiler on DragonFly BSD is an ancient GCC 8. You will need to install GCC 11 (available as a binary package) in order to build processtitle. Once installed: CC=gcc11 CXX=g++11 pip install processtitle

To change the title, processtitle uses documented setproctitle() call (FreeBSD, NetBSD, OpenBSD, DragonFly).

Illumos

On Illumos by default the ps command shows process title captured at process creation. To see the current one pass the -F option.

To change the title, processtitle changes the content of native (not Python's) argv[0] (while preserving the rest of argv and relocating environ).

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

processtitle-1.2.tar.gz (33.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

processtitle-1.2-pp311-pypy311_pp73-win_amd64.whl (29.2 kB view details)

Uploaded PyPyWindows x86-64

processtitle-1.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.3 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (27.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

processtitle-1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (28.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

processtitle-1.2-pp310-pypy310_pp73-win_amd64.whl (29.2 kB view details)

Uploaded PyPyWindows x86-64

processtitle-1.2-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.3 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

processtitle-1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (28.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

processtitle-1.2-graalpy312-graalpy250_312_native-win_amd64.whl (29.8 kB view details)

Uploaded Windows x86-64graalpy312

processtitle-1.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (61.5 kB view details)

Uploaded graalpy312manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (60.7 kB view details)

Uploaded graalpy312manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (50.7 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

processtitle-1.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (47.8 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

processtitle-1.2-graalpy311-graalpy242_311_native-win_amd64.whl (29.5 kB view details)

Uploaded Windows x86-64graalpy311

processtitle-1.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (61.5 kB view details)

Uploaded graalpy311manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (60.7 kB view details)

Uploaded graalpy311manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (50.7 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

processtitle-1.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (47.7 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

processtitle-1.2-cp314-cp314t-win_arm64.whl (27.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

processtitle-1.2-cp314-cp314t-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

processtitle-1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

processtitle-1.2-cp314-cp314t-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

processtitle-1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

processtitle-1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

processtitle-1.2-cp314-cp314t-manylinux_2_39_riscv64.whl (241.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

processtitle-1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (274.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (273.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (266.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp314-cp314t-macosx_11_0_arm64.whl (28.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

processtitle-1.2-cp314-cp314t-macosx_10_15_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

processtitle-1.2-cp314-cp314t-macosx_10_15_universal2.whl (44.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

processtitle-1.2-cp314-cp314-win_arm64.whl (27.3 kB view details)

Uploaded CPython 3.14Windows ARM64

processtitle-1.2-cp314-cp314-win_amd64.whl (29.9 kB view details)

Uploaded CPython 3.14Windows x86-64

processtitle-1.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

processtitle-1.2-cp314-cp314-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

processtitle-1.2-cp314-cp314-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

processtitle-1.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

processtitle-1.2-cp314-cp314-manylinux_2_39_riscv64.whl (236.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ riscv64

processtitle-1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (269.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (268.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (259.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp314-cp314-macosx_11_0_arm64.whl (28.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

processtitle-1.2-cp314-cp314-macosx_10_15_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

processtitle-1.2-cp314-cp314-macosx_10_15_universal2.whl (43.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

processtitle-1.2-cp313-cp313t-win_arm64.whl (27.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

processtitle-1.2-cp313-cp313t-win_amd64.whl (30.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

processtitle-1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

processtitle-1.2-cp313-cp313t-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

processtitle-1.2-cp313-cp313t-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

processtitle-1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

processtitle-1.2-cp313-cp313t-manylinux_2_39_riscv64.whl (241.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

processtitle-1.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (274.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (273.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (266.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp313-cp313t-macosx_11_0_arm64.whl (28.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

processtitle-1.2-cp313-cp313t-macosx_10_13_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

processtitle-1.2-cp313-cp313t-macosx_10_13_universal2.whl (44.2 kB view details)

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

processtitle-1.2-cp313-cp313-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.13Windows ARM64

processtitle-1.2-cp313-cp313-win_amd64.whl (29.3 kB view details)

Uploaded CPython 3.13Windows x86-64

processtitle-1.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

processtitle-1.2-cp313-cp313-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

processtitle-1.2-cp313-cp313-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

processtitle-1.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

processtitle-1.2-cp313-cp313-manylinux_2_39_riscv64.whl (236.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ riscv64

processtitle-1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (268.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (259.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp313-cp313-macosx_11_0_arm64.whl (28.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

processtitle-1.2-cp313-cp313-macosx_10_13_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

processtitle-1.2-cp313-cp313-macosx_10_13_universal2.whl (43.3 kB view details)

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

processtitle-1.2-cp312-cp312-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.12Windows ARM64

processtitle-1.2-cp312-cp312-win_amd64.whl (29.3 kB view details)

Uploaded CPython 3.12Windows x86-64

processtitle-1.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

processtitle-1.2-cp312-cp312-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

processtitle-1.2-cp312-cp312-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

processtitle-1.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

processtitle-1.2-cp312-cp312-manylinux_2_39_riscv64.whl (236.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ riscv64

processtitle-1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (268.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (259.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp312-cp312-macosx_11_0_arm64.whl (28.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

processtitle-1.2-cp312-cp312-macosx_10_13_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

processtitle-1.2-cp312-cp312-macosx_10_13_universal2.whl (43.3 kB view details)

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

processtitle-1.2-cp311-cp311-win_arm64.whl (26.7 kB view details)

Uploaded CPython 3.11Windows ARM64

processtitle-1.2-cp311-cp311-win_amd64.whl (29.2 kB view details)

Uploaded CPython 3.11Windows x86-64

processtitle-1.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

processtitle-1.2-cp311-cp311-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

processtitle-1.2-cp311-cp311-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

processtitle-1.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

processtitle-1.2-cp311-cp311-manylinux_2_39_riscv64.whl (236.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ riscv64

processtitle-1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (267.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (267.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (258.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp311-cp311-macosx_11_0_arm64.whl (28.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

processtitle-1.2-cp311-cp311-macosx_10_9_x86_64.whl (28.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

processtitle-1.2-cp311-cp311-macosx_10_9_universal2.whl (43.0 kB view details)

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

processtitle-1.2-cp310-cp310-win_arm64.whl (26.7 kB view details)

Uploaded CPython 3.10Windows ARM64

processtitle-1.2-cp310-cp310-win_amd64.whl (29.2 kB view details)

Uploaded CPython 3.10Windows x86-64

processtitle-1.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

processtitle-1.2-cp310-cp310-musllinux_1_2_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

processtitle-1.2-cp310-cp310-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

processtitle-1.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

processtitle-1.2-cp310-cp310-manylinux_2_39_riscv64.whl (235.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ riscv64

processtitle-1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (267.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

processtitle-1.2-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (266.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

processtitle-1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (257.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

processtitle-1.2-cp310-cp310-macosx_11_0_arm64.whl (28.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

processtitle-1.2-cp310-cp310-macosx_10_9_x86_64.whl (28.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

processtitle-1.2-cp310-cp310-macosx_10_9_universal2.whl (43.0 kB view details)

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

File details

Details for the file processtitle-1.2.tar.gz.

File metadata

  • Download URL: processtitle-1.2.tar.gz
  • Upload date:
  • Size: 33.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2.tar.gz
Algorithm Hash digest
SHA256 22019b5970d2f2fccac2dc169cce2ed7470638b25446af4620fd90b6b89fe624
MD5 d54dc60e8eba173b723b5a861e0a87a9
BLAKE2b-256 73d99521c672f0e718921e1239b913aecf25d555830b756b16100e95bedf1fb4

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec8388991d70eabdf1045b01d30277446e126ff04df49c62d98dad6ae9fd8025
MD5 c42e562c62c2f6dc512a10699e54e6e2
BLAKE2b-256 670b395d8f39287d7fc456c61719c54a9fca73f105c44c71c2704a68e804d6d9

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21e8200585eb97acc72e331ad850c3f28c09bc818bad7bb09c1716967e770896
MD5 1e520016388a31834d0ea2591a1fe79c
BLAKE2b-256 0d3ff7cc0cd3d1f1aa73b42919de3d2427bec7242c566a5926a1c04784665a47

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df10179efb2b95aa746be956248c9061acb4e4363c33fc6d2de060b2e4e70fe8
MD5 7257d25f4a9d7881d4ffa251738c8359
BLAKE2b-256 3fda779b8b835ce71ffe007de82607b9f53bb7bdf94211dc92a358d99bf455f7

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef64cd8e8b96f06c0f01743d9f5bf74f474593735475c2e5e5e5516ebfbc9e0
MD5 a2477503b27dfe8c97e4d78073b39b9d
BLAKE2b-256 5cb86d4dd0fffb0daa704f85cc892260f5e433931838fe1f65e2c96310a04b32

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 db29bf203be987bad34b679fcd03885e8936fffdbd1b8ba756422e6a98d5491b
MD5 953e4cbaa531e3b458aefc34b3c0230b
BLAKE2b-256 053a022a3f4e0765619e5fa0fd76e28cacdc1fad0e21ce55d12db3289df331f4

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6e7d53554d50bfcca12a1083cf9b69a0ba3368f8f462bad84c5ef4325c658dc
MD5 6348e106961b8fafe96ff8332583a5d7
BLAKE2b-256 39d42ce922590e0878e237f7703ef87e959390f9efaf0001bff83148b1f45f7e

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 369aa6b306888d62e78dae5eb593b6e10e9b10b744cc970e2e5a8fc2c159758b
MD5 cf073aff4e2af6d86fa43d046e067251
BLAKE2b-256 bbe1ba7cad739f6fd63f00da195c682a89a5ca576dee3b023eb813fd81f7ff13

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f32755fa52024755d774eda5fa273d7054838f23ffbf2f0e8961c2a3ef5a3d4a
MD5 84bf9244b32cfe38ea57227cd2b28284
BLAKE2b-256 6efc21c2aa1756ce6a6feb41318bd205233d7b7d4e1023d6b00a975174939874

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aaba4a0b80b5af8bf3a16f6ee6d3b62233087f5be10cd0c840c55899c863d64
MD5 95fe1f5d9e89e1a2155b6cf840f6d141
BLAKE2b-256 9fce09550da77ad94cda7c6351cc771a04fe89da190b783c04097550549acd65

See more details on using hashes here.

File details

Details for the file processtitle-1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c7130c7d476a2fcf96b6b2430ffd00f3b8c44f2f3bf320ba30fc1f54bb6c097c
MD5 6f29f191ab5abb348071dc417fd1da00
BLAKE2b-256 4d82608aa19cd727459c91a0ccc711045164b8be72869bfdd66aff5fd56bdda0

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 af3c48ed316325ba8e7477ab3de7a98f7e65b1a1cb4a46a77b71ea8e6c04ec16
MD5 7c3f4f1e1c25ed34f22e4d001365f8c7
BLAKE2b-256 89eb792a4b967f7f8ca01fab181e4e770c049764744f2a99a4a4d03e948ed5c9

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a46a7f80a674fd4df819acef0cb66e322966cdf99b30aed7845c8e540cba6c0f
MD5 dcd94aee1efd3261306d3bae935a4172
BLAKE2b-256 afa39843ebeb1528448ae08d738f09be61f54888ef0a361b972a2b67af1b951e

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e03affa7ff94d7d6ed63ebdc03d4bd89752b92babc53729fe7b3e83fff032c0d
MD5 a57556db79a61f00e10304485e72d039
BLAKE2b-256 6891cae6b4872b0f100be07c2b801ec4f9db6618a1e1547f86ab809a0093133c

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51db05405eb5a0d03368a5bee9bb17512a12e4101129656de5e1047d491d4c0c
MD5 5a4d3e626c764ea8329afb192f7e4af3
BLAKE2b-256 1afde1503b02e6ef35907863bf9cd63f87d7c2c4217564b1bf103a01f3703b80

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82cdd69aa9c6fc81d518a616f85df7546e127bf2762358e63655dcd963474088
MD5 b473d55398c6adad9f7e112f0ec2901c
BLAKE2b-256 48c3abedbc7a069f0b40e44fbe84cf28d00cd37fe690e6b7adb78e47f2316ce4

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy311-graalpy242_311_native-win_amd64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 44d4ecf94c867a129fdb66f579d17a25ad5642ecc99d7567ce1fc86a406a6025
MD5 3db872b3e4954f9833a6165ca9f3cf6f
BLAKE2b-256 58dcdcb71b659e3c9c8ccf152586bdd63d5b39271fd354b200ef862ef0c0ad8c

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cd20d0369678632a8c0e665787d0e25f8b783272c79ff98f0d578208ad37f2d
MD5 4072d640e8e8c0998373023de7038621
BLAKE2b-256 cddbadaeebb9299b453a58c963f5a468423e393b4c365df78fb1db88b1837fcd

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d5267bcc3f6ed4f0233f5a53745dca82796fdfa1d6056c62329322a6620f413
MD5 fdee9fa683793939822a761635cdc549
BLAKE2b-256 bde51c669caf59cc1c0896f7846babc651fa183a1f09eb18abf9ddf44a941ccb

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37d40b4ef8887908109aeb73532ac4d3a7ec883ebdbd31c1e3aee77c41f389e7
MD5 72ec426965797de1f343875683626f85
BLAKE2b-256 f3ba5d35c110d3bbaabb7a4bd0fe0e56c92ccce2c1244bff104ce0080ba8f649

See more details on using hashes here.

File details

Details for the file processtitle-1.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a171a3e653109094b39df1db085c7df5fa15a741d3d547c7be5b01752de0af4e
MD5 422e239664cd1ef41de3fa2347363c20
BLAKE2b-256 a7434c19bc0640b031e36298c01c35f326fce882c2ca22f3e1a53f792ccc62a6

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 25dd2f5f93187bfac207ee6108c80e0a27c98fc00606b72386a46429020e6f62
MD5 bcefbbe042bbb22cde6815dc66c71720
BLAKE2b-256 73a84ebf50049308729e0221566e24e19b3f0d4e0623c0e74e41d304d6acff7f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 214fe448d5ca5805b531d70ed083e98676b59087cef0a37403e423e65d3deff7
MD5 e64f145e5bdb86cabfe89886c009260a
BLAKE2b-256 507be6ac62e51d0d4033be2876dd1532197bae186426746e91f1cfa5b50209ed

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5c0b1d64fdf959411cbb968cf199c5f2ed755924d1075296ac304969d9f874f
MD5 61dcb46ebc9b9377cef917b7d2748fcb
BLAKE2b-256 a1ce9afe9c03d5bceff872e3d88ee62aa8d0c1ab46881b4bdd4bd2dc389a4e38

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0666178f7f2a0fec7db33f50e72684738e0156c3b686244af531208cd4c5c983
MD5 5a9846f8c77d721c3e2ac63e226b1cf0
BLAKE2b-256 0770235761dcaf52e2e5a5d10f72c7655d41a36620dcbd2faf8202f8aa039678

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ef4c4a61d6e097fc3746b5428a2769eeec2b0e850e9989452f1843da50b6dec0
MD5 6edbe7f0f3deddd1c2ab1565089f3689
BLAKE2b-256 e6cb364bbf11065b61f79790593eeb414a0061fc5aa8a250a7e73a1d8fc0d793

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03dc5e41ea290a72d3b2128f582936405123764550e61e1f432badfc1a1a89a5
MD5 8060172b84802b02c7f886bcab036b8f
BLAKE2b-256 408136f4899e3a8c74f3295b37e013603294620dfb95be59bfa86578215c09d7

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a390723141419ac69d0d5683d85c26f59e2f7e94072a9d1ae94294cfee72c2f4
MD5 b431e776e23c489b73cdcc7ffe37c9f1
BLAKE2b-256 19c8f8e9585459e103bc41ebdac050820d26264aff4f86aac7f37efbd4676e4a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56dcc1dcf5489287f6f45a7b894802f182397c8901e06f8bc0c65f3315ea88d5
MD5 b3ea0d45d9dea068f4e132c5082589a0
BLAKE2b-256 d62270af144a59aeeccd033e3567bd84dc3fb84f2a989327221f963e7feaa3cb

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ae1a79ef9cd2cfa8b06d55cffb351cc7d1d043dd6aaa13c960c7c8bbc1738641
MD5 734f01bff6bfed4d96ac9d3a4402cd89
BLAKE2b-256 865c5e866be7ce4b5759ed8ae2192b0328a013d4e3467b5dd630fe68cd5603d8

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23f049aefae5ccdbcaed11c42dda2e0a266c2c8be9300a148eab906a77e8e2ca
MD5 881afcb70586e8eab335e1e90e785ae7
BLAKE2b-256 0288b99d839e4a6996ad97e7c9cc86413671fe074213b6b53265dd828d9385cd

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fa6598475e32fd409c292bb50064ca36b31f639e40a23cf8afc05a985138a76
MD5 9ac331fb0723cfb215c499926586f7e4
BLAKE2b-256 07f811cfeb3c0892dda68d0bf4e1f2386179cf1bebe0c520a8358deb09d4afe7

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b33d63a6a6927c3c795b679bc0d8531f6a3e38052a5f787076dcc32de9cd9bf2
MD5 cd0df00585d8b70322c194ffcd18a05c
BLAKE2b-256 ec1dab1d9a673754fd020fb53077b5bf3a384ca952b0f21a238cd515d980337c

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c1fbf06e9591d575f7c75c5dd817dc1e0a642f82eeadc7476423da3ed065f790
MD5 9f8055803c34197d9efa14bb137a1486
BLAKE2b-256 60919c3e0c1b3d048f3fcfe3880a094b65a7bd89d04e6b96643f57f71796a7da

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: processtitle-1.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4e10c636eb286ddb2fad1a8f1d724b9441a334977ea703ecf2ccb86a958ec1d1
MD5 e91ac5dda4f4998066ae5cf7df854be8
BLAKE2b-256 d469724255acf0e0d8874be402cd8dd414b1aa3544e5a557d89a0e6e6302883f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: processtitle-1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 29.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 75d96d6fa37ddb9f76a631c78f65e31b0ed5e63cdfad0e9c27c14d828e017c85
MD5 e98a314be1f7df780be59569b9e7e9fb
BLAKE2b-256 b2324b81e75bdc5d36c7f962c4f457020825f22eddc6a65dd3414c576f8226c5

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8fd2f26e89dba0e8cfcf1182f77b7f30e59f7b2c050cce4b1c5b5eef22f2fc5
MD5 b66afd6a8b7063a3fcda145770730bae
BLAKE2b-256 846873cf836e3387cb4d81e15f379ceb581d8b0b0ef478a3224be6af5e87d36a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9f762a20164ab926364b415782d1b8ba2d48795aacf23724672cc65553ed2936
MD5 ad0e0b67cb91c5c86e1949c890189deb
BLAKE2b-256 3511e7a64a5b5e6741cd9c38a646a2bab9f1d638aaa85f67320c612c65b68fdd

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0271c1f9647f6f5f12852536708757ce1839f484ac1626ea0a7a0b8297f18f6d
MD5 7a11671efa5d96f17d9796098ae83de9
BLAKE2b-256 201607cd0f59ff3cd1f04f2e67d6cc409ee7d5cbdfadf2687ab35e059f169939

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 943b90f1675ee14793b56a7c54e743315a330c6582adc144748cf5dd6508c959
MD5 cf4c73ba3bddc892af82139a4f791ea4
BLAKE2b-256 e4ab567d960c73eef6a5345f8a58d8ce312468ca8402c97fd7fb72921cbf6864

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 98e580526e888fd3597e3489ebb8f0769aab07da5fd840fdcfd47b4b1507b822
MD5 fa8e00397b4eb4fa0e9320a347caf500
BLAKE2b-256 87c540229ed0829ca64828133295ab5bd2e7ca44ec9cd08f98294fe3b40c19a8

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8402b2ad60d589345467790e97048df4e125a43302475ef0e35ef29a61da2d73
MD5 ee0f75c03f072e8e7d52d5c12aba7ae5
BLAKE2b-256 1d077717d2039f40b7dfaaa888a5c28139c07942af6fa6cb113ba8a6b466705f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f4b59ec539ad71b0ae003d35c16a5bf4b2f31d225ad9c58cb3caeb1ae283518
MD5 1232a801deaf59df82f37f2dd3555c0f
BLAKE2b-256 21cf48797d8ba157e5a7d5966f80ab1e79c13b1d097537502ac44d612cf27101

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65f7309fcf4c67e6086af243c406539496a8c1299ef88fb25f5903c41b0e1b90
MD5 0dd9d1a6cbb8b68c93bb471a606b0224
BLAKE2b-256 230c754b9c34cc89d16f3f147019da95d42e040fc1dfb5b8e439be56b185ffd1

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebbbec96d7078d8c9288514f09d7030b17ad4b6c4a10052ec31f0cba7fd84c80
MD5 a58a8a952e0bed3ebac6f06eb0088bab
BLAKE2b-256 cfa9ca16de4f3b9dd5627cbff47c9e6cee213144174dad987d29e6d38124b511

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5433915296e9969094ead63b8ebb14a9c13ab3478c22769c681820c61d4e1856
MD5 1715f4ccbe1e07383bd4e14ea8f58462
BLAKE2b-256 3d1e7352bc69c5f73f0642adcc94dfa38ad658d64a41c9e186fc53325af89e50

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1b945e265ce5e4224298bfe927d5d83b193cd3bf014a6c0e6cfcdc684cc57712
MD5 1b77c5bc136b2b3f71bac4f187c5b7a3
BLAKE2b-256 a10e10b9943c09c99aec1fc3125678ca4af15fbcc09379a23e7e225a4a245567

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 8da8d761f8ca9ca18ae94c62c046d8a64ea8018803700399bf1a4fc5f0889158
MD5 0690da2222fa062c894772242718d1a4
BLAKE2b-256 8839d3de6e97f49f0300925ca65e544e16d6a01a73fba90c9fe71b9219ba3060

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 055b28f77e5932c633172e18d7d9aa98d27ba43f8223b1ba6c50088eac5c9835
MD5 7f2197d31038d20967a909285da2f27e
BLAKE2b-256 cdf74baf15c0c818965cfe4572e32936b47f4963a3f27d5fde1928d82711e67a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfd270c544f0d704d8b08b93ad6e5332e987175252655436307442c82156ae47
MD5 cff267485df16ada585eec13636b6202
BLAKE2b-256 55951e94f150fdf349b43fe768b5fb1be8fb46dbe3d04e5b8ec3e364f7e2b0d4

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c29bbfbace8628fe13e285198d6a9a1b705a57fa0d03e4f062e82d91cda9b2ac
MD5 862c2f289f0f7040062d4048f499099a
BLAKE2b-256 01c183d50535f37df3eb56ab6fafd62f1d322a207280d1219274c664dbc5d870

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 08e19526c2828e92f8ad0e3ba7bbc7ad63f016e52ea05106927d8f7a5fdf1058
MD5 cdaee0da32b8211aed1f2cb29ee0962c
BLAKE2b-256 495d63aefd5d0fa5465e5d28ddb82738405575f469d1ac24356fce9ca33fc7a8

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb805fb2638f3343459f81c7d4ab9b1c147a7b4e6905c44246434888bde71c2f
MD5 6566590fbb1b3b1f9f7a7030c19b4af9
BLAKE2b-256 a2c4c582ba8dd377fa64ecd9fd479bee8c07a0329d69a2e144750c5465b06f7c

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7651075ca2c755b897643ebc48af703692c918a7f40159f0868c2408b1a09b5a
MD5 882e57342f81e2e6557730c47979a394
BLAKE2b-256 0a1aa8efbe26f574693f5e8ce6debeee2e7f6d67435468f03865812dd537edbc

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c21805e3eddcca4d05d8139c22596dccbb199b62c57835316072fb7bfa3c572
MD5 87bc7996fbf5ad90bc3ee6853c6a0393
BLAKE2b-256 4310edf0c66d247b2aab966028f9540e9b3b139257320651a391f663062c34ef

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 538d944180cdd44d2a001d4443ddb80504c17e6bbd0037d9dbf0441c399d0286
MD5 b542697d28a78521a923419bf96c4041
BLAKE2b-256 d4abf096d0cf204f7a00ea3316c319c8d6f1e4985d42eb7688144edec1c2d3ec

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 432b6299232f9c8c247b66dc486f3daf5e0da7aad143ad23e032786329c98e9c
MD5 d3bda8d1f5f75df50fc93ac522e07a5f
BLAKE2b-256 50eae77cf8dbd84a584469432c32c0d7803a9216e9cf82cbd64993a830fa1466

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7217cdd1e0ab2bfad18cabee13a2c3d4b72e4ea480a65aab99cfdac37f8d4cb8
MD5 d1167381d93b778c0aa329ba0b1252b1
BLAKE2b-256 2df4b34f7034a4420cb5b4a906b67422f82a816a10b9c986d000182fde8cc114

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5fea1bfee764d0e8d5c13ec74de12223837a0c16347e95503214c3b7fc04a36
MD5 521ce9586143b0d1430ff31d18f057d7
BLAKE2b-256 38f34ea4b9ff88b50ad9bb72cfaee76eb29ed8b9b8648c0a3f2825fe5be676c4

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 93ba938d46af47e65fb930bf6768c87b047202005e158f667c5fe2fd306c5d37
MD5 12d87755c0759f02cb9b29e0c39e5fd5
BLAKE2b-256 b0534520644cc95cb66eaa619cd99ea6d6f80b799a1a4c5928a9dd4040432b3a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: processtitle-1.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 10df8389850f96592df2d4394cf6c6573c95575de58d1a99cb632734796dd743
MD5 fb552cbacea3719127fc4f9d8df0347b
BLAKE2b-256 12d5a92c58c8e3753fd9cbfb4f34f4e43e64fda3790c7e2104344ba68a715746

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: processtitle-1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 29.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3197f0201170433d0cc48f553ddba1b76a18e82fc67618e89dac2a2ee100919
MD5 9c460a7151c5c2d3bec590ffa9973744
BLAKE2b-256 70d170f37c944a05b97330417e33b65fcbabbf33cc19bc6661cfd98c61ef56a1

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6a6ab749b519ba8ad1a99db7d9563abd71e29e6c8ba665bf570f0dde88cbf0b
MD5 d09275d73a62257ca9caf68f653d3fa5
BLAKE2b-256 b5e2c1a563bfc27c446d44c9a68e2913f1738cc9831531d2a16baf5621ee6344

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e6163457aeef59b3796efa6494423f95ce6d943404c88a07b6adfb515f635caa
MD5 60c3bdafed6081eba41860b87162545e
BLAKE2b-256 7d7ebda6df28a96bbe3a81031a7c05da1bbe4fa57365ad27ffbb5a8bae76c2e3

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 553c8eccf72ac13d8e6ea0bea64213c889a91487cd62cee078915f27863d5a25
MD5 2257230c5640922f8f234c25c02253be
BLAKE2b-256 0ebad71a7a7814b056b49844a9d5381dff74e0ac98d370be5cb7a725108c046a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcb418cf3acbd2ad6db14126cf490e4debefe54f573edf104e7258b43dedade0
MD5 a8aee3c634601959d43de6f1dcdd2273
BLAKE2b-256 fa8cd9d1885c39470d5503dc2c589435b65e36d5edddcb55ed9c689171c1889f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5fa667ca96cdb9691575fe4fdd264fc37211a7cd2ba238ca9eefa3087d86dd2b
MD5 625800c265e084999223edbc10e3c20f
BLAKE2b-256 56cad9e642f61cdd88cf693dcf1dcc3e788f1ca3bcb8bc36d6cb8cf83398982a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bfad038756d1d99c2990879b267afd7b8530cfc027a22db52ceb28b115e43c8
MD5 e6516dfbe5b60592ed90b1cd5c446fa4
BLAKE2b-256 840226360eb71f18872398432faa37afe95eb9f04cafcd27f12c507940b0192b

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8ced5553f4d8a042982b63a82adabf5f00891d0398ebe81d6d5a11d404ff84a6
MD5 ba7946fe0f07670253e129ed189eb236
BLAKE2b-256 b1a2a21b7589d73f4a419409c526891283da5d1c93e18c7d5477a42967a38a62

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64237808a7b8a9b828537e8f1ebce7c0082239e42daeca7f5c70fbe1a83bd0d3
MD5 7fd74bd712667f364008bc68a3e23d27
BLAKE2b-256 b94b5b0c866e7c2aa25bf9ba5aabc75813ed15997762bcae14a83aa03eb4d6c6

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 786a214e7798a36be97bf6c5dfb0d6d6f1584d77cc0657fb81eccff0c041ca83
MD5 4a15b74369b230ae85975f4e3a0e018b
BLAKE2b-256 f4d23c7c1ae97f234431bd6148c352f131e09e874e29877c520c2a03f2153367

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e380cabaaeaa21cd24e31e9e41f7ddd8d1f23f3cee32d8082ecbe5675d46f5c8
MD5 39b35b831dcbf0e95ddc7292489f9d77
BLAKE2b-256 7e98c9f53e1d992d449ed1212887d09c37d04991553bd20897d99aa2387f554a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a4816114dfbe2acab46e8612e26b43c5267ab71b2815ec454206cd89e252ec9c
MD5 0dea29b9c246dbe0e98b1155d48defb4
BLAKE2b-256 cb71c30350848efb209e8b05787a52dc616aa7eb281c971c716576382f6e311b

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: processtitle-1.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 65dd1a18a833fb45af1d1454a54228296fc33c8caba2d7d709a369333ebbefc5
MD5 c955fbc04ae553e8beb27b297b51c244
BLAKE2b-256 5382a06f617b28b4c338d95635f2dca4c3c38a92b3393a8ad2fa3cbc3965f6ac

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: processtitle-1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 29.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab15a4d2c569d6315a994fc41b948911eb186b6361a4aad0c9146fbf36f3b7cb
MD5 0cf125832d2576105abf398eb5d51389
BLAKE2b-256 e2d0199da136ee005ffe2c452c56370b50b47ed44f14883379054c755b78509f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d322ccff60cee885418a044d9a8745dd99ed6672bfc3c4ddbb9712ae76b5483a
MD5 d6d65dfe0a0d4bafe5e4a6337aa70aac
BLAKE2b-256 c10cdf12a081705f59e6e2157307c5a541c9c81b6c0a030684d6c11146d8a34c

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4e9761ea7fc4305b4329a2728c93d7cfabb77367d48be4b1dd576840854db377
MD5 418cf3a035951fb353bf7020b8fd3700
BLAKE2b-256 2e786838011dcd2e3b052d903e3c5e270392f0f150d76ca29142648209ab3639

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a533709e819303822191f73f19afd398ebde26eb796170e5c9bce3258b9402bb
MD5 41796a73b4faa3a91500748203c9abf7
BLAKE2b-256 0614742f56d7360ad7556953239415dd527c95454df80716aba51a84830a3dec

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8cc65c6fccb490567b49210dc047a409ebf769e8e9e6345e663de0ed0a1ad35
MD5 99fcff90d58ec3e5317560efe40b84f7
BLAKE2b-256 5d603bc0d24ec4a30d43a8b6e565f19534987714189733ad821f14e30de44985

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 948dc6ed814178f7fe658a4e49cb0219410ce4418e9949979aba3dda35178ef3
MD5 1f50702971e69544d867d2064b65628d
BLAKE2b-256 d28f7a68b0351a2e18f8126af711e153edf912d2ee13aa10410c40715ca1b554

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c846247e07ea27e9df23de54c1942f6316478dd3122874c3cf588654ee274704
MD5 583daf47f0c22ca0d12f9637de1d9d5a
BLAKE2b-256 a032247aa3dd1c5b713902d1ef2dcacb1c02355c4067016c43baf8b4ef5028c6

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 32d7465aacf94789cad1311ebd2536c82e79c7a09c5040eb257a34beb06f0a40
MD5 b40761a4b41e29b16c9bdf12bbd0c30d
BLAKE2b-256 ea08199812b1dca039543fcd38563f5d9826163ec829f51d6e74ce8951fbbbed

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a752fbd4492b673e7a0ad407979c5e1bcd2dff10ad6ba2813d767dca3d84c7f8
MD5 5645e0b11e563a43a212a0d354d86815
BLAKE2b-256 7f3fc23462a25b6499701c8f46ded0d265e76947ec98d6cbd0540c599cfe7869

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72530d8dcf856f8907cd314ad1cc5af189aa7bc6ca3646373c0251b8e5380f3
MD5 89fa399a225886914d29f7b117a2ced9
BLAKE2b-256 c3988dfcb8d89bdeb068a5b43ffa3d32e428c7d17a4b84db6b959a0a1c88b243

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 711c63847e51ac6cc66227a8c5a2637bb1ed3552eb29b1959539bf43c10f25b4
MD5 6dd6110e9eb281e5bfae5873e974c280
BLAKE2b-256 862796bb8bde8c8fe4fbf3ad48ecf9ac00930fa090973d519f5b02a7fe2b907e

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9b69fab1d5e1d0c8a4807fce0149f471af6e1fc7c538f4248db29d76bd16f3c5
MD5 d204ce1d8fb93908c46920faa97bf16b
BLAKE2b-256 f2d553f1769d50e82e7ddab325e156fc7b652f23aa6b853b6bf5008135350639

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: processtitle-1.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a38a3ddb47b2aa40e2e14508de6f052a29058dfe3cd40492954ce39470599250
MD5 49e747a1204cf06487ec2f45921959a4
BLAKE2b-256 635ec2dd1f18ad73eda4c389a39d8f4620199dcf74b48b6ca7b68aa93003fd6f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: processtitle-1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c2470ee68ac3d1a0b9b6f96d938d10d4002364203697f527541dc1844340d5f
MD5 eba7b31165e0c92485d7706c75dca273
BLAKE2b-256 2a056926dc0598a99247e9ccd325c74b2ede41f7da3b460ffeb1990e28c9d2a6

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1ae21a1327c6d791f79e8cb77c66ff4fc5edde8a6adda42f652bf71fa59ab80
MD5 1f063685e72d9d33da52cc64756e073c
BLAKE2b-256 7bbfcb22630d598edbe57649d9ff98b220d609486636be60b48df796881d2eb6

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5c4df556e6811b61dbd02dedcaf7f4d3681ef2e50b83e2329c67816e864f69b6
MD5 2e74bb148a1dfe281da09ac5f7677bd5
BLAKE2b-256 48b44887803f59ada388f1257b61c7c1a44b3639c0b48a42569719ed8d413c50

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9524d6a6df069bf191a245987d907b35a67e621ae37650034692f44c5806742c
MD5 5e244c0f919fc12964b2af317a61585c
BLAKE2b-256 44a55cfbb15b86278c4244fe44f6434a906f00f71b115a898d22a5a16343bd33

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70901f1f0469ef94acefb329866223d2dbc7b348cbfaa6802d7ea4a00d342894
MD5 c131c5b7ea6ebf1d8648c5ca3c57656f
BLAKE2b-256 80d272fb1d13a0e4f3b3c451c4209da22a801e70691895badd7e62426cc0d0da

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f57279045449c60fa53f960071217aea88847a687ad9e45b784ea0b9c40ed8b3
MD5 306e67e2aab7632d0d2f3c9a99405544
BLAKE2b-256 8067c125834ca2e6f61bfb96906664b10c1b1c7ad73e621c8dedeabcef1d7aec

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10ee7ab89d3c58cbfee458ae3aaa7b9e3c3f0add00d537626020060fe599df45
MD5 5cb5efe986e61e3b22cd5ad04ae2695d
BLAKE2b-256 3d9782cce2172735ca52dbed818dd78063f9321c92f90e37c7e6f21d2f807b45

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1cfb22ee70166af79f23c15a8d7adeb634573de9d752701a717db1c6d2018a64
MD5 de99bb0d61dd301dfa6002a8a2b77814
BLAKE2b-256 417daae23fb0d0bf705f3b69c9f8b5d55f6ff1cb58630dcfaf40841c9710b290

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6638d05fe16986dfab8de56946d3c1b35304732fe626d126baa4730dedb617dd
MD5 828a988411b2dee7abbe72f217311d09
BLAKE2b-256 589cf4a575dbccea7b355ee918d3f8bec377ca5c6b6888bc2d7624c4477dd7cb

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65a0e3e734830efeb04993d9fc7b308a9bf8a99b29abe4b26966454f5881d57c
MD5 e806df6918cb8daeda672ecabac0faac
BLAKE2b-256 a798101d725681959b25e397e61e83e6403e0f56996c4a1cc2770e5264dfb800

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a99a3e0774d44ee610b39b0bfb95604707abf46f09feeae6151d3275437eaee
MD5 a268a947966beb1df5a7b2d247d61053
BLAKE2b-256 520d747722ad3c71deb2fb99e62145a6db12b70fb85fb69d52a1c7dcc9b60152

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3006e66e6dafa9be966c7ebfe1c8285b344f58be04d598ce77638b8efa4c8d61
MD5 eddbc9b82c592d27ee21c3b1fee4c217
BLAKE2b-256 636fa439a45c54ce17782a5e2f846f41f1d4f2b780c3f131dcdec681242a8f66

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: processtitle-1.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2627392c49b621eaa822d5c980b705def6cdf234700fa74a93d92646bf8e5368
MD5 6f827727752de21ad97fe155aab3e845
BLAKE2b-256 5ae5466e053cfa9bcdaf0770633ea55e890d4b49c5bf2d5252468d32f40b9c64

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: processtitle-1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for processtitle-1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa6e0d0e96f4b59aa35aa40b205d3a9578dcc9d78f3567f15cd7642e29427ded
MD5 68343d213e7a2fb5db24cf3396e5b5ac
BLAKE2b-256 66c0b2c0480b48e510811e8533cc26c24312df22c04eaed021ec30b1bcef67eb

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbd1b89559fd12ef499efa7deaf911d451835d89cba20c461cf287f61064c7ca
MD5 e5b9f9e7855e569fc7b56c6332138073
BLAKE2b-256 c59b9e74a80f9a7fded8d9dad56825222190374c32cf06e70eb9c98e4924837b

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 16722d135d57c502634ee6d567f6804fc3bd1ad8f20d7f1f80866898118504c7
MD5 4d97d0b321ba8599e029dc1573317e1c
BLAKE2b-256 eb54b45934c954a767c2d55487f988e04ed424e1ea1717733df786a543f398ca

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 be3e05af442c5b6309335c27840e9dafd78d119731418260a140c07e2cd82b6d
MD5 8d01693b6fc0d4e3e07c15254486af00
BLAKE2b-256 d30bd6646056374dcb676887d35eee8e2ce05a102ef87f360e37b350007ca3ee

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88d92cab390ab17fdd5b06162addc96fdcec2fbdf1bdee1225cb763b068fb38e
MD5 c6dd29ef66609ad3cddaac4fa53b13f2
BLAKE2b-256 6a4b3afad6eff4daeda648cf24e8676096a0fa6f7f585d3f2dd4bd6ad6962d85

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bb8b3745580962a777e4ddf3ca85c2b7763e4f22b4f0758ff318bde827b6632b
MD5 5b6c23c0caa6279757de346f062a9f90
BLAKE2b-256 0581f4f623097c19911f26192d3ab6b8513ca0b7bea192a78d7c4237527ed907

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89cb1b9c619bd0bc84896bd4ea3a9088382b587101d02f6681966016e746b498
MD5 efd62b416ee96a88fd16bc2d3280db65
BLAKE2b-256 0779f826f25a489916bced734f5b305e4ad7c793712c028f137e2c2ad31a8f8a

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5eebc227c1ec036ab8a8111959e5e861e9708b682e6608f5de043e6cfd610223
MD5 34c8dee2f8d8e4e30133072bda406416
BLAKE2b-256 fa5c093cd0bcda85d56a292cbcb99f6265ad0c2594348420eb986082657a067f

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db8875510917fdf891148a1fbf172d8209b82524d7cb58583f8e336dc6ea7707
MD5 6d51ab03242a19960a6627585cfdf100
BLAKE2b-256 2bed4f3132b82bee9aefaf8a4cf86d6f6b156cd481202786e7348f6937075bc3

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 640e19a00df25ff3bd8f5985cdad1e105b52c094a476514505a931aac6a40112
MD5 c34ce1465fd3e83a558081a76b2cc4ef
BLAKE2b-256 2a180560bfba108a830c661aa6a9c5af9de3ae4a193cca1f625198fd50121466

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56906b50d27e16b2e5c3e325dbbc5aa9ce1d30c0be8ac5f9fcfa01adb8b4f789
MD5 c0dc183dde97c7715be9b7aeeb9d3a8c
BLAKE2b-256 285aad48a960714e82c361aa3d244645faf3f70ef5f558fd0673a14d194856f1

See more details on using hashes here.

File details

Details for the file processtitle-1.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for processtitle-1.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2c1405f9eaf3971ca3fbb295d67a47265f8dfb807f6d54eaa3b3673b567cb145
MD5 9534c57b91e36cdd32c893bc67ea5b44
BLAKE2b-256 b5a23bc33682940c2f23362558bc998987f7af6d33502d7641ea3f56ad3db146

See more details on using hashes here.

Supported by

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