Skip to main content

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

Project description

processtitle

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}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
  • 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

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. Note that on some Linux variants (e.g. Alpine) the title might be prefixed or suffixed by the original process executable name. For example: {python3} your title.

To change the title, processtitle uses the following methods:

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

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

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

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

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-0.1.0.tar.gz (35.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-0.1.0-pp311-pypy311_pp73-win_amd64.whl (57.0 kB view details)

Uploaded PyPyWindows x86-64

processtitle-0.1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

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

processtitle-0.1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (61.8 kB view details)

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

processtitle-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (55.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

processtitle-0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (57.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

processtitle-0.1.0-pp310-pypy310_pp73-win_amd64.whl (57.0 kB view details)

Uploaded PyPyWindows x86-64

processtitle-0.1.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

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

processtitle-0.1.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (61.8 kB view details)

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

processtitle-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (55.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

processtitle-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (57.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

processtitle-0.1.0-cp314-cp314t-win_arm64.whl (56.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

processtitle-0.1.0-cp314-cp314t-win_amd64.whl (58.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

processtitle-0.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp314-cp314t-manylinux_2_39_riscv64.whl (271.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (304.9 kB view details)

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

processtitle-0.1.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (304.6 kB view details)

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

processtitle-0.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (296.9 kB view details)

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

processtitle-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (57.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

processtitle-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (57.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

processtitle-0.1.0-cp314-cp314t-macosx_10_15_universal2.whl (72.9 kB view details)

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

processtitle-0.1.0-cp314-cp314-win_arm64.whl (55.3 kB view details)

Uploaded CPython 3.14Windows ARM64

processtitle-0.1.0-cp314-cp314-win_amd64.whl (57.8 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

processtitle-0.1.0-cp314-cp314-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

processtitle-0.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

processtitle-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp314-cp314-manylinux_2_39_riscv64.whl (265.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (298.3 kB view details)

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

processtitle-0.1.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (297.4 kB view details)

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

processtitle-0.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (288.5 kB view details)

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

processtitle-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

processtitle-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

processtitle-0.1.0-cp314-cp314-macosx_10_15_universal2.whl (71.2 kB view details)

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

processtitle-0.1.0-cp313-cp313t-win_arm64.whl (55.5 kB view details)

Uploaded CPython 3.13tWindows ARM64

processtitle-0.1.0-cp313-cp313t-win_amd64.whl (58.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

processtitle-0.1.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp313-cp313t-manylinux_2_39_riscv64.whl (271.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (304.9 kB view details)

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

processtitle-0.1.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (304.6 kB view details)

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

processtitle-0.1.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (296.8 kB view details)

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

processtitle-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl (57.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

processtitle-0.1.0-cp313-cp313t-macosx_10_13_x86_64.whl (57.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

processtitle-0.1.0-cp313-cp313t-macosx_10_13_universal2.whl (72.7 kB view details)

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

processtitle-0.1.0-cp313-cp313-win_arm64.whl (54.7 kB view details)

Uploaded CPython 3.13Windows ARM64

processtitle-0.1.0-cp313-cp313-win_amd64.whl (57.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

processtitle-0.1.0-cp313-cp313-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

processtitle-0.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

processtitle-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp313-cp313-manylinux_2_39_riscv64.whl (265.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (298.2 kB view details)

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

processtitle-0.1.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (297.4 kB view details)

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

processtitle-0.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (288.5 kB view details)

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

processtitle-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (56.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

processtitle-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

processtitle-0.1.0-cp313-cp313-macosx_10_13_universal2.whl (71.4 kB view details)

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

processtitle-0.1.0-cp312-cp312-win_arm64.whl (54.7 kB view details)

Uploaded CPython 3.12Windows ARM64

processtitle-0.1.0-cp312-cp312-win_amd64.whl (57.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

processtitle-0.1.0-cp312-cp312-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

processtitle-0.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

processtitle-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp312-cp312-manylinux_2_39_riscv64.whl (265.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (298.2 kB view details)

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

processtitle-0.1.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (297.4 kB view details)

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

processtitle-0.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (288.5 kB view details)

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

processtitle-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (56.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

processtitle-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

processtitle-0.1.0-cp312-cp312-macosx_10_13_universal2.whl (71.4 kB view details)

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

processtitle-0.1.0-cp311-cp311-win_arm64.whl (54.7 kB view details)

Uploaded CPython 3.11Windows ARM64

processtitle-0.1.0-cp311-cp311-win_amd64.whl (57.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

processtitle-0.1.0-cp311-cp311-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

processtitle-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp311-cp311-manylinux_2_39_riscv64.whl (264.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (296.7 kB view details)

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

processtitle-0.1.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (295.8 kB view details)

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

processtitle-0.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (286.9 kB view details)

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

processtitle-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

processtitle-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (56.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

processtitle-0.1.0-cp311-cp311-macosx_10_9_universal2.whl (71.1 kB view details)

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

processtitle-0.1.0-cp310-cp310-win_arm64.whl (54.7 kB view details)

Uploaded CPython 3.10Windows ARM64

processtitle-0.1.0-cp310-cp310-win_amd64.whl (57.0 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

processtitle-0.1.0-cp310-cp310-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

processtitle-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

processtitle-0.1.0-cp310-cp310-manylinux_2_39_riscv64.whl (263.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ riscv64

processtitle-0.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (295.9 kB view details)

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

processtitle-0.1.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (295.0 kB view details)

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

processtitle-0.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (286.3 kB view details)

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

processtitle-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (56.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

processtitle-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (56.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

processtitle-0.1.0-cp310-cp310-macosx_10_9_universal2.whl (71.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for processtitle-0.1.0.tar.gz
Algorithm Hash digest
SHA256 cffa4223fce42b5ddd9fffbae89b9d663de281f13a05be48c9ecdf6b9e453ad3
MD5 10e0be6eb23d83401d4168ebfee59ba5
BLAKE2b-256 97e6b645d67f1db83c24013c64761770a710df41d8fde0d91488c45f1ad0986e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e5b233d3b9f0bd446053907e4b3abd3b2dd34d9373045b039081a2756a64807d
MD5 b14e0a4c6737c54fd9b99bf993e16750
BLAKE2b-256 c5c1cd880959f95a31ece8921a8180e2ce52dff23d3544e2b78e707e15159b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 608ed453656908993dc8c87cbc23220f06faa57c521bc09c8ff04db4a1abf38a
MD5 d312be8e460747a9ea645c5acc0f9385
BLAKE2b-256 95a4fa5b58339094adc54e31bffa304cafac085d37a4c80680989cc147e9e48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1c4b8da37f87c894bf5b463a8838e6dd039a7c1cc01e3c9466b2742aa4bc418
MD5 06b778dc0bc028e9103eec937a917bda
BLAKE2b-256 015a6c9de4cea341f2243047c259ed10f597359590e9235bd8921866ba10691d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 359e2a7fffca168a0fc8f3fd8b8b656f211c4f7ad7fafca418f11a877285f9bf
MD5 3afa4605f1d00a11387a8433e41f0dfa
BLAKE2b-256 aa017f1f4b8cd5bf2ee232d5338aae36ba36c57476fec3702de00ff0fef0613c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37115853b30794863e0a0c8162d56a568429d125db0e2e3f3c2ce948492e3ae1
MD5 36b8ce2a9fba5b78d343a7b0ea4e7176
BLAKE2b-256 d24793564048831355dc2a760bbd2ea5f0139a283bb76c28ffd9e859dadc92d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 436e089f2a59457f420909a70126c3dae93337856c049aef5f17de40fb8be879
MD5 f076cacda6dad2f26dc8dad6446364f9
BLAKE2b-256 5fe1f86b948986b94bd26c511793c3d173dafbbb9949bb341461cc74a9ff99c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4adcadaf7f08f5bbc1e06b51189ded5faa251817bec0d419688cbfb9e8090cba
MD5 7c0125c890b73a6c4ed2c7f9a558a497
BLAKE2b-256 68b7ab7de8b301fff0e3ed1b6b22938458d394fd567bdff60d7f05302c338fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c25cf0c6eac57767a07b7e1ff2ff6c62ffca1d589dc6b3f83eaa6329802b226
MD5 6754a22ae0aaa27928cf706c558d97cd
BLAKE2b-256 af76303999199a1fb6f8d4d6af723022896f135551c0eb99bb3d66ef31764ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08f1fbb9d12440f49e099357771b539c93e20411d4a9c0af0af4dcdf7659b5d4
MD5 414498201a26f7cef25037bc544f4cc9
BLAKE2b-256 adc2089d5253fbb1a0c19b358bd57f35443a56af6ea13f9bde5602335f15c4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 88536e67a4ef4f001bc8de16c6794654639222209f35b214a0bfbf0369bd39c3
MD5 640b187dbe0d19c517174311fbee72d0
BLAKE2b-256 8c38416208487a1e3efaa00588239886a0b0f57b00c920c1b4b297eaae627299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e105d45b4829c1c627cea9be34a0580f49d4ae4e955844b099257d9a2140e874
MD5 4102c67d7c3255127e84f37b16ae5780
BLAKE2b-256 1c6f869a6f8d4a9d9e1b8781e0f52c5303b277548fa29a12df78ebaf5565b415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cb8802ade5b9a7f41aea14c93c175f0af57008df5029a46e0a0771676c0e6767
MD5 8f76c05f7741a27f77e5ababc882be2e
BLAKE2b-256 b5a5bab2b5a398b6431ca911eb244f3870f3a5a2e9e39d424cac16285737f93b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a789b353bf489974a374af5e11db385c86a6f6468d2bce7e5d796c3c8d2d17
MD5 6cfa38272350ae3e76b3d2fdf17725f6
BLAKE2b-256 20f5a16b3a8501bc3e92bcf1d7afb02066d95d591f80e4eff79ba6dc7d3d0a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 17c2a35aa2d0fba81ae1867787f077fd2b3e53cb75dc3b4b2a95644c4bd8d00d
MD5 4ab051d3c82f716ad1003a8fff72ef5f
BLAKE2b-256 21e32306a43ac16a81c8f31b1823c3daa71d24c0fc9504627276a86f5c62548e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3a1b56a5a0c540cd8898d4232b2ba79c367591b2c9f6265a7a69164cb40d56fc
MD5 df189ed581b5685cb11eda1f84c93a36
BLAKE2b-256 41c1fa167a70be6be8235313b49d33d91035b8a15358c8f5d80d6d5bb5b3727d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 655ee70bc623af1040abafc8735d98740b325857319e2e55f875855d68cf3be2
MD5 7102745c58c529176de63a92679c3beb
BLAKE2b-256 839744c1ab4711feaebddeb2fd51c28b3f6887dd9dc47048d42da665f53a03bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cb5f8b7fa52557fb717167fa64db741d77aa4314eef10a0bc9ba475d897498e8
MD5 9c334f94f5c6ca23a101b1eb510738e6
BLAKE2b-256 6a2b4bc1f714ce4dcaeb985771ef7cfc8da0af86f4447516c8bd5af2949a2e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67116f4c4c0d8c3c4939a02f0df07f0f56641a1fec321c5108a40e7605f336fc
MD5 95f262029a5b24881a98c1ab17d50a91
BLAKE2b-256 010e28f7221f413d44ae64e5b8dee341f30d857ca3c57b67f7af039fc57ea3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9db61aef08c73dd13ac65cfdce5428b48bbdbd0623eefe96332a79185ad32ca1
MD5 8e7007d1378ca662c22be5a3c21fc107
BLAKE2b-256 7badeaeab821f9da4d4cb8c6a127cba103eda499359b19343e34d2d064eba6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29077092e5e0b049e92df05dd997fbe805114b45b421f6654fe04ba5f9b1f22d
MD5 e4e34bc6c01ef73ddcaa9cfbbc406cdd
BLAKE2b-256 aab3d0758b309e8401bab0c6e6b71c749f8cdc733278f993e416f8c974b08c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 624b7619e58fe10e970e6e9062973eb859dcc7b0526036ffeff6dc84139d57eb
MD5 163f5ce793b274c3449d83f5fe8676b4
BLAKE2b-256 62c3b51a71488579df466a13ebc47ec87c27ae574187d4145fe4b85038aa3aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe7515b5123e0408b49c6b44573cdaab9532d8d24a164f8e98f7bdc210a09d28
MD5 df2ddcdab8a9924d8addc49085580437
BLAKE2b-256 8f5ecf5824b4899533e61e4a3bd2bcefa3575e7d6bb82d8ee54981a157df1299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 181b4b0959f77224940cee1ebc8019c057547d776f9e226b65fa7f1f4755995b
MD5 2950c2dc8e14a2dfe9e8895de56af41a
BLAKE2b-256 aace1f80157fecbb0cd80c836bce24c62e164878289641e69beea8c6a937982c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b4bcc4f608a3a4ad2dc8ade0b40e1af63508eba5d08d5725a4efd43b96b5f902
MD5 137df238d6f87595ac7a9170f8710478
BLAKE2b-256 89180a25e61e27a4e6b4d2fa59cfd15f330b43d69071ad27be7a6de755e93a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 981a30cd1c36b85df2ae28b265b1fd7e9886ba3598f252acd8d45a841ecad725
MD5 5c32eca3e9181cfe234a37dc1b16e8b3
BLAKE2b-256 a150fce159fc6f76b9650b2d2eae7d8eaab035afc4d96ff452aaf93dcdf9acc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 059e2f214636033f5d0bd9baa5f4a4d53dc39f2e54553e4dfd628f867b0d12a2
MD5 83737f70d6e098451553b2993575aa49
BLAKE2b-256 62d7b879bcd8c29619602242341c69d7763cdadb67efef81048387c83fc67b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c0855bfe0a2e1c8402a4b8f33e3e89deab0f0c978910935491cb2c1824620dd5
MD5 f60db567b1c0cca5527baba26772fac0
BLAKE2b-256 e5d349bc9d0f8d3452190238f2026db3babf81dc6b5e5d1254a5d181458aa7ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 443b2738c756bb56d2c78d81d901e50e4715afe43ce148096b00761fd7602543
MD5 30632454ca46fbf41bafeed1d95a53b4
BLAKE2b-256 72c674a2e299ec46fccd064d1c453225691bbacb3848766d71007840b1a4d9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a42cf7a93cdcdeebae6c8b0638ffae984658c321500a6eb3642f2af7ccba20b8
MD5 797064d8f2eb1c435c7948da0da2232a
BLAKE2b-256 c7be11b6c4ac27bc68b90e50e33d1f07caea172fc5d0f1a1702c58610c6cfcc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 da53b003aa48172f376fa6b1f2abb93dc592d4e50a88671242c5f4526225db49
MD5 87b011e68fa6eaae8d168298355b3220
BLAKE2b-256 0b12e2107c2edb7b2ae4cb76a9a39bf237872ab3fec1f4cd0dd7f3d771213307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a0d656f53ee0c6c9d37462fdc24bcca5a315b24d7ab39a7d0b3b025364e1b46
MD5 25de7fe5daa384ae28e6c3d2f33de732
BLAKE2b-256 d821c3cdaa5e4bc00d33ff7ee792fd7c95c0c7b6d024012864912a021a912b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 acf5f79a3646c2fc0ae750e3cd8cd4af717da380e8675177f46e1ce4ee40b347
MD5 d7dc8a86a09556b97d2a94817b1a9d92
BLAKE2b-256 99c16eac765fdd91da74d1496e5bffcba4bda73eaee7272255ebd4724537a46a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79f9ff300e2dc9679db9973fc88a2f9ba54304603134db17059fccb6422c72b2
MD5 2b92c867dc600290056f2c71651e2929
BLAKE2b-256 34e5c76b635ff9dbcdba39eb80c19ac8f7ce41128ee2021255e893292a2c8940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc987b53f594ae901f14f032b69389a8efc73f1e1beb255c3275e3d6d77be238
MD5 e45952f260238dd05d2f9df771604954
BLAKE2b-256 baa9e031b27bef631e2298ec120b7d53743c40b2e2d8a08e702a6325a12f9dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 30006508521ad33464311089a4f2bcab3ac08d999df97019cea6e5b9af793baa
MD5 5373a8dec4a33df8b10b41367013c722
BLAKE2b-256 7c31d62a77359fc8bcaff6828ef2fc5e7b44a77e05cc0ebbe8467117b0a2670e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 aad3d7383ce8486350d07eceef1ee2a0f090a8f892ab577040785f60d3d7cc00
MD5 43fc82c43ef27059efd11ad3410e8689
BLAKE2b-256 bc7de37eafb2eb520124680d7207dbd32041e5525bef032912eb81a6e8edffe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 74d9679ccf16210a28c0c8f0d20652630ac60d4bb30b0faa3ebcfc2c4f7a1ed6
MD5 016800722898289836491967f7fcddfa
BLAKE2b-256 752ab5058382c4e1f2bda90fb2b4722344f7008d5643d4133d34e72e6e1fb3df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 26ac782b19793bc06679d8ede7bac394877983d6c51bc2b0d43adef6343e673c
MD5 5b307e7a3a3fe5b0ab9f1ece783fb02a
BLAKE2b-256 fb4043883535a34d4b975a4fe48070c88d1dc7bad8801cef49eb102b8efa6175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ebaabecb89bb53faaa7f8a57e6ef9ee7007c08bf318abe74c4caaffea85c16b
MD5 3b2f03cab6257712665dcf26e2bfdf4c
BLAKE2b-256 96ff5daf13fb87fede4e98e8b7a4cb55e87cec28c185d8c82401f88b7bc55e53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ef869a79845f561d26420e02d8ae2f02760d7a4829d7d2fe5abc65dc65a87ee6
MD5 a255e8858d1460a250d4400856ce03af
BLAKE2b-256 961b60a3c2bfbf4118c7c4671966fb9365726f4a40088aada3924cc29fe6babd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e1363b2ab74d1a9e4b9565d27c23e2a1865ea27512c404e9db19b6e44d135a3b
MD5 14a81c4111a25f61f4cbeeaaa7e23e74
BLAKE2b-256 d13fd4e49b977acc1ab50b096960e99209832ab5f9f6b702a608b087a2ded7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc21ca177480bd40f1028e94362c912e4eeb86411c5345eacbaf1343a9ea8e6a
MD5 0abc26640bc266ce27c685ee436dfbae
BLAKE2b-256 15a1c0bf871aa68c06d0fea032e6abcc14df69e902daf871461e050b384f00e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 74d1e43155a29c388cb740fbc9d9d3df71d4f062dc1ff144c16c1eaf5bfa3c0e
MD5 f58ae9ae3a069a5933123ede4d316e82
BLAKE2b-256 ccf2132099124f0a09fbc9d56f754ed3c0703ce5cc6bdd0fe308765e4f5d3d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1392140dc7982921254df89c0061e46fa3a6de27cf4b96dddfacd5b4213b16da
MD5 31d164dcb6efb913c050ba11887811eb
BLAKE2b-256 1e19b8acb01fbfeddb7b63f3551b57108a3086bed1b57de4b7bb427ae99b1355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 be10821754ba223a60cbdb172d0ba5ee1db900fc3a9242a6c4c932bcd90cb5f2
MD5 fb325d46357b3d3a1ee607afb4fb18a8
BLAKE2b-256 59cb64be78db5096180b813a138d36a95380692238529eb951c0f5e916ec6664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2a99ba849d03a80363bfd22f9db0ffbd5e49b9140d2ae559a856898260cc4af
MD5 44451faa3fcde113628081107043b11e
BLAKE2b-256 322d6394703515b67edddb93d26b80c9eb8295f878d9b7710fd2076e42675eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3a3207d22a8dde72676775bfad449023c7afc404e788db1575f0a460d26328b
MD5 4dfa725cdc53fc690397134a535dffb0
BLAKE2b-256 7ff3f827a88e1db64c223f1f7b7a5287da1742a22f5ec766ffa9869254071976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ffccf49860d7ba3d4b919e17883cab0b14d93e97f8b8d70374834a8884f2d458
MD5 cf99863a2dc82260ea4291331c147d5f
BLAKE2b-256 3832593c2cae1fdd9cd288982932981ce9e828629e79181554e39d2b6a6f3215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2d1a0796bb54b24b1f24e0ded5a42e934dd4a7a6fa57d981ae9c860ee5a8eb36
MD5 06f7c3cc8a439992d485d3af91b6d8ac
BLAKE2b-256 364817aa15a6f5cbb099eea0af8e439e166c25d671ea4920696011a2847fe3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 03b4d084ea6f072e658e8557b4097041ba7c2423ba4fcefcedb0603b35e319b4
MD5 c479134fcf17ff70ac108546576ecda7
BLAKE2b-256 21991e1a10c626b11c98a0ade26d7304bb6322270beff91820ce4255aa16f769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3b0a285a893ac55e36ea09dea78319643de6c8f8c3d2bf27d46452a2bc08118e
MD5 05e88abb442d0bf8123da8d8182428b3
BLAKE2b-256 406c31bb5b48025e476a51659294fb3b36ecc56674f576415545d874e359792c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9491e286b76baffa58fc43758e55de5952ca40e3b2dda0cd99ddd9cba8e3c06b
MD5 0cb2e16ba02e057d7f8b56b6463e6cbd
BLAKE2b-256 1a2d39af804c3e25e0972bbe786db7b474cf7b17a0da34f606fe41a5f65d2f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a84ed18d475a222d282be6ce9638c3bce5d8e875c9f0b841030a98623a99f2a2
MD5 6adf312fde58d767860e2b573cfcff4e
BLAKE2b-256 ee0534c643f4401c9183aa50a41191da62cbc7e7016cf3545d77c1f8ff75b7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6b8ec1661ed8a243aa1763e02dafb3a2581da3937d5e833a4aa607e522af3832
MD5 2696a045c16fb08d15b82911c8cbbf9c
BLAKE2b-256 8cfd9012f70eefe3918c24f0d4629e9a6e169a7cad46dc067c15b72737469446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d24cb1196b31ba592caeb6e87086eedebaf8288eadb7859f70909a6fec22ae3
MD5 db36d775106dc2790f691bbe6e3c925f
BLAKE2b-256 7ef60bcdc59efeec2eaa0857a8e53b4eb60aa28818d6176d9be7df6f1a6e32ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 30c18a63e9778448cffe5b1ce5d2abc4f69d2a1a208a82d79df6c2fb7f43966a
MD5 4f40b0b775d3b119068a98a6737e7623
BLAKE2b-256 5b9d5b57da5eb33315e4a15c010494adde0d34ca303a162cea5887d57ddc0284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b7eb635565b783448a196b4ed86158d788f499cbba6d78d3a5c629bc24cc49b
MD5 eef3de096c5f66fd7651b1c46c262772
BLAKE2b-256 ec0136c861d438afa2a4098d779615c02b1af782df07fb3200fb05d08e0d6c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c7c99f4b7cf8e5486d95e66701002fb70bb39f66831b1bf32b9be08a452f043f
MD5 2abc92870451984069399e56ed257c65
BLAKE2b-256 9ff085454a449dd1e43dc9c9e469f930591bae4e6ea63a91d7c885f1cafbc511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 699fdb3cdf684ee84c486045865bc98c9866d4ab20cb7e2ab7a3cfef777b3343
MD5 8bef7639759781e3a4a2b5f37d527bdb
BLAKE2b-256 e024c01a88ddb295625121c32ed09481380fba858b87cf56809905e5dec420ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b909fc39a2f49ce822341fe6f7ebe3f68cc000e1b7cd549ff07c9d551ed6b66
MD5 218178c33e8b3e74ecd495e2d7e9a21b
BLAKE2b-256 7c0b32b6c0a6c973064090792aa8a79e49dd4c6e10fb872ea24ea1a84e3537ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a1bac0e4fccb20277ea4012bcd09e1ae0e392374f26622893995cd1e6b9baa9
MD5 21c68babcbc17d792ed342d42edab8b8
BLAKE2b-256 b79d79f8c8a2288de6ba00f9d9f0dc14c7f5a5e3b35610d8af284870278fef49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 64317230401a9233a594e2da691e245e504e3f28c9d1cd3c4abab404e179daa4
MD5 d6d0d63cc11131c2c8f6028a451b06c6
BLAKE2b-256 52ae4053a4537ce6966aabfaaca876402e4a45392e461228702ee69441bee89d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4b6efb149cc2ade751a00aeef2096eb67118d3021d4b0b98a671a70958a42c69
MD5 3c65e9ab9c0fd902ed13195dfff66f74
BLAKE2b-256 e91d23b927b8f388066ab660a495407ab7378a9dd447e9bbac4438923a511995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e3b6b75da8347987b1cf6d262f0a4c5511948197260e2c6946de6b0d512e7528
MD5 ae5be75b669ab119029ba41d03f3b16a
BLAKE2b-256 064717ea35172e6ff3317a89f5ce1e868017bddbc46c0fccdf57324dec37c7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08b744c2d4cb5ba07a602527da9a78572a3c92f73335a903fd9652dc8ec97cb8
MD5 cd4d19880dda322738ebb8345b6639ee
BLAKE2b-256 b1b0030dd5596ea5ecfe2340995d2c4c22620e8c0cc427f0a5f2eabb775e4437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4a01015182ecc85ab47d960ffbb02e2d6c7b09447c944f9cd27d7b0ed8af4f01
MD5 2c913cdb3a1adcf4db68edf04b9b58b8
BLAKE2b-256 20c7289805f8fcf74249499b870304e236946989ef8419d84fd27fd02241f65f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8db3339c339fb84e7c501c9c927901d243563427fff81c7b670a9ddbc8bba784
MD5 3dd9c9ed7649c1660edeba96ae539e5b
BLAKE2b-256 13f08e4c2da057377db31e6545d1c83eb1a4bff24207f72c8b0a200824185ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dbdcfb71b52397f06ed82fee66cd3e89ab9d1ef19285782041bb8d1bf9e9139
MD5 59c119f723885ce5b2ff63d57805cbb1
BLAKE2b-256 51679559c233290f21496a21812006732e02993a7b555aae8c846ce7598b3420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7f7a02c515d9a7719d1a1e1c89df3cce01a8b9798b26e3db4326fdf239c7f4cd
MD5 0d67567b17a6d9a035d93c806f29d46e
BLAKE2b-256 1de46abebb6e451af1d9d8b8e5767e69e9911f250e8cfb3d45800cadf502fc11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9c889e752d773bb70383cdafa1f7c32dfa11f92f3076371f5dc2c87df435606
MD5 df1aa3f56988093edff45e6203bf3934
BLAKE2b-256 138cb5e588bb51c0661c170f888c20a3d49abb0892c2b695c0d48c4bbfac2cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 755eb93585835ff33567490420bc4f36b6e151601dfd14c037c39b32ea21cf76
MD5 c40eef9ad8a6f1afaeba7fd3e0043a75
BLAKE2b-256 0a3b8b85106dab4b8d53fab60156ef3c9d89734ec04eb571feb9a12448729a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea82d1124d602648f55a40481051f2e86be8204695075b0805dba781f6800e8d
MD5 6ef7facde2b4b383f1a3724a5a2a56d3
BLAKE2b-256 c4b5393007988b4a235365f1046f293c41b23c22b6c9f0dff8ce1c3f52995a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e7ca9bfd0b4322ffbff766f8e55181c796bd7e5b896e3da6d817b1ef25fd04d
MD5 b7707f8168536717ae15292b2b812990
BLAKE2b-256 8ca21583b97746ac7279883440f237d45c31d2f720cb749888855f327152db29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1fbd032b6ebdeac4d8117937d5fd3a0fc23ceb98cb9afe7eda62e9a56898c883
MD5 9ffcd62e1c2347319b58e042348cfc1f
BLAKE2b-256 272aaa5290abe050f124929226c8eafca1897307da8b88680544ad0bd47ba14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c896af6c8616f3e6d6419fae85798bdff2e4ba0c35b031f7e9d0aebe1b540304
MD5 ee43d83a4ebee559c1678a70aafecef6
BLAKE2b-256 2bfe3cc256bfdfcbbe82d6d1aae8fec5b807725e971bf754a5b8bac05d1985be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 105cd486bcd6359f03e449c5a944e7a1eb82720e69715709f0beaf835924d36b
MD5 2b3fbc3e5328ef91ba99c69d62400130
BLAKE2b-256 9dbd73fdda5d6516f1e2b15718d85b43ce0aef33bd5162febc1768a271815d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ce8145100b2377bca28c04e2172eea6b29b8d210966467ee5014af1d0d001dd
MD5 e89ae60be25424efe2cafd1abb6f5a9d
BLAKE2b-256 aaa3d24b56006cb36f3791cd8212eff4676b3f42ee417cdf63711fe5c01cdae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66f0a509c6d7bd5e8730405cc5ed9500b9edc3cab7484b5c1fbd80ca4e1ac5dc
MD5 ac149b40184e9fe6b103c29289140891
BLAKE2b-256 783372c87c2b466ec542a91ea8fab8f1ce5c73a66bc3774f33aa9190b967d84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 870c0fde1d0054f793e6f05d8330e07833805b16375c2e5c76306d972ffeaf97
MD5 59fb0890b6ea80631e472aab862ac22b
BLAKE2b-256 11378e4b11fb3636cc1b5d7c5783b142e4813c996d548933c55eba8701b231a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e75ce8d1d7cfe6a48a5d8ad51840043e25621baa56d7e00e2233074af27eb138
MD5 7b3f6b4104f2f10eec9dec99f3410913
BLAKE2b-256 48f144c70413bdaaf18ae2e7d7ba3d9e98149527c426c5c56bc31d58e82740bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6598e5412c093c3daecdd035352653b046ef956c71453f341024009856c587e6
MD5 36bb7236ddf44bac97a61b572b208a47
BLAKE2b-256 f966a925da1538898b413a751e68b91f1b6e66a630888b62226f703efe472991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 be08b0de2df16c1100dd609a8830e989a1f2c5ff9ca4d0ffa2e137f1d063ca52
MD5 c61ef17cf006da809584022cd1335042
BLAKE2b-256 796ecb3aedf9c591a45dd27853480ca05b307dceae01fe7762c596ac2c84e7e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82f8130fc733b964e24d26c06a79113ae4e8986b4cd40ac547dcde54a00881db
MD5 b1851a1038f93e7c30ff0247355c9857
BLAKE2b-256 2bb2676535443e7bc0eebffaf2ac55f91586ed88d3063586116617f16446aab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c2aa795382d241a6630c75179f1d49f34efa2fb0b3404f84c93790af8ea8b753
MD5 9996b77aa2c3c479cb7a14abc0f5f496
BLAKE2b-256 a0e208f369a396ad3d779be5becf1ded2609533e2a1b9a20d4bedbb00d2c9754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bd52169c06c382d2cef3e3e6e5c357bf808afd4e093c34fc0210266d422f3cd
MD5 e5880a394926211678a826a79d7c51b2
BLAKE2b-256 c79c646a475f67760ed2394aea93f3140843090f0aa00d971309926c97f800e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 409f85a309cbc1252ecc5b8f9c6eab9276cd922ef278ecbc5d2153fde5458035
MD5 2c2c30869b0ff763819f1ae3a5df61e9
BLAKE2b-256 0574f67584c4a921fdd5944513364fe8fa094fefdff8e3f0b0309fa9b42166bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2228061f0f15d1feecc43048192155fb9e3f2ff2bb6e88935ab5690d600178a4
MD5 4f9ab3c9ee45e51b6806994a7b272773
BLAKE2b-256 93a2f479ad56c5560c0e88619d9cb66618268d50b7c321c30921e430fd7cb685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fe7afa4c9343cbd1b6a71a2b95411f08c24d4f85ac9f74e32834e5fc58bbb230
MD5 c5b95faedab21847e96af873c34aaf0f
BLAKE2b-256 72ee0becaf1491133fa42c7fbf2b0b9eb0154c15962e84a6dedd6c530dc01529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ec43d6d6e669793f3a709af131cb9e573b3e1cf90097b4f44593d30dd57293e8
MD5 372ac7d5666ffbc717f262696a97ef2e
BLAKE2b-256 d7bf2b2e42e495382567b905e71184cf681c57e1d0217ea83108c9d36bf51cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e09d9e78710a7bd34b9e36afab50428b7c45244a2ca70659cb0e981837d38225
MD5 463fccf86904f55e654698ba19446b05
BLAKE2b-256 0b7d6a2292abb05bbf848f2689427abca61fb5cdf2a8cd140d607fbe2f2e7036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff89d19ccebdee245fb6ccbdf8239aae49dc9df3fd7ba038ac0fdf702a8ac570
MD5 798bd20c36572c1be01e1c4cc8e488b1
BLAKE2b-256 33a199a722615af722d5aa810d2fdec27ce969c3776cb9613a25ad0d27fb4615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d1fb996e3192d54e9d092476a29a0a2a9eca395e6385933eaca247edeec04f3c
MD5 d1d52baffda48336fd86bc0529246aac
BLAKE2b-256 d6228214d7c0637dd61e993d8029e2a29d12e70b24c6a441dc2351656a6bb279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0ab3387f7e79664395abc974445c392879e299cb7fa9e4a07af40c33ac77f0ed
MD5 b86eaf114aa8b53daad6452398f50f51
BLAKE2b-256 d69c2212e3fe4ba02b078109f1a4cf3a0430d1a56a28891f6037ceabc9e72680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 630a51b0852f37889c39202542928a18474305b60aeedb6c7c091b4e565a31d7
MD5 b3254a73f51785f029db5d1475f41c0f
BLAKE2b-256 9d3eb3652fd9eb76195a107a9c0ccd1f075f9848ac711e276325567cb94c87aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 40bae6a9981c114dcd43981e06b560dd0a6350da905dcff3d9bfd992801437fd
MD5 2914d5cdb1ef939ec86f649cdbac620e
BLAKE2b-256 4031855bca779ad6bb68aaaee7bc339813bea06f8aa70bae1f4e066134a59a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ad9b00ee680f2d1dc85fd2e0a160bf0970794e7aa35e1111b3d9720758bd430
MD5 19646e6526abf8e6115f89ff3827d22c
BLAKE2b-256 dd69bbd018a1787bcb18c71bc9f7f9076e9604617389c2333ad4d2023713b704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 021cb48a8f93c4aaa69018594a04f982a79cb11faf8562d04ee2cd9868210b27
MD5 e686366282c28b55769f36c55bed6414
BLAKE2b-256 3497580ea54159b0b3118eabc29fdee3b812d5fe5d09ee5f8586607298272d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a96e80afa789b70d865039e046a90c36295e7bea62fccc465da0f463575fbce6
MD5 d09b61772e6c802c8832135e68140d6c
BLAKE2b-256 bb35d598e2e402b5fb60aa176c87ff2243cbe47e3479b3236c09358a5b440031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56f0a3e9f393fa0d5418ee91d993eedcd5e2033030b06893404cdf003eea0faa
MD5 673c76ec5e7e868c87a8b3b9211b3af3
BLAKE2b-256 396da5eace18dfc7b3174a3e71013c463d67ea070a72d3c5b74f98cd7f422bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24f655f6d84fd0ea74fab573211939f861453823025aed42b2f84efe180a0d85
MD5 908256ffe59aa6d045e8b27a608b6bf7
BLAKE2b-256 c46031cbf1742ca0e1d236845c8eabcea2558469df27b966353e7faa5a9d35cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for processtitle-0.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0bf7480425e86d1cfd875b43f1077a62f418971466b8767ed76a3de702e9660d
MD5 873132466a41e07f9297be805e2a6211
BLAKE2b-256 34d381d5d61f3a53255aa4626c85d8681a5f928ace66478e863f5c37759712f1

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