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 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, makes things more convenient for a user. (If you are already familiar with py-setproctitle make sure to read differences from py-setproctitle section.)

Modifying 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 ones 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("ooops, 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 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 globals 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 by these so any native code that uses cached values of such pointer 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 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 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 uses 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.1.tar.gz (33.1 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.1-pp311-pypy311_pp73-win_amd64.whl (29.1 kB view details)

Uploaded PyPyWindows x86-64

processtitle-1.1-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.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (27.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

processtitle-1.1-pp310-pypy310_pp73-win_amd64.whl (29.1 kB view details)

Uploaded PyPyWindows x86-64

processtitle-1.1-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.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (27.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

processtitle-1.1-graalpy312-graalpy250_312_native-win_amd64.whl (29.6 kB view details)

Uploaded Windows x86-64graalpy312

processtitle-1.1-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (61.7 kB view details)

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

processtitle-1.1-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (61.0 kB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

processtitle-1.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (47.9 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

processtitle-1.1-graalpy311-graalpy242_311_native-win_amd64.whl (29.2 kB view details)

Uploaded Windows x86-64graalpy311

processtitle-1.1-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (61.8 kB view details)

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

processtitle-1.1-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (60.9 kB view details)

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

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

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.9+ x86-64

processtitle-1.1-cp314-cp314t-win_arm64.whl (28.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

processtitle-1.1-cp314-cp314t-win_amd64.whl (30.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

processtitle-1.1-cp314-cp314t-manylinux_2_39_riscv64.whl (244.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

processtitle-1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (277.0 kB view details)

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

processtitle-1.1-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (276.4 kB view details)

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

processtitle-1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (269.0 kB view details)

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

processtitle-1.1-cp314-cp314t-macosx_11_0_arm64.whl (29.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

processtitle-1.1-cp314-cp314t-macosx_10_15_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

processtitle-1.1-cp314-cp314t-macosx_10_15_universal2.whl (44.7 kB view details)

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

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

Uploaded CPython 3.14Windows ARM64

processtitle-1.1-cp314-cp314-win_amd64.whl (29.8 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

processtitle-1.1-cp314-cp314-manylinux_2_39_riscv64.whl (237.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ riscv64

processtitle-1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (270.2 kB view details)

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

processtitle-1.1-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (269.4 kB view details)

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

processtitle-1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (260.6 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

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

processtitle-1.1-cp313-cp313t-win_arm64.whl (27.5 kB view details)

Uploaded CPython 3.13tWindows ARM64

processtitle-1.1-cp313-cp313t-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

processtitle-1.1-cp313-cp313t-manylinux_2_39_riscv64.whl (244.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

processtitle-1.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (276.9 kB view details)

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

processtitle-1.1-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (276.5 kB view details)

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

processtitle-1.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (269.0 kB view details)

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

processtitle-1.1-cp313-cp313t-macosx_11_0_arm64.whl (29.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

processtitle-1.1-cp313-cp313t-macosx_10_13_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

processtitle-1.1-cp313-cp313t-macosx_10_13_universal2.whl (44.5 kB view details)

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

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

Uploaded CPython 3.13Windows ARM64

processtitle-1.1-cp313-cp313-win_amd64.whl (29.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

processtitle-1.1-cp313-cp313-manylinux_2_39_riscv64.whl (237.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ riscv64

processtitle-1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (270.0 kB view details)

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

processtitle-1.1-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (269.5 kB view details)

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

processtitle-1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (260.5 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.12Windows ARM64

processtitle-1.1-cp312-cp312-win_amd64.whl (29.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

processtitle-1.1-cp312-cp312-manylinux_2_39_riscv64.whl (237.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ riscv64

processtitle-1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (270.0 kB view details)

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

processtitle-1.1-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (269.4 kB view details)

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

processtitle-1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (260.5 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.11Windows ARM64

processtitle-1.1-cp311-cp311-win_amd64.whl (29.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

processtitle-1.1-cp311-cp311-manylinux_2_39_riscv64.whl (236.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ riscv64

processtitle-1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (268.6 kB view details)

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

processtitle-1.1-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (267.9 kB view details)

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

processtitle-1.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (259.1 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

processtitle-1.1-cp311-cp311-macosx_10_9_universal2.whl (42.9 kB view details)

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

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

Uploaded CPython 3.10Windows ARM64

processtitle-1.1-cp310-cp310-win_amd64.whl (29.0 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

processtitle-1.1-cp310-cp310-manylinux_2_39_riscv64.whl (236.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ riscv64

processtitle-1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (267.8 kB view details)

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

processtitle-1.1-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (267.2 kB view details)

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

processtitle-1.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (258.4 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

processtitle-1.1-cp310-cp310-macosx_10_9_universal2.whl (42.9 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for processtitle-1.1.tar.gz
Algorithm Hash digest
SHA256 e2c9203d14eaf6cc1e357013e6021512d7bf82ebf16fb150f36aa966d1a85327
MD5 8f7f4897f17e1201197a0d63c055559d
BLAKE2b-256 173360556479757285f1fdb3d66cc2be5e238dc652ff8051ac174955b21a54e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4bc73e24a184e5bfdd613e06d1ab1a99e4cbc529fa2f8fd57d62279ef11a817b
MD5 4289c574e978182f4f8630927debd352
BLAKE2b-256 09035008eb7468618023dc5a1ffe1dd3e7c5317c5e64242075b93aa97816e17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5919f5b45e5956f8a946f32790936f4fd49e868e541e327f2ed4860c3266e69c
MD5 00d4910385ca4a59a122d557c4d5df5e
BLAKE2b-256 d7bce63b341c2eb6f2f54c973580afaf0f01a04d8743878bcdd8f5a534e49b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 581f5e31b3e25eca3c6ce903c42104cf273864ecffafb4ecabc2d873db6ee5c5
MD5 e55497de9a2a951816556a91c1e85bb3
BLAKE2b-256 6225a99f764761f60d69ee10c3dd564f16f93f08caf2a052efd1aee7b1d8c41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a01176b9587ecb5ceea13468032af419918302b3ee7887b924cedf5e109cc8f1
MD5 562784be9c15036933bc3b4e3c05a716
BLAKE2b-256 6061855f6837bd9aae0e646c3169d2812a1a8eb1c8cf1e9f0749c2a2b286707d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b0c5ee824bd4d6728040d723afad585e81cb07317dd0a0fbe98cfac87f78685
MD5 7678f3714397f7aa126de8b00f239cb5
BLAKE2b-256 85be50a9b0fee8cab45db29ad386492c09183dc088cea2d3bcf5223682a518a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4addf187d2acce62274558d224564571dfeb7c81ad09c90a844e724dee71fc9d
MD5 3f54466b731104005e1cfb13cb3760fb
BLAKE2b-256 cd329177bdb69cfb59eac6156250698e7123b6fe7f8c4467500e156aca9adcca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edb9ca3d120b1bcf2f70128d2c1916c3932fceea6ce1c63b726ef98d701b4140
MD5 d2bd66f6e75232d06c76e48a8971fd24
BLAKE2b-256 e9528600a93757c3d927645004fe1ec18607629d89799475fa9e0bd1609a3449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ee27c970a26992c1c47ac2c1178c166ba87fa466b6eee38daece96314adcad9
MD5 8804391c0a0636248caa2cb059113a94
BLAKE2b-256 8bf9219e4c02cbb1d0259c25a822b3fbbdf612f669e9403a8ce3b7934c3d8afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ab6b9015be3965a7420de130867e347d86b6ed9348e693c782a9aaa8fe49c2c
MD5 ff6a45f45fbe61cc065c2404bc7173e3
BLAKE2b-256 ed6ad2c53d15fea7f3a3255f21ab8cbff9fbb45f322a6272a1312630e2c29c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c96e0ff1a0d613d0d45daccbcdb41a5435e5634c481e97b53e25cfd6215b050
MD5 ecc32674d9ee1f2f52acb117587a6834
BLAKE2b-256 27b3783aae961da6f5fb2b91c09b2831ee9cfe64e83d750e7b23814ecbf05b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 7c6482368293cf1da08b970381157598109aa0678522f2bc6c018b320601d0ef
MD5 c6170030360e603fc6804406cee308df
BLAKE2b-256 755bae396cada1c26131b56fad220105691a4958c9c094d99c153275e1739509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dfc1f24e9ebcaf879feb41d9bde495606837859a7162f4de0f34a306d337f16
MD5 efb209b601d8380121291ec65180645e
BLAKE2b-256 93fcd83fbe933c78afe16a1134c818b576b297a34a309fd198f99e65a1f28937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67a992cdd6cc06e356b4b6a1147df10657b59375ead16f30a9f545d58769f984
MD5 7f383338efe1985ed6c2ddcddcd1a6ad
BLAKE2b-256 636a69f783a8b8deb108f04e8f144b3faa3a5638e51d7641c36058234d92a28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26148ae9ac0631e23caee6743f93a5c125a42d87c74d98022eb586d989faa769
MD5 751d5fd575f77ec372edf251710b05ef
BLAKE2b-256 4486adb1d36597c55d4f0e6bd6402bf0bb246f3afa7d1214f9d3e18d95ee18ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58dc9d4798a8e687316d8fe0980c3f8729991b296e6e9f70afc0a97be6512580
MD5 454e3369f1a623bb785496f72fb389d2
BLAKE2b-256 526c88f44b10eae772a0af832b1267ce0c4d40c7a070840410d3091ca8f45b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 46f0795a3581378e3c181218c4d98438a1b6dcfdfcab6cbec252697d87c1c2e2
MD5 7be0360bdc4fcca36e9193423e571199
BLAKE2b-256 cdcabafec4b57f44c3a2d298ec898ed24bec0465a76e99f18d0758b6ad91b7a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e151690d187f087f6c84afc35ad374ea0f74a083df43d6959d2ffe2f3c072ee7
MD5 726c0ef53e691beaf5e6ec8ee12df004
BLAKE2b-256 87dad83e56a6b16dfd284efcd8078a26411e7a435f84b2f064661442c01d1269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de6837548b2f85625e00a3b7a5f86d00cdadd9c637f025c1bc079449df674d42
MD5 77e981e95405372446a2f9c275184f39
BLAKE2b-256 b7d437143941ee818d5c1eeebd3e04fc82dcaf266f8eab11376e76eccb7a6aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df055466dc4c5a979b56a3678fe0a53f549e5b0417c11696081acd57218b650a
MD5 6c0d5539d365573f5b3b98ce7b972d58
BLAKE2b-256 2bfd7a2b607b4aafe18f7df1af45587c780e1d5720b21c80b36c522af272ff01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ceb1d61f4d499f3a9ff7417e32735b6d78e53c5ba3015d5b67acc07477da1457
MD5 4effccc9d9003dc6d946abc623dbf1a6
BLAKE2b-256 e19811150b8852604de14673a54820cfe5744ccec672ad0c0ba01026ceead923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5a9d9db703e839e78dda7d6a8e7e598908f923c411aacfb3de3506f4bb924383
MD5 5b1f4882f515ef41fb34ce562abf31f6
BLAKE2b-256 4863ca61ee022cd9ea1adc6a275b087430223ff2a1489ba1109ffc89338b443f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f29e270c9f7da8d965236b85739b6b72fdfa27cb09898fde788c81881a6d7caa
MD5 f1e339d6811e7db188ff8581884a49cb
BLAKE2b-256 033496c52bf7371d324bdbeeedd894c9f55d2cb38cf8162fbe4f61179acb94f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3872bd4c922f1534cf987206099b1e29a9e6a64edd520740f4a71e895ad88955
MD5 945ad8766ad85be543e9017fcf24a12f
BLAKE2b-256 d0286230072c7b7b8bcdd22bedee72ca1d38d5a1b4526747bc42fb0005184733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 09956a30529da076773b30c34baeb1fbe7d3b38d13ea80ff7069030812d10c4c
MD5 f408513a3df0ddbaefe588db9f74181b
BLAKE2b-256 ef26436111647b6e03638416ed487a434616727a7aa4d94e3d9c24e2b5e2c559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b20a80f0a09bbc0b2b71647b542acaee54ef626838adb46d5aeb6274e6e8b21f
MD5 74b58a4dc2715cdd55e8f391b581b889
BLAKE2b-256 68e78f94361321e04f7214af1e63d69bd3ba06573110a5058a351e8b0fb30cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72f9747efc3eeef27a1a44af6ff907c122d09d16345afdf2286834110c6a7eef
MD5 d32b4aaa0c7bd0e819d8f58720b3447c
BLAKE2b-256 db620d221120b1f9392f9baf71976ebd3e86aa45a589dc843224ecf2204dc78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4d22f62de476f59760b179db72f6b9be8f1ec9f47b8d3c69045596b93da205ac
MD5 34159f75a629a56b5c208c9a7997900f
BLAKE2b-256 24fd64d6241a576672d3658ff12261ab7a80a092a94cd6859f5c3bd5a944312b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4962df1362246ae728bf6de94e29f004c30c1d192482e6f89603eaabadfef3e9
MD5 aa26971e58b39ccf9bfcc131d532f589
BLAKE2b-256 f6c00b81a9c74caec53de8e2b8aa117ed98c05470d6bbca5b96d41812068cb5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e1233be7a6475721685a02a0ddc8545ee037d73a2ce6b947c0cede9e0b27e6f9
MD5 1cf45b800ce9e5e0b7a889327ecaafa9
BLAKE2b-256 8330ff3eb72e9ac03de2ae2104feaa06bba3520087a49ca3190c4ac460b8c30a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d96a6928359a700820212c61375bda9045fcfa978cba42028d4f0170fed72662
MD5 f231daf29a1ceac11f82f1bb5146fefd
BLAKE2b-256 679e67c6c0e764bdd70c3bf1af3816b0af121d39eaaf231d03626aba93bc32ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b128bebb07dce7a7e8be0267b084ea2e8288453e2143c02da18724914b14f0b
MD5 9e0917cc08ae857af492659e8bf126d6
BLAKE2b-256 958de8edc098f5b28017913d3eef476856a867228f8dd2a50a698d8928f5d367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c2afa5223c1212b4c2946d32c6376e9b78594976392165235764033518643e7
MD5 65d868090f47bb5f153d133e2e2b394c
BLAKE2b-256 457e2d89d4204ae0bbb332ef48d98c2eb955cbcf829f8725c1b7a140f982da60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6a17e84ca1777348d39eb73a5ad17b4cb8498cd56246968b8d75a7a1c06d0163
MD5 062bed380dc55518acf945baaacccf0b
BLAKE2b-256 027a705942d5e2e987da6b74b00091aa4e77dc983a685bc299688cc3ddc86d44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 38d730a539dda8ee49b83c7659a836e2dcc30ffc0cacf47ed38246ef3d7bdd23
MD5 4e0976b315079ad196de4882185d65a8
BLAKE2b-256 ae7ed6a7a031ec87112da159d3d42462537383f7d66b9acb3df76f015f8f935f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 29.8 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 632cf5110efd93be91d668c0282b3629d97ae1c3a1d67b315b0de9f5520e05a2
MD5 1563f1010da1c7bb2a3b0fc9d5c52dbd
BLAKE2b-256 20b51146d020dd6389d038da486cfc1060489f0b92519e995bb97ab01252bb78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ab8988edb733cd5d3f8d199e56968956052fb9a41897b5a79ee66790613ea99
MD5 3aeb7bbb303b91f766ab862ad660b6ba
BLAKE2b-256 4f37da867a1e35588d0b83268fcef0205fda0ef09f61551afd81f6ad327dfd88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 815977ae613a6402f89c1b446c5310134222c930b2450fa9fd173614024c9db2
MD5 ee2a5f1b72d180007d25042b0cbd2dc8
BLAKE2b-256 37fb6770332499271eeb79df1cc70db8d96a049ef83dcaa69fc85ac8d99a71ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8c7d1db9293919175f1886ef89f0546450bfbf892fb2691c87bca0138403ff40
MD5 34be740bb34078acd639c215551452f5
BLAKE2b-256 52dee3c53566efa7a1836ce1193803e263399719cc736c6bb7569c4ccc5ad9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8179f0583b3dcdfc61b4f78bea16779705a37039faaa2117c84d6fe4a24ed02
MD5 6cda5c608ea9897fbf6c1461a7284a5b
BLAKE2b-256 f930d9532ca042abcbb5cf6f398a84e81a335e49b044a3e6b7935578d7c9a78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7b3b4240f5a4f4fd173c7bdffdd7a10b90fb977a02101e86bc31309a7bd87385
MD5 eb9de4e483c3b5dcbf65fa88b1c48096
BLAKE2b-256 ef07722c29917829657a1d27789d5b1d53b949f4fb97373eb6f03676e906652f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 949c130b4a71c960e3a470a676451630b0b70af2e4ec29b4d55b271e4e3b8c65
MD5 33a668fc0446a92698891338baa0b648
BLAKE2b-256 805a7b3c521e20afecd505841237a2d52511e1f18b716584c708bcd0e3b2bbb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b5d06317408f5a0bd9803f192083021f4ba17dc089cc9526d09dbfaea7fb6892
MD5 d57c506e233543668441cfdf3558e113
BLAKE2b-256 53d6c358a1d2bc418265c71666b7cde8e594576620ce203f34c703c98625f95d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78cc6df93e4d2c500fe9c4196b69a8049aa6466ae4a6efaf794a66c8c3a14a9a
MD5 4d2bf29e91fea848323d1168f0e3c348
BLAKE2b-256 22ca1b491d8ce36084b647c028e5c4e6eeda98297496b776a0cf86ed15287bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8da0694164c3ddc889f2aa52a0e3eb825a20cab932c722d98dcbbf88d492522
MD5 0544b39d6437bcea7a370c2e6ade7cd5
BLAKE2b-256 4cf80bacf0922aa7cd6ab5e01758a96703e6b947e291d91585801950c04076f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 db574935a2210150f312d81d1d1869e0e559064100ece29c3859a889f9c94f27
MD5 01def3e46f02a78fefaeef542341a65a
BLAKE2b-256 544633f479e13e75edbc5ccef3cda3dcd41e983554ae8a2ee1ef799e3ad79183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5eb122f98eb11865f7a747626a418393824169254b92fe2ff565ac8376c4689a
MD5 a9b81141b362db75b1558fe6242630f4
BLAKE2b-256 1dc212d0cd1a2ce351760002f2a2c9c1dfb741752cf24706cc465853c9ed96c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 43bc67790d5560a5a6751f8417a9451e896038d94dd6c046427ec72e01cc5c9a
MD5 128c77532781c839cbad462974e75a02
BLAKE2b-256 d75ce957d39a9a0350472259babe795ad4d116bb70a5bdda9470e55a8449b60e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 38f17f699e123eb5322b2896a8128ae736947fac2788b6792b7d6399413f5322
MD5 609ff9fad4bbb62fbdb36afb3dbf3afa
BLAKE2b-256 7ca8ea17131f35e6e2b69612fe61103aa996ea507ea3689b923c8747c3b5e7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e13866c007f8eb888d5802741d5a25af4309e423cc8e90aefa5021b9339ff291
MD5 9ef8c4075ad12305f14e33c7174c0579
BLAKE2b-256 20749f27b0b5d3f92373cc3575c1467f6c0f0e566493024f2342751388a62d2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f252032055b0a6569a83bb85fe544d25825ccadba80fa5813b94d2fae5a1072c
MD5 1a7066c6dbd6b90e8d0dfd0fcdd69160
BLAKE2b-256 a918e903813e0c4150cd82273806b8590a277cf234dcf4a284181985ad8dc472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a2ff01bc7419e4864b313baea2d90095ae2ca9abd80eba38e7abe4f8b63adc4d
MD5 1397e54a73049575841dbad867a75ebb
BLAKE2b-256 256ee34782fe793804d6fc0e7047004fd1619254578f23f721c5255c9ea4b43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8d5935ed946f8a7723a696f6e9846a9f2e55ed9ea30e86fb38b9fc99ca2158c
MD5 49e0a6f2272ba6571cddc6020bddf393
BLAKE2b-256 1a5d28c49cdba8b83251f5416dbc89d2ea23b84c42633c54695f69bed6779d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1684da9f4ad535effb069132af406216fd6d074ec68b1bc317d049f3fe1fa1ad
MD5 a7fc2e67234f6b7a0655300122f47830
BLAKE2b-256 d11ad346a75b6d5df7862a354431be33f7b5e52c46296e489e7fbf62c822597d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51ec71377dfb4569153c11013567fc29e6e1476270e656bc986e9d84217486bc
MD5 085b6512a92ac126576a7657040c8166
BLAKE2b-256 328f79df51dacd2a077a04d0176f4d0d719ae7928104acd3a0100b5d43001525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 773967d364fdb1d6d94bfc01acfca8b60c60c5493ab0a7a8e8c000ef586b3830
MD5 ddee3f072fee19d06a767c1a86357ac7
BLAKE2b-256 0ec80e9d6b7a320e65aa783e4a17dbe0a3f6f578be14486b93b41b3f47623d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 560dcba2ee11ac076da2d077e19663ea43fa200373422f0598aa8145d2a9fce4
MD5 e44da37e80683cd206c46f09603ccf74
BLAKE2b-256 2b3b0a103695c57eaeef7a4d873351a12b1caeadf130e216f769f986f611f3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5389b990b62e499e1f4d558ba82de229940201826ef0119beabc371c601575e
MD5 c0789474248a405774bcf101247c5df9
BLAKE2b-256 85a936388b7d7bccae8aa6dc1a9e732b5fee57f07e5040b2143c0c71c5d3a39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6532e02edc3f725303d447698d67c0bb1025aaf51c6cea05b00803716d82f35c
MD5 34bb77479cbeb3d05e4bb59fd60acd4f
BLAKE2b-256 70016a4e1f7e58b00655fb0f23dd50b9d81fe8dc0e7edbf324fa1cc6e8355a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 903053908d98567eefedbcce484e27cf7057a84cb146a8390359a8d68c94e2d3
MD5 2cd0c783fb7e04d31b6fa4f813a25f06
BLAKE2b-256 ee55cbf58675a1eca31d91dc8ad74d4b48cf8231b92d9a95ce892fc2aacc9fec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8f6fe251c4bb2c355e8a55ba2f19086b392842063235f87154d02e691db77278
MD5 098ecda8764459e60babc022f5eb5e19
BLAKE2b-256 ae68dda887a4ba523a30fc1c232e0b50550475926c3668d0559cf36fd7535c68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 29.1 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d5227719598e4ec8cf0c2c2ec57f30b658b38f2f540955add2c69fe667cf0e5e
MD5 b3e378ebcf2ecbe049ccd4bb5b0f349f
BLAKE2b-256 16f2ce5dad7c7c2588129ceb9b40b33c9e9248b7e20721ca366b41b83d54e343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92c0c011e6c6d88700232b01526f06f5ed0f54239b60052a3254112bda9cb7cd
MD5 c517b153bdfc206376b6435e90f63f89
BLAKE2b-256 9b163ad32e8a3231cf8400238a456459e71aa9c8a1f0300b8a155f6a4e6ec9c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 de640b96c7550fcb4b3bcff76f0c56d749eb038e0b9662baa224fde0eae9adf5
MD5 9821a438f460cab07c91ba23f66a8316
BLAKE2b-256 9ae6c80b6df29d639f10e6b82308e8fb2e2c5abce213cab3bfea19718f6c9eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e53b750f3a4301370958e63049b0add7e6ca6a86c652b3e568f587508c4f8ef
MD5 7912a3ca6b1ac8d34f2e0271e2de62c9
BLAKE2b-256 938406029acdc7b49272739eac82763a9a5f340ce800c7578544ad4f10a621be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5e02c0ee90c83cd99a24d46a26154cd4bedf96471e7d641533f8d4340c31455
MD5 ee805fb57f292cbbf6dbda134e61c863
BLAKE2b-256 b889bb86ad3a6624d28597a46de914f9254923b065b920db632a0c7a73bb5059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 44c1e9e29be79a4a15ae63e8d37e3e707e859a88c29fda0d647e4fac72202c52
MD5 f386a3a2a6ccd8a06276b597341afa13
BLAKE2b-256 3c71da53892a3a59c7dd11c8b53fc28b6be2ef154edfe68676b3a8daf27acf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d44243d3986c3f730f25dc31d21ce7ff2363d3c2fb48f983cf5343e5ed865ff
MD5 17a2b1526dfbe8b0a9ca54ef6d851225
BLAKE2b-256 997e6257d3a3cc0141f4f8257604d35de042d2d698ff9049fc0150ddcfd00585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 56014b9824c9db522b5e8d7b76ed414d64ef49ae41b49584a4acb9c2503ef9f7
MD5 299b28b8edd97036dc20b4634e7a52de
BLAKE2b-256 5bbf2767e5f795cd6a6fd4f0ae40d7c29943165d4287f82b17c1bfeb654aae54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6239ed41d6f5eb06d6f52e5bd8d14575193c7aed2b96116d909c37f56a88e43b
MD5 fa0fcab195b45960667064f657798c2e
BLAKE2b-256 be7944d6f07fa36b7c020e65012bbf6bda0a35bb4422297044116ddc6add734a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e76f5bcec2531f67eb91fcf445cb397202eaf891cffcb1dac942acd9bdb93881
MD5 d69eb7d89c653333bdae23c78e939266
BLAKE2b-256 52fcfcf02a79fa4d3195d94f6c9673b6fb438f3b80c98a0cc9560f0b884757b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c91de87188bce7962de3a874bf933d9741f12a4b548ab8dc79a70bee43f9cde6
MD5 3c85afc428a050871c3bd19a228a2e31
BLAKE2b-256 e1c9d28d78a10f06882edbda3b329aa5ed1d2490469d8e69243fc506d140fb16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 aba1240afce5b76e5e18a06550cabe8b7f75c8f127d40f5de0640c296686de6a
MD5 21f6bba8d23ca6666a08dce3e7ed4ac3
BLAKE2b-256 0af938a8d3c1e5eaa30338a4492acaf6703de1e6ca2221a8605ec17cc915f74f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 351d1e84f9000f8eb94180a10f43373b33d76eadbb3398d226a9107a22031187
MD5 37bc794ea47d46453c82582cdaf5a089
BLAKE2b-256 f08aa72b98d8d7c28ad5bdcfdef1fb696ea570315ee72af6a621d58c1f981bb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 29.1 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ebe90bec20af1a43b5cdeeecf47ee77222ea249f7f39accb710cef91f9e557c6
MD5 ad76876350e416649b8503856d876bd3
BLAKE2b-256 42883944ffc5e9fcf6861dda0c94113ba4d50eb3eb0cd9808d827acf9f8cae4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78fe7f79d9782191602a759ade28643c01342fc2d8f325b6494f9d8cdcdda54e
MD5 c276c3696edf7bc95b76c98d98e936ec
BLAKE2b-256 31d3bab40d38440ba9c70bfdbfdd6c6c4394b52a53cec7fd0c7290f492c84dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1b2ce555dc222e62d9f666ed54250f4a1cf07687a56d693566750553d396e5c8
MD5 be77103449414a848bf0fc5af7049428
BLAKE2b-256 e37be714a098e910b801b6e96e95643a266690fffadc96da382c72736801e956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 320ca964cf63d2eebf3e8caf5f0fbdb633598cabaf80d2a1d9e18f29b0980cbc
MD5 fbea9b20ad351740a172694d52234d84
BLAKE2b-256 a341c63cd589608a0057b7175e54c181e9a5953a7b3677283b5adb40e0f98b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c3302b97a2db0dc30cbe34a46616e4b9c0e3cd36bd67ca0217d965204bbd5a6
MD5 83f6ac9a4e712da7988a16edd1f34a62
BLAKE2b-256 e356ade945df325445f16e8a93a9578a8e480596c80b480690e9d9dbf2071bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ad537d1554b45ee10d4106c23c3490536e3f953d617c2beca86d7d55c8e44f66
MD5 153711ad84c254c5ff29cc2c5d5a7485
BLAKE2b-256 04edb538824c3997e882a2b553ae1ef379afec357732af5f2341fe1b4107021c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0decb61c6d36d89da38a6bf7c279f8b37fa5a12884e1c60250026f3af97bdefc
MD5 a4d77d8e38104ae2e7b779785de74f21
BLAKE2b-256 fc71d25248bf82a19fc9da8805e735a85ecb3702a144194ecd56d453414c443b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a11f31c1b261599eb1d03f73c9887c560e94d55623115807e56e9cc7fecb6c2a
MD5 490f6cdd0cf43557f5a7d4a0b3722571
BLAKE2b-256 dbeec54dc554587617cecb9ece0455f5469e8d3a1281fd093605ddc4a8fb0e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d68d9514ebb2a84ba4578794d60041b683773dceb1e7c10453ee467a15a0f830
MD5 17599593e36f6e2715b2dd4adab72678
BLAKE2b-256 f457d6d8ca49b8082d6c4ace70241b36a5a2164f957c984909aa563d56bb315a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b803b2d5f1d978e1bbfe1c38ab04fd5778f8ffe4b686a0df2fae25b8e4825d73
MD5 0d207a2ed4d9b3e5acedfef2c34ed357
BLAKE2b-256 b424c0962ac35b3feabd38f805f7a64d1b20ac9bec361af02aaf7f092496f41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aaa404a4b4f94fb7dbbe1e732d044e20f11930072072bcba6f2aed076c5b0e12
MD5 33f3e15955ed6fb7bd8754149e7c2445
BLAKE2b-256 f38199a1d96b0aa2ef99ddd321d96a221853fab647df620519a2ae2655d53036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 62823a0128ef7bbb1bc7f5416de20fd274631c0299fe7273a82bc7ea52d6051d
MD5 4d283c89351c8acac87166157269019c
BLAKE2b-256 15c2477579438a1958c8cb409b764537b02cd20380e1342378cea9ba5f085ec4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5166c29f679ed4ca8af958999937d83e7cac111adaa5527295a13b2f56a60ad7
MD5 cf2f9a51146f5293b56ecf38c625222b
BLAKE2b-256 f146b16cb2f5542599d5aac132b4d8d2fade739b8782c947ad6640fefbfb95a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 29.0 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e36b03176216b0e51cc30816bd8ac939debd2f44b4b5f3455f58f8e141bf24ff
MD5 e68520f34e3cf00638f115fcab4f2032
BLAKE2b-256 f7ba2b71e190179780fb91559e2418289b3aa26d19a92292a9eb3c272ab5287d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c725fa3e9a7d2648362301df4487915682086b1519a2aa9617a06e4c6056da5
MD5 4dd845596f6c9f296d7d20fdb62c1780
BLAKE2b-256 1cba41709f7407604dd3a387172be4d1fee2a964bc8250f6ef012454a6aa6ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 427ab4df3143f337fc1f1048d9e4a33107c0a63ae508f66a7babd997b962f274
MD5 27d69ce6e210fdabf8fab552a128361e
BLAKE2b-256 03428781cdc4ba913b0fad1a312f5efa742ecb1eb91f5c02a9bff35d3d217ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 890834391429b6293c09f6f54b58b1d533477c9755f8e1481866da527406a704
MD5 1a662a0d9e785dc49c7d01ffcc12099e
BLAKE2b-256 9c6a55c5223122ad1b6147158cd8165647ac4dfc083a93b16d27a1ee7263a28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b269bc2c5cf3f3e59915ab1969d5a7fadc426393c597cb2a4791d65f0b85b429
MD5 0fcf6ece4c7360ca5b4e16e51f777e8a
BLAKE2b-256 8adeec6222e384d94634fa046b5c13f7713d7963924d7b897e5c06e111ff1bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e4d7da41e20d3677f981db31f4eace6a9fb23307f009fa7f5896dda6f55bc712
MD5 6b57770997dd8afcf082449c6390358b
BLAKE2b-256 1c367d5d690b132f8eb687792911e5eb588a3a960f70486ed8af513efe566e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2211c81afd5d6dfef0b358af07061df6749d8e331b7feee7d7d92c993aac69f9
MD5 0301e06bf0d147244ebbb73606e5746a
BLAKE2b-256 cbf1ee7f2999efd6527d5738d5d83603231620a89e650c177b1912553e98630d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 350bd70f29fae4d97d1d06ab6cef2851f4c452cb6d44c908d620b0bb062c94bf
MD5 533530188c045895338320961ee8a8c5
BLAKE2b-256 2eebd8b355caa654564a5c419a125b67864de3f65ccf0aad9a05694c92245a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7675841765c029e4e9e3da61cad8758ed633a80f526582e2649f50b7810e5a6
MD5 8e46965beedca22d4faa522d40ee1122
BLAKE2b-256 b5764ca7210e03c2158dbb42addcba4e010ec41c876fc62bfe3718ab48ee6dc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fcacd6fd1428e6a6a5e8ca2e88efbc26b13d8962cdaee643e7bc0fc508d9ca1
MD5 5fecef42c0d96b6674ab99146e8f3a82
BLAKE2b-256 cd9b49cf0d7bb18ef808078c0424548c9a547e7900d3a6bab8cdaf4594e09edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18f42db22ae4b754037ad09ebda1e44cf04ed163e058c14753d06a0a04874dca
MD5 af32164bc405c81e40bbae486404bc84
BLAKE2b-256 4dd6727794b70f8c5dfa5400ebaa3f5b5c6d70d6c3f525f273b5c4e9d70fea21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0983d0d43bff5f64581ddb749b91eef73ab68e9ed6b677f3473875a3cecef179
MD5 791824c15173d9ec6035f049054f34f0
BLAKE2b-256 01e488fd621b99e7dbe98e2ccac665f656f7597750e5d9bc01928f95a2663c37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1891cedc59e1db22b6273e2bb14507be03fcbad2754f9235cf225ee6a8efe18b
MD5 257b1dacc9ed3383a809415f1c45f550
BLAKE2b-256 52687b4d22869d6e88b7d70ffc16ab3e0d447278008643285acfbfb39a14690e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: processtitle-1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 29.0 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07defb778a9f65634edb8430b78767e87b86b8b55c17272b1d450d89386fddcf
MD5 8815a9bd1d8b2225b1cb81081f697f90
BLAKE2b-256 783565e0afad1044d5bb32f44442dd024d3a44843c30d1828ab13fba773f9318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adbac371668a8aafaeb0a55a58ee777764d4b37fb9297e560acf1e48bd2af5f7
MD5 07cfe359062e73d1bdaf2794cac0d683
BLAKE2b-256 91707878f2d4463eb3f2a56c9ca7ebccfeacb4382b540616a1cd27a5179f6367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 eed36e7c61fba4c891abb28f797559f31aac1d4577612e0f938f919ea29a56b2
MD5 57c1b37eeab4391fe12e854bfda2a056
BLAKE2b-256 40e43642f180e538af5d756c52b4180a4bd4f853fdcf8d731c31fdb7a435c40a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8d16cab4ad8e3d2b1bbb3a6245b5732c4d4102b37b3c2f6177d43a0f7e38410f
MD5 90c7f77b7c055f2810b2e90c4bf13ce0
BLAKE2b-256 282d856d4f4a4d6030a348449dddea25ba0c15c79367e697378eb32c85220901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88ca72c8b04550753e8755cc5a7dbfcd7914ef50759de910f85121eb8a84c535
MD5 a8f35e401438952cafe0420f18307665
BLAKE2b-256 be91ae8e63deeb8c085e1bf7f2e16e09883f66d24c6f537fb0420c4229497412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ad99b92bf478ba4818e08b0dcbf13c4205f883b261f319ecfe343e3c668011f7
MD5 0b05d93143f226611957269e723fe2b9
BLAKE2b-256 dd65ac23786d34dba1bb789c6bbbd5680855f054f11ab46586f9e780c6936f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9d2b0af2e34ebe1cd674e0f988da848ed33cec18b9997cdfa1a242f07edb0a1
MD5 02d088ad1f753bc3910b6767545d0849
BLAKE2b-256 4752acb2cd7c25ef72df8683ea7cd1e3886bb53e4d13229f66a0f33c22b1a281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dcffce25da7806f0498ba2bba6e1db9fb670ad6d148af5289dd450c17943c387
MD5 a422e33df6ef6c4c2b6b579deef772c1
BLAKE2b-256 9060909de0637cdefe243180e9b8f11d708dd56044954891a423c91f00f7c055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f782a1142c07ea100fcfbe748691a7be9f93217aba954978e0df74fa3319ba9
MD5 34707dff3c798a7aba124cc989f882c0
BLAKE2b-256 7a434a449bbae333edc74f52d2e2e2ad06ed02e944a86a3a56c915d43fc6782a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4edeb9fb935116f0c18409c0f97562cb8ec5092442b9b832bb0a58049f1c87fd
MD5 5a1c17048c3bc28e26d2ac0e57d72459
BLAKE2b-256 1c1efba265555ad01a92cc1d4e383ac4a940ce44ebaf5f452ba5ceb5dc50e400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d41fba4af5d1d52687ea9755b324c0ff64f16afd34fb240aade2bb278bf8e53d
MD5 538bb8133daa883ba58da2dc9794e3b1
BLAKE2b-256 f0334499b11314132f8dd6f4b569e51491c0e294c281ab2f8137ae60aec3f301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-1.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2504660bd33af67f71cfb70c71bd6aeeca5826e076937166b77a943cb7bf1e8d
MD5 1247d900c2d8a719811c908d585d3fb2
BLAKE2b-256 90e03c39ed0a1f5bf92bcfc1225f343cc819f08b3997c926208559cb2e1aa450

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