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
- Requirements
- Installing
- Usage
- Thread and other safety
- Differences from py-setproctitle
- Platform details
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. 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-devpackage 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
processtitleas 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.
processtitlesupports Windows. At the time of this writingpy-setproctitledoes not.- Wherever possible
processtitleavoids tinkering withargvand relies on other safer, documented or semi-documented methods. processtitleuses standard Pythonloggingmodule to produce diagnostic output rather than just printing tostdout. (For compatibility,SPT_DEBUGenvironment variable is also supported - it simply sets the default logging level for this module tologging.DEBUG)processtitleis written in C++, not C, so it requires a reasonably modern C++ compiler when binary wheels are not available.processtitledoes 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:
- PR_SET_MM call.
- PR_SET_NAME call.
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
multiprocessinglibrary 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:
-
Pass
fork_safe_only=Trueargument toprocesstitle.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. -
Alternatively, if feasible, call
processtitle.prepare()after the lastfork()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 ofargvand relocatingenviron). - If
fork_safe_onlyisFalseundocumented 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 two ways:
- Using powershell's
Get-WmiObject Win32_Processcall:
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"
- 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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file processtitle-1.0.tar.gz.
File metadata
- Download URL: processtitle-1.0.tar.gz
- Upload date:
- Size: 31.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
049af4d2f77e10e25dcc89e9115a463c60858ec7a192bb6df126a82069663a8c
|
|
| MD5 |
6017aceb46a28015eb8a50e6451de67a
|
|
| BLAKE2b-256 |
4550d7deb59fafda8d713aa5930dd6a7eb9ab8db331f98298f232ba3a88c99ba
|
File details
Details for the file processtitle-1.0-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 26.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9093e9656326963b207235199197d804a6bcf6ee49cfc28ce80fa3d1a75ed817
|
|
| MD5 |
7d3cacff130fe4250550d5f67cfba5da
|
|
| BLAKE2b-256 |
c9d232fbeda37db9177e70e331d16741f8362742ff62eed2905bb6076a62312f
|
File details
Details for the file processtitle-1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 32.9 kB
- Tags: PyPy, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e31041c7e2e6f188c3f5450928e195d135bca2defae4c7f13f9c0d4bb1f112e8
|
|
| MD5 |
6e007136618e7198e5d951520337e1a3
|
|
| BLAKE2b-256 |
3b3cf3c7deaadb897c1e75fa3184141f6cd4f8fbceb0b7a4031c8f03422bcfc2
|
File details
Details for the file processtitle-1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 31.3 kB
- Tags: PyPy, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb4ca5a88785e1e2f2acc89a7f66f3f11a3aec6960161072634555a746e1ff75
|
|
| MD5 |
538b8fc12b1d6a5eb2a942e0dbfcf23a
|
|
| BLAKE2b-256 |
14a3211954f87de08eacb046b4978607db1120598bd9ddad16516012fbb47225
|
File details
Details for the file processtitle-1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e623047e67fb4f0e12c3a9ab3f3c213a0ed0598b692777cbeac21d78137a643
|
|
| MD5 |
790889f032490f7d7c2d47ca3e1d0610
|
|
| BLAKE2b-256 |
7a879da35c214a3f8bfdde929513c730d5fbbfcbd81403ca5c9242dcccd6b3fc
|
File details
Details for the file processtitle-1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 26.5 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f386772905167468a68dd9ada1cbbdc98627ce6317fda22883be9869b9ee713b
|
|
| MD5 |
0ec6c8ffe490e0250029b72f920ab0c8
|
|
| BLAKE2b-256 |
3c3940bbaaa2fdc95fddd738a7ab16efbf7c83b60feb7d043a6f77b7e0eade37
|
File details
Details for the file processtitle-1.0-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 26.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41fa5a5ed2b824f94190a1df5d37c75eec4ba069258c142d8d0816167555f592
|
|
| MD5 |
79f3c58416d510840f2cc5683b44e545
|
|
| BLAKE2b-256 |
7cbae3c40724459858950e3235f37ba9918a38f1cd95525b4540087c46fa54f1
|
File details
Details for the file processtitle-1.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 32.9 kB
- Tags: PyPy, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
927165d27f2f694e48e1d8363f947c57cbb56f303f248f524a48fc36c20eb597
|
|
| MD5 |
d6691e6ba0ccf760acfaed3120a7109f
|
|
| BLAKE2b-256 |
6fdb6893e7c7cdb2e8d63f9c2c165502666dd307d5aff13be060d62a45bd0874
|
File details
Details for the file processtitle-1.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 31.3 kB
- Tags: PyPy, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d599900694854563d01bf1e5db7fea254504e1ae0f1f4036abcc9554c77bb0d
|
|
| MD5 |
8fa28538de107512acefbf0e78e4bdc7
|
|
| BLAKE2b-256 |
b6958d07f8d0b5fa08737ded17df5ca66ebeddb41a2869dbf7a26af5e9900041
|
File details
Details for the file processtitle-1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.2 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
846a38e19f09c3b04d69890be6e9e6be580542bcce6fa141089a26ec1ace8944
|
|
| MD5 |
88b1c78981edaac48f2b2c453cde7410
|
|
| BLAKE2b-256 |
9f3bbb184bb37ead7158b9f92c442477962223d4e11886657511f868318c6772
|
File details
Details for the file processtitle-1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 26.6 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a59bcc298124f5ac24fa774adefc54c563b729fe6cdc985d1140596bdd2a1c
|
|
| MD5 |
ed7ea1eb93567299b7244fc827087ca7
|
|
| BLAKE2b-256 |
21bcab4b57c43ffe4b1fb1aa9affdd18c72e36015c92640c72266f651fa27790
|
File details
Details for the file processtitle-1.0-graalpy312-graalpy250_312_native-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy312-graalpy250_312_native-win_amd64.whl
- Upload date:
- Size: 27.2 kB
- Tags: Windows x86-64, graalpy312
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5d24d2d846f65820986226225bf038abb96f5ab1fa83010e111aed041a10921
|
|
| MD5 |
6774d1f781d423150913a297eb2c9f94
|
|
| BLAKE2b-256 |
06bc042089b9d26b23e98708511b5a9239de568a4bd4b018b2e50b7c57e2520b
|
File details
Details for the file processtitle-1.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 59.4 kB
- Tags: graalpy312, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8171bc6faf82a563482f047513d6082ad66456d2ac360c4897d3d1dd89ae767
|
|
| MD5 |
cd23945bf5fd5e757390d38162c89db9
|
|
| BLAKE2b-256 |
39149c65ef6b55eae8e6807ee134133c1c394cb73c3144ca1ef9bb320a67fb0e
|
File details
Details for the file processtitle-1.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 58.6 kB
- Tags: graalpy312, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc0a11d63d53ff5588479ba51753300aa3b04227be0c95b07045e372d8e49c21
|
|
| MD5 |
5476da9f8dcb29586ecd55230d1bb6c5
|
|
| BLAKE2b-256 |
566bb4cedf091e1ab091d487702a512ed89c0f018c710e8889533ea65db3351e
|
File details
Details for the file processtitle-1.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
- Upload date:
- Size: 48.3 kB
- Tags: graalpy312, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44020f49eec8dabda63cf0aaf672bec72eef89f230af141b4341d23d96f2cc24
|
|
| MD5 |
86dcfda5d124877cba12ed7ffe4d314d
|
|
| BLAKE2b-256 |
b534bfc3681c2fcb291e0c7cf03d2fd4a456d4878e73b9affda9519ef697f167
|
File details
Details for the file processtitle-1.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
- Upload date:
- Size: 45.5 kB
- Tags: graalpy312, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c25ce046d512faf79cca6b88e6e45bd6c12a78d6df22c10affa642fac4bbbfc
|
|
| MD5 |
94cabf9766d439117f8af8c5b81d1848
|
|
| BLAKE2b-256 |
7889d31cc28c42667c61d769ab1b5bf3e653ee21d4e865d406816e023f8ea601
|
File details
Details for the file processtitle-1.0-graalpy311-graalpy242_311_native-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy311-graalpy242_311_native-win_amd64.whl
- Upload date:
- Size: 26.8 kB
- Tags: Windows x86-64, graalpy311
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c17f865259bd790e0ed64f675329af766f483ad82893522b1a467e5b5187a745
|
|
| MD5 |
41aadf1c2b21d29dcb81b1feb301a12f
|
|
| BLAKE2b-256 |
588e426e8c6d63b2ad323f8abfafa02b6082e28672b504c6a389620efd00abb5
|
File details
Details for the file processtitle-1.0-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 59.4 kB
- Tags: graalpy311, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f7b9b46da66f731e261053f440a89dbc18e6917c2c49acd09c51eed50996b85
|
|
| MD5 |
74925c4e1138f3ea2f5a1cb10442fc00
|
|
| BLAKE2b-256 |
47f951c6cdf2d411ab5ff46869b03646ac8919569e2f30fe3a72b9ba604ef89c
|
File details
Details for the file processtitle-1.0-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 58.6 kB
- Tags: graalpy311, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abc9a0ce90d29e942277ef8d528821db1a5b1d234fabcf8be5e6073ab7b961eb
|
|
| MD5 |
5e1d55611c04b847d26c587fc90f9e63
|
|
| BLAKE2b-256 |
594c51a5ac1fa3c06ffea7451b18dbb8ae22cabbbf3d101771685f2579fde773
|
File details
Details for the file processtitle-1.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
- Upload date:
- Size: 48.3 kB
- Tags: graalpy311, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4fbcd1747f3fe54f5e626c50fd56dfc122600ab0b7d49c6fdc60975c482b2a5
|
|
| MD5 |
38dcd05d816909342f98802dffc4cb42
|
|
| BLAKE2b-256 |
391e0e8cea564e3575b24c04df19a64f10bf03b158ff4e81a53c953cbd74cc26
|
File details
Details for the file processtitle-1.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
- Upload date:
- Size: 45.3 kB
- Tags: graalpy311, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d3d0db789d4c28da914190a88246dd03e2c6d8c73410f3ee9bfd00d4b14aa2e
|
|
| MD5 |
ee760e21e4b86e7bab88b0e2784c871b
|
|
| BLAKE2b-256 |
c9940c26538e482596f1d0b8c0428037a186808e26abd41d30b80b3c0f4ae6ad
|
File details
Details for the file processtitle-1.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 25.6 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86621e95a60a493955d4cbbd14ac2f59e11aa3d67ba0a138586660392f79bda8
|
|
| MD5 |
33454d314b5c0946ab043c8d3247548c
|
|
| BLAKE2b-256 |
f3894f21ecbe0944488f731f52282afcd0f65ae8a88ecd5e958898869e22ea74
|
File details
Details for the file processtitle-1.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 28.2 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edf8df091a9f65e3b0af13ec6197f89fb5d3a3cdf88b32dccd08c28d6db0172c
|
|
| MD5 |
f970c78c5d3fe3362cba5537b9d88545
|
|
| BLAKE2b-256 |
11614df78b9f050e11d5f635849da0771696220ed4d0e83bf9ba5d06e369e8fb
|
File details
Details for the file processtitle-1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b04939c6356768d94a5051ed2d129b8b85226a5e3eba58e44cfa2339754efa0
|
|
| MD5 |
2d822008e4de7cad8503f685e7ffc041
|
|
| BLAKE2b-256 |
ed2771034dcb389307b24d4c476d4c717e028ca256f3504b95eced05f9e02272
|
File details
Details for the file processtitle-1.0-cp314-cp314t-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9ecb63d4459ee02485510f9542928ac16af97c84c1cb7e0df7f2745779cc76d
|
|
| MD5 |
0fadd6d9e56aa7293a6406dc1b147b19
|
|
| BLAKE2b-256 |
f200602b2b656c8ece94d781ce36722906f6cac29ee6d7cd496a210033aa3d51
|
File details
Details for the file processtitle-1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
278bd43d366ee22eee9d560448e52906ab9c6e16000783bb5bdf6532be7326ff
|
|
| MD5 |
07c93d53a96005a9c3ed9fed0d28d077
|
|
| BLAKE2b-256 |
3edaf76c81acbbb1d447fb781f8c8a0eee8f68e519cb9ebd5f5c69d9da07326d
|
File details
Details for the file processtitle-1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59461125fb2018181f366f8b8cc543ccb20d94231a6e4a089b56149cefb4c118
|
|
| MD5 |
4d5a98ae9210d5ef758e20aea0ed28bd
|
|
| BLAKE2b-256 |
6ba55a987a571937c0f0f569d4a3043bf21097dff3b5ecf28e3364cf4c09ef30
|
File details
Details for the file processtitle-1.0-cp314-cp314t-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 241.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a428bf92e71dc20c3c67a4ba21b17895877d79318cc6a5d2e04202f9b131d2f
|
|
| MD5 |
bf3dacf152b25e7a5cdeaf3b80ac741e
|
|
| BLAKE2b-256 |
23bbaabccf64325743534d545f102d6eb689afa62b6ec1dff7968c480fbf8450
|
File details
Details for the file processtitle-1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 274.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7294fa583528609fbe57e8466ff97bdcc86b24c1d7fceae3a820c5f9c1762103
|
|
| MD5 |
30b2b64b6b431e437384d4622fdc37cc
|
|
| BLAKE2b-256 |
c04b2ccf990b54a26b7e4fc65413d8634584c67480f760ebc3cbc565518e431f
|
File details
Details for the file processtitle-1.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 274.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e661815cfabc7e5a1caff205c7297cbb82aa24f285708242ac17816d9afc84b0
|
|
| MD5 |
bd5e8317574fc1c2cb2fb5d183440ccc
|
|
| BLAKE2b-256 |
6b7b5c7769da3e2c4ebd500fdb19e2e9bc7e19d5757886f5094115828258f43e
|
File details
Details for the file processtitle-1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 266.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3eb4ad2be7d954ce214d1ad074feb8d99e46ea5c1b94cfebd485fb8cc82b3ef
|
|
| MD5 |
c4ca98983fa8b25468dda4a078bf2a31
|
|
| BLAKE2b-256 |
804f8a89d0232510ee120c030b85cf90551caf1931235afbd9d5fbcf0faf1832
|
File details
Details for the file processtitle-1.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.6 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28d8ce0ca9d86440f05539849f1708ede5638d04ad85e976a4116211be528c6c
|
|
| MD5 |
722c25a5a5594f5b9e9639399ead84e7
|
|
| BLAKE2b-256 |
afe2a520b2682a01691d75aab6ea13d871a3103c7b314b8ed09dece8350363a4
|
File details
Details for the file processtitle-1.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 26.5 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04df28739bc7d0a6e82f4345ccd00af21d10c6c19066368e118517e6d0de2d10
|
|
| MD5 |
f30493768ef9b89d0b68f651f4db5af7
|
|
| BLAKE2b-256 |
69caaf682a2a56d79eafd05fb364b413d05a53c9e9d004640fcfd9c2e48250ec
|
File details
Details for the file processtitle-1.0-cp314-cp314t-macosx_10_15_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314t-macosx_10_15_universal2.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
924db699e398b0ccd980fa169a5a8df7bb6091e8cc4e6a8223066c57db7c77ff
|
|
| MD5 |
c90ed0b55901a01712a11fc49e33ee6f
|
|
| BLAKE2b-256 |
4c637eb9787f171c783452835fdd8c509d746720a035655aa242af1b407a0357
|
File details
Details for the file processtitle-1.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 24.9 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a24959f4f36482dc44ebefb2a0ec1702ec72e54ef69e11fd25e1967f80c2bc
|
|
| MD5 |
5a6f35712ee75ff7a6d7918f210ee07b
|
|
| BLAKE2b-256 |
9aa481f8856e921658b4879bfd72c23e196d0f13be009ed5cbdf2617b36d438c
|
File details
Details for the file processtitle-1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 27.3 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf6169130868df16f143bf4fb6564cab944052d078867b807779ec0aed1eddc9
|
|
| MD5 |
89aaf22a708f7ad90026e5240f4091f9
|
|
| BLAKE2b-256 |
cb5dc7ec79aec305bba254993a7f70d6580a37391ae96c9f4388e510d576358a
|
File details
Details for the file processtitle-1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7a02fb85725cb27312ecd5c8381f70aaebc82a7232a7a8749182e9bc37625cf
|
|
| MD5 |
a023d661f612e06369bd7532e45e74ee
|
|
| BLAKE2b-256 |
c75f529625dd35de65efbef206a9e012384f0c77d9f4519b88ad9f9cb6ea28a8
|
File details
Details for the file processtitle-1.0-cp314-cp314-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e829d4911c981454190f4aadbe9192c1142efc899b5875b82a82d13a472fae10
|
|
| MD5 |
bd7aaad75062e11d8f457739c14bea2d
|
|
| BLAKE2b-256 |
27ea7ac5628a70f508c616b1c067bd109a7a92453a8f2bc2479ba79854672fa2
|
File details
Details for the file processtitle-1.0-cp314-cp314-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd78c478e458424276af202a2edbbdfb7fb77d4e5e9c01fc420d7a30f093ab92
|
|
| MD5 |
ddfd97e4476afb74b53058f6d229dffd
|
|
| BLAKE2b-256 |
d99b0eb552d0532b7cb01ac5cb752f8312c8f6dd61d70ee81c271d06d5d617fd
|
File details
Details for the file processtitle-1.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f081bf08e87c0c966055674a70f7248bebe127ba6721115ff48bc532fe4065c
|
|
| MD5 |
77bfe71b352ea8f128500ea91d6d9cfd
|
|
| BLAKE2b-256 |
cb3c18e0d4cc7fdf8b8497658a0c89d640c00845c6c8033535dafc34a8ebdadb
|
File details
Details for the file processtitle-1.0-cp314-cp314-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 235.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e6f32a7ba76c4a244468d6b0d6e211d47b2b0430f85b9e2c39f9dfef6ec4720
|
|
| MD5 |
c9b65cd319a7841c130bb5c7dbbd9448
|
|
| BLAKE2b-256 |
b74e6b1b7311b6e6f13e99ebca3d71334ca0eff701da14113ced8af96f9f26a0
|
File details
Details for the file processtitle-1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 267.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18a98509e46f7a2e89d12863c9d869e47f0a3af01edd3a7b6a5e3e03329eed86
|
|
| MD5 |
6d0eba6d46e9ee6f5ad04fbf02241f89
|
|
| BLAKE2b-256 |
7347df62ada5966ba3cc99be916fd2296b9f9c2e24714dcffc03603e08d85dab
|
File details
Details for the file processtitle-1.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 267.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d91b6579869a19061d5c115de671fa05844546eea896b4701dbf2ce8290cae2b
|
|
| MD5 |
9418ddacf20c165e113abe6e33c12af8
|
|
| BLAKE2b-256 |
4ff017da11cc1a35f647738f2b48bb98dcbff1c909726ee0da53800867120b17
|
File details
Details for the file processtitle-1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 258.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
240cd91707dc305f5cf2472c4de9a1829cb6d94203fba1f1ab0ad8fd6f112e8b
|
|
| MD5 |
cf1225d14e8595e64f6ffebfb37a169a
|
|
| BLAKE2b-256 |
6461201faea773e1e85ac921b3b1afbc340f41ac35d996395b71c523f1e3b3d5
|
File details
Details for the file processtitle-1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d461858d0daab56fde0e6e72e06f3ac69eda5cefdd545a09bf2bb7c07a7d86c
|
|
| MD5 |
5170966f9fee9bf9c4bad7a5acec5558
|
|
| BLAKE2b-256 |
01cbf3275f340bfc2e91dfe1416a37568b3d64d57f92cda559ac6592ebfb4376
|
File details
Details for the file processtitle-1.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ff7ea0906698a7710d2b13cc9aac009bc519d1ce89a11221b4f6ff49cfa2c51
|
|
| MD5 |
cb8476a10f63f4a7f56972bbe2c45040
|
|
| BLAKE2b-256 |
83d0f1bcc9d2badca65a047eaf85f9a6c0ca2cbfe17e0569ce9714a448ad1230
|
File details
Details for the file processtitle-1.0-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 40.7 kB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e1492727fa150f26614cf2ceedc13c0aa9e46cd63c37c434c1b2aa7e5a91db1
|
|
| MD5 |
c86a32c9f1a108d2247d202731c4d896
|
|
| BLAKE2b-256 |
956a2b7c8d9af82b3cc7611b7d216e958cd7f5e3adfdfbb13f8d4fc5552f0b90
|
File details
Details for the file processtitle-1.0-cp313-cp313t-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-win_arm64.whl
- Upload date:
- Size: 25.1 kB
- Tags: CPython 3.13t, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ce7d6f82589d70edf0df82d952cbe71912231d7c9daf0d26dfc087536f9dada
|
|
| MD5 |
2919153fbd225f071f93ff36f5a338a0
|
|
| BLAKE2b-256 |
2e8ff0d65278e66fd19430d1516afbda0995a21f92198785bb627b46cf6bc6bd
|
File details
Details for the file processtitle-1.0-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 27.6 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
024796449bc1a250cae681ad313840d809e84fced0eebe68889047d0dd1e8aca
|
|
| MD5 |
accc4568196dc87e30e415def56feb0a
|
|
| BLAKE2b-256 |
f91a8ce30318733816e2ec7be67fc9edec4948aeadf731a2f1401bdecfe4b9a8
|
File details
Details for the file processtitle-1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b877e44b102b201354f599525d4b05c1252f3c0a7e54ea48d5081a4d73a0122
|
|
| MD5 |
5366ecae5002dfd2d582ba7ad6a4f17d
|
|
| BLAKE2b-256 |
359e942d81b1ab0e8a97462f4fdc3dfa58106c7c28a90ef20b6f287d09217855
|
File details
Details for the file processtitle-1.0-cp313-cp313t-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36a2f0e8e5616c326a338e9f7c6a16be556041c2f0088123eaceec70fea74055
|
|
| MD5 |
9591f78572eba257592f2981d35a37be
|
|
| BLAKE2b-256 |
df7c4739284377a61177a5de9f6a74e1836e88235fd7f9ffc6144dedb142c4be
|
File details
Details for the file processtitle-1.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e21435289402d4017745b9b4de673e21e850f0f9556187d2733aef8ed09bd062
|
|
| MD5 |
057837448fbcc7c8d1ce58bae3f09b75
|
|
| BLAKE2b-256 |
129eae499cec349270c8c7edd43f0b75b3e248cfe9d289431c3a23ea19504e02
|
File details
Details for the file processtitle-1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4cf87813705f2b4d5f530db413b179be44e1813223b61c9655c26b8567ea0a8
|
|
| MD5 |
4593359382d9f6b23974b25204bdb46c
|
|
| BLAKE2b-256 |
603af74981447f56e1a1fdeffeadb5d62efd512e3e8c6333a2c4ce24cc7878ab
|
File details
Details for the file processtitle-1.0-cp313-cp313t-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 241.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2b78701e9363a223f6247e69c27e6b966d99930066f774f83f35648585c9b87
|
|
| MD5 |
f6de19e7ffd6642e39173c35df4456ba
|
|
| BLAKE2b-256 |
dabee47e75b0c6481824fdaed53504e4574a107f26a9c7e4b29b8802c80a81bb
|
File details
Details for the file processtitle-1.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 274.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a0768c2cd3b892bd5f809de556ee9846524f1cd283a30917903e71d35293bed
|
|
| MD5 |
1431bc42f610ccecf6650a3d5c601cbd
|
|
| BLAKE2b-256 |
4f0e015c8de59622d4f51c0136134550f0e7618570b951d4e6e25035f9940de2
|
File details
Details for the file processtitle-1.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 274.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c60c6e268b2c9a4505632fc7831641f243da39c04bf54afe7ca155c26ea40ea3
|
|
| MD5 |
e8de3a32794b46654501eb37bb70d304
|
|
| BLAKE2b-256 |
b2d807dc503a75382e1d2971502b7d42043792c6472447128bc6fdc0cdae1527
|
File details
Details for the file processtitle-1.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 266.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d84068abfaef0d18e938508ffcd23a3869cfe3cf1c89c001cc1dbfa66d9b3e80
|
|
| MD5 |
c520e1576c640b12edff70011136297c
|
|
| BLAKE2b-256 |
b29e57496cc036b4fac0d35bf7153daf442ff7a7586b9dc027b0b3de8be3205f
|
File details
Details for the file processtitle-1.0-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.6 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89a2eeb95f7f2046f261d22d328b42fc2552beb6fcaf1b50990b7daeb6589637
|
|
| MD5 |
1a4f62595390730619f5e1fdc67985fd
|
|
| BLAKE2b-256 |
a29d62f3aabcf82025df28271821c2f020426567324b2c15e962a2978ca248fd
|
File details
Details for the file processtitle-1.0-cp313-cp313t-macosx_10_13_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 26.4 kB
- Tags: CPython 3.13t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8085c4639326b4d08b8462a24b0e0a704270300bc851c8a971e2a0cc4eaad852
|
|
| MD5 |
120f6ce9efb8e9be21250838bb560a09
|
|
| BLAKE2b-256 |
4232b8942c6831d4b30afcdc6816e6d5cfa12a1a29efa177ad000f871d443374
|
File details
Details for the file processtitle-1.0-cp313-cp313t-macosx_10_13_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313t-macosx_10_13_universal2.whl
- Upload date:
- Size: 42.1 kB
- Tags: CPython 3.13t, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a49462ac4abefa38d97f56e6dec14b27085a780e86252f1b0c216a8497bc49b1
|
|
| MD5 |
18fc32e42000c632d9f4522459deb2e7
|
|
| BLAKE2b-256 |
037ce39437a51c20cfc0ec1517b69b41b4faa5182b04170fc4e030a096c364e7
|
File details
Details for the file processtitle-1.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 24.4 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3432c5184dd6ada271bb184766c58e312e6b3d2705b9051ebb8e8b18fb7ef46
|
|
| MD5 |
a214be12bf179d61d04a1a9a6f431719
|
|
| BLAKE2b-256 |
8ebaeb6fd649e5b421cf4550734679568d57976b32749a7c268776bee76e6c92
|
File details
Details for the file processtitle-1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 26.7 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0e0bb7dd9b6b7a7b8a765c10fe1493eb69294d94d31039bdc4f505bb7db23b9
|
|
| MD5 |
05fc2c3d6bb48988eda4dc7696091fc3
|
|
| BLAKE2b-256 |
74fdf5ae312bc58a467f6e06aeab4c950e99cbe6b0ab56830e64520ad0e37b22
|
File details
Details for the file processtitle-1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d109c8bc37e0876a9f71e53e17183d9d60adb67d292d19d0f5d1065512aef66
|
|
| MD5 |
873e3a2121cf04c76bdc08de3397db3d
|
|
| BLAKE2b-256 |
64a4eeb946d060a465376f594b3bba3ab71ec9846f41e6cec29e88ca82a47cf9
|
File details
Details for the file processtitle-1.0-cp313-cp313-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec37a531b696b802f273df09306864bb6dbfc08276f2dc41fe0d45be132e149b
|
|
| MD5 |
fdd9506c379301100a6e38ae8db29575
|
|
| BLAKE2b-256 |
ae995f5978f8b8d741fca5457fcafc63e0695f6a1ba4aa3042d594e1a27ede31
|
File details
Details for the file processtitle-1.0-cp313-cp313-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eebda0dd5477aedeffe9473c63f1d6452e6872783b6bdfc22de6791251af172
|
|
| MD5 |
eb55dff660125292ce86f67a1392de19
|
|
| BLAKE2b-256 |
674345e56a695b74048ef54d4a5805c0439e735c96d200c07dec09b45111fb19
|
File details
Details for the file processtitle-1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b21da6f4749e822751296c92c79a72152be85f28062dbe3874c517d011252b53
|
|
| MD5 |
544eb4c1cc0ed6e23a1d02bc9a7a3f29
|
|
| BLAKE2b-256 |
690e51b93873a9c0b90c1ef80afcff5b91479fa91db3533870246a72ba168b6e
|
File details
Details for the file processtitle-1.0-cp313-cp313-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 235.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65ada5a342214f646b7d0e13a1cc8245baea35c115fa39c5fd0c261865605794
|
|
| MD5 |
ee15320f778e86a4fbec5a058ae68226
|
|
| BLAKE2b-256 |
3ddb659178459afc5fba3eff34c42ec0300d3a24dff24dd770e8104f67657560
|
File details
Details for the file processtitle-1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 267.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c543cb81badff84b8b567ca12a8d832d4cb1f6fb9cb405b1afb7de0450dcd6b
|
|
| MD5 |
67ee3443f50d7454d3d68adcab12ab97
|
|
| BLAKE2b-256 |
263705f3b063e26471562ef5d9bb3d7a367921cb5933e5136d57d6aab12e168d
|
File details
Details for the file processtitle-1.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 267.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ab96e7d051f80ca9c276b80a1ec0096937600243960553bfdbba62e50e811e7
|
|
| MD5 |
68b992c8d258d68a6399730abf36ecc9
|
|
| BLAKE2b-256 |
41741ecebe76a641387714723913c68b664a6a71afb814d64bf6cbe53bd88877
|
File details
Details for the file processtitle-1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 258.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75e4218867ae0cbd060c4c6d86b9524bf058c1272f188a0ae2b8ae96e37f244f
|
|
| MD5 |
dd32d795f18fc1bbf45546a544b72064
|
|
| BLAKE2b-256 |
f335b6a7c9476a0611b2ed14f757f1309f338eb12d0d04721ff692439f44f2c9
|
File details
Details for the file processtitle-1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c50af47a5089dd797fba9250556e549ef7bf6ad668edc4a7bebe24e3a2da96b
|
|
| MD5 |
efc2f1191240c58efe0b7c449a730758
|
|
| BLAKE2b-256 |
7b92bd05ca03d94059530ef0acc8ec0cac038b74939f61e34afcf0e776e21146
|
File details
Details for the file processtitle-1.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
751aca93da9b8fbf2fc4dd948bbf1b4838481637d1f7ed445d6c12cd55961f2d
|
|
| MD5 |
02bdca83d2cf38f60fa84d43cc1b84d7
|
|
| BLAKE2b-256 |
5a379c4a0bc345013ae61e4695787db5c4acb5a5a467d7667891497ab65b3fa9
|
File details
Details for the file processtitle-1.0-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 40.9 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ee0f46489a2110406c9072c09fd1dfbaa7755181098048c6104ce6dfe8d0b80
|
|
| MD5 |
ccdb0fecfdfbaf60c3e658bf982e69b3
|
|
| BLAKE2b-256 |
d65da616c096ebf51477097c2b0d686e9b4608ed961daac39df1c49edc603a3a
|
File details
Details for the file processtitle-1.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 24.3 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
826f8b3935bdc9f9f1a89f6bb7b3763fe1e052de29b811e9de4642f47f225b9c
|
|
| MD5 |
52e4d03c37493b02a66abeac1c93e80a
|
|
| BLAKE2b-256 |
656063c4b4dae546dbbaaf7e147a4910afabbac342dd890aefbd4677d0fb5520
|
File details
Details for the file processtitle-1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 26.7 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6fc19ca58b75fe9a44628c34d6351493b1e81ae9219764febe91b4c423bf198
|
|
| MD5 |
a1544c599eefbd53dd81dd48689e6d9c
|
|
| BLAKE2b-256 |
8b34e3d09feb48b3dc12cb0c66364b42abaa8d42e439ae68bf250e6fa5edeedf
|
File details
Details for the file processtitle-1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c1ba7c7d93f929967c55c920696b32eaba87fe85804a1fba4781eb6d99b3034
|
|
| MD5 |
912b9c345848b792a2ac9df94e5f305b
|
|
| BLAKE2b-256 |
053b261761da8090682fc84100b1fab98cb18f4aac809b5b2c61c0316995769b
|
File details
Details for the file processtitle-1.0-cp312-cp312-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63553bb166414bfb5a8d08c151f4c35de981bb08e41c4b64c203ae7185cc3067
|
|
| MD5 |
b444c21e29a2ea924f5dec0bc6657602
|
|
| BLAKE2b-256 |
51c31417fe8676826a316c9a8503a11da5f2f585610b2b3d19db5adaa2a186a0
|
File details
Details for the file processtitle-1.0-cp312-cp312-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2163889798642ce921cfa9f3a8b3f4ebf5a20e3b95a9baefd952bcc28657112
|
|
| MD5 |
2219da6dc9c25fd1324927bd9dd00038
|
|
| BLAKE2b-256 |
7277024f59d15223e698f10d2ebd37b861efa283cb2f82f23e73d1e358d73918
|
File details
Details for the file processtitle-1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b7def9a1198315e7ad8d276798cc8355242eb7c36687f9c49e7c6cf1feefc79
|
|
| MD5 |
b9bb1f2f14ac678e29ad03cc269fa2ab
|
|
| BLAKE2b-256 |
b0653d843fe2baf0722d05b300d6e7530cd7ca8fd894d05964d675e61cf89286
|
File details
Details for the file processtitle-1.0-cp312-cp312-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 235.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cee3548b63ca8345327dd86816eb92c314960e68220d8743af9f9978df7865c
|
|
| MD5 |
e05807523220176f829c385672842f7f
|
|
| BLAKE2b-256 |
2eb671b3ac21247887d7856d96e37c81ce5b6841330f971171811755c0a9ce2f
|
File details
Details for the file processtitle-1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 267.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebbea75a51eddb8663d1036f78cf8f351269627fcb44402d8dc01cbfb0b05d4f
|
|
| MD5 |
8a8972c521521f5fcd8f049163cffddf
|
|
| BLAKE2b-256 |
e34b0a38f870e46e85e2b3a9d4967263ae716ad2709d5a37e8e789a550bd0ed4
|
File details
Details for the file processtitle-1.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 267.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1e6b9765401ed40ba52a075c4c6288cc50800ca2aae7e9b66d6350799a2c24
|
|
| MD5 |
a2e8642c29876d0ccfc6d757f3a353ae
|
|
| BLAKE2b-256 |
35208b94d8b479c43e7e366f59dd8acb26e10d6158c05c244283da4d0710a6ce
|
File details
Details for the file processtitle-1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 258.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeb14abd3229faa84bc63d52ef587178ea5ab5f852ca2c0034f27ec219d0f6eb
|
|
| MD5 |
614d0ad45cce60c3891fe871789930b8
|
|
| BLAKE2b-256 |
12259bb32fcddd1b52769c2d4f2ded515be2d1e6a47c77545677a85b2df3ac48
|
File details
Details for the file processtitle-1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b01161437e33ce87982f3fa38bd9e68a915ce919ec70bc995c0a1ef6c67f899
|
|
| MD5 |
6a3b19098f451d858e9ca5f6c2b58406
|
|
| BLAKE2b-256 |
dc07684d959c80b2c1fed5b110eb5f93c58d2da83af4716f412014a4d9470879
|
File details
Details for the file processtitle-1.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ddeecb921a0d6fad9315653acb7b2efa9d1eb44bcc76476d389d39261111c76
|
|
| MD5 |
b68dd377f87a3718d475c0768ec2c92d
|
|
| BLAKE2b-256 |
d6d795609d88b10065d797c6b76aa0fb827982c001ee0f41c8fd990520154beb
|
File details
Details for the file processtitle-1.0-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 40.9 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9552fc29e56523eb50c85b8ad15f6acf0469b46f5fbf9391dd732ca42879164c
|
|
| MD5 |
27d9d9d63dac4bbe7f537dcbf43e18d4
|
|
| BLAKE2b-256 |
418f973bd80ca14102c9225ba5931fad2ee6a578e114ff4fd254b97333c717cf
|
File details
Details for the file processtitle-1.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 24.3 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bafe49e6e23a497f026d229b9dea51bdb291a2389ea70050ac9fde69a5b30b4
|
|
| MD5 |
d1b6f461a41cb1f382088783bda06ae7
|
|
| BLAKE2b-256 |
537609d80277d4416233d599297ad17fb1231dd6202b0986286492bd0b936055
|
File details
Details for the file processtitle-1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 26.6 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
470738bdc28a1356b6b7300503c293dfad36ee9d57444ffdce7df7c9f44cc6ac
|
|
| MD5 |
3614394278a0bd449440075a31eb4a62
|
|
| BLAKE2b-256 |
23d026294b25a58312cb71e4603afe773e0196ca443966f236c47f9d67a95b24
|
File details
Details for the file processtitle-1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41b07881794930cfead53ab4eb564401f79cbed2b0566e48dc6254c8d2d93598
|
|
| MD5 |
f916fdc6d408caeb75172329bf260391
|
|
| BLAKE2b-256 |
dc1433111524f1392579fdfaa371abd38ee2f833abd451ad030bb0f6714a8445
|
File details
Details for the file processtitle-1.0-cp311-cp311-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4a85cb6f7c3b59a0c75dd7ace49c7d6b977e727ec436c7de5fd7b7ae80046a6
|
|
| MD5 |
c2333b50ae2da26b1d7600f16cda237a
|
|
| BLAKE2b-256 |
59c1057f65f09f61a1a340d102783ce3f049d7a86f363c7979c2598d8a995ca6
|
File details
Details for the file processtitle-1.0-cp311-cp311-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c49e5b0c47406215962ddb4c7d46b4f59268f4b6ae031528186910b98fa86611
|
|
| MD5 |
9ca725956efa92307493ad21b19012c8
|
|
| BLAKE2b-256 |
5c16027cc08433fab62339beaac8ad709568af76d4283f83d0ee979225028adc
|
File details
Details for the file processtitle-1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eb432c4d289d76289d1b461150ae54e07d8981f7eaf689428cff42cae5b449a
|
|
| MD5 |
fc4da3eb8eb89fb9af21e0d877e43803
|
|
| BLAKE2b-256 |
6c478825349c79cd90ac02904ac01550fffc6d8b36c3236abd14b5159de05f49
|
File details
Details for the file processtitle-1.0-cp311-cp311-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 234.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c64034194f00cb7edad328db5b4b37ea9bb76abc67104fc7b17ae5c672de6951
|
|
| MD5 |
5d1ed59375c659affee305fd8bcb3480
|
|
| BLAKE2b-256 |
b7e24ea57d535dfdb0fc7c3ae444bd00f64fe2fb0f6e67468b9666517072c0d4
|
File details
Details for the file processtitle-1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 266.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc6c2c37602e7db59fad69ec776f1df312e46734de3f31eb307031e24f6f18fa
|
|
| MD5 |
34bf115642874cb786e767c0b875cd7b
|
|
| BLAKE2b-256 |
b6b1f9e3874bd3fc989c763ea3de9ba2637e8ca55e62b75443fc0d2793eaefd2
|
File details
Details for the file processtitle-1.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 265.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1df743982fd385ecb721c76ba488a0281ebe8b08cd2c0ffc372df034b74988f7
|
|
| MD5 |
c0c0eb2273ed11b369f33d87e10703fb
|
|
| BLAKE2b-256 |
63ff51054e7470d19644bab9b3f455aee817a81cad3d2f42bbe9b74b9956a539
|
File details
Details for the file processtitle-1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 256.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22d51b624592bdfec806fa2c0cfaca0fbaab2faa656f204e9edeeff90ed7fede
|
|
| MD5 |
e6651b36ccb7611f9a66e675950bc5a4
|
|
| BLAKE2b-256 |
cc34883c148df2dfffae6c9b8b45830e69f0706f0b5bb575f967f7a395586490
|
File details
Details for the file processtitle-1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d41678cac22510794a899847c64975cb3fbb08fa14ec8c4697dec712bc82ad7
|
|
| MD5 |
41d284a93f28679b526f68d2055aa437
|
|
| BLAKE2b-256 |
5da01cc319b1468c03d2d74a3ba68eda8d9572bd69c61f8820023a214dce4ea6
|
File details
Details for the file processtitle-1.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e363d1c901f0eee6051317108af46f44fd5128a0e2c0428f326ab1eb601dbe75
|
|
| MD5 |
b3fd003f4c974c7e0ec99511a27758d6
|
|
| BLAKE2b-256 |
47ab90146d95707d09bc5f9d85c6f099108e165a91d9377a6a19a4bcafb8985a
|
File details
Details for the file processtitle-1.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 40.5 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bb0f0673fe6a3aa5d05427ba2b150818edcbb45c42b105945a0309947972c2d
|
|
| MD5 |
0e4ab3b00b90aec1ea505ef9e4b1b61c
|
|
| BLAKE2b-256 |
87c255e07c20270b4f95749514f1afd21e8ccfad84c1a8269b6f87f218399778
|
File details
Details for the file processtitle-1.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 24.3 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc5263dd6cc546a0a6028602133303427415af818350ea8f50e6a92f9e940d42
|
|
| MD5 |
b35b7b82c5d50c7e2b70d5033917e9c9
|
|
| BLAKE2b-256 |
586ace8233ac485972443cc2378eb675d204430d88deecee9d90ecc6aa64e276
|
File details
Details for the file processtitle-1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 26.6 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50fa84649cee6b62e54530666bf1d3b5bd68538d6d71ee6435870d65fd58c7af
|
|
| MD5 |
87da05ff74884194d00fa182e39b7f17
|
|
| BLAKE2b-256 |
0c98f04b3707bdc43905f2f7c786915607e72a81ea0c320f4c94e0fc11a1fb4d
|
File details
Details for the file processtitle-1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
778c47fde7bf6d95a4717404d5b3fd95b8cd5113b67f7ad8200d39cdabcd86f6
|
|
| MD5 |
04f1097937c72ca226a7135790590027
|
|
| BLAKE2b-256 |
cfa00431dd1de5e0beb71eb8a8df5d013a2d1bae0ebee4a06a709fe0ffe40b14
|
File details
Details for the file processtitle-1.0-cp310-cp310-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b28b1ca8ad082312ee754e283ffef9f7ec8989e7c92dc1a1e4b101dd2d6746a
|
|
| MD5 |
ba9114f5963a0084521f0d3e30dd82ee
|
|
| BLAKE2b-256 |
3d0b41e0f4ea6a42cec60c67f9297817afb91486cad31a6590cd5e3a82779a3d
|
File details
Details for the file processtitle-1.0-cp310-cp310-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1159d686b93d74b0b2150132749dd0bfae6d8093c2f77d3e2bec08e67ebc8885
|
|
| MD5 |
59fdba9e584cc878259c108301e9f4f7
|
|
| BLAKE2b-256 |
9373306a2fdc4ff995c3883ccdf296bbd2d7271d1c6184fd365426bfb2992535
|
File details
Details for the file processtitle-1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bff460a08a41955f6642bdfec1ca7e5dc8951c180ddadeca9cf7970876363b7
|
|
| MD5 |
8a3eb75e1bc81025714d389bbf19ec09
|
|
| BLAKE2b-256 |
df43127e4d7e28dbada2897cff235c00243aaed19a05efaa8cc40e134925d187
|
File details
Details for the file processtitle-1.0-cp310-cp310-manylinux_2_39_riscv64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-manylinux_2_39_riscv64.whl
- Upload date:
- Size: 233.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282030e5048f7d044bce9b1c67708cec1cbfadf7747040d0b60bf88ed603d270
|
|
| MD5 |
7118798cba2e962ee4ad23d8a34485e5
|
|
| BLAKE2b-256 |
c2ce60f43db0257d7d5e42d6434c22b995808dbb3206291ae4eacd00c5483951
|
File details
Details for the file processtitle-1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 265.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92bcb8b8cc934b2ff3c13c477d36a409ffcb451ac05e7c012f997fbdd3b85cff
|
|
| MD5 |
f0e58e2bce55a8d01706b9a608e4f768
|
|
| BLAKE2b-256 |
2faa0d91fa8a081f8ddec3d4411afc5ec85985be772e24f118f7a186cfab7d00
|
File details
Details for the file processtitle-1.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 264.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fc2b190524cf077958a552f212dd6ef19dcb3793eb338ea6d71be2a50e7ffd2
|
|
| MD5 |
b16ace51cbfd8ebc5c796d8d05e6d689
|
|
| BLAKE2b-256 |
25dbc16e66ea5f1affde2d6a04654aed97ab09e8f024643250195cb1f6e5d67d
|
File details
Details for the file processtitle-1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 256.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44cd38ba790f37f35105943942c01b35b97833ae90c412ec9987680e6da5bac5
|
|
| MD5 |
83cfe13460d2dc31ff44120411950cc1
|
|
| BLAKE2b-256 |
8a1a85d80680e849e7df98a34c6cd1bf38370a53a11c2c32fc59a05d6b12b881
|
File details
Details for the file processtitle-1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f2677afeae91e5ff5d415d33c639cdc5e23aa97ed95ddec7d75b52d6cb50a86
|
|
| MD5 |
c722dfae7e514ebf0a6310bd79d815cd
|
|
| BLAKE2b-256 |
c963dbe9865cb5ea154d180b53268fa695493a454b870f4a7eb2d36030f5335b
|
File details
Details for the file processtitle-1.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a16a334e53a763f47ba974588404b48d15217183a994c74a2a82988de90b9f3b
|
|
| MD5 |
6312abd95bd1955fcebd94cb66bc1ce5
|
|
| BLAKE2b-256 |
5c9e2edb1b93b096751b3c6b003f55dd38e61cc1973844e25ce846c1768a480a
|
File details
Details for the file processtitle-1.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: processtitle-1.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 40.5 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eee3c64bad8d2c50e1c985c472ed34fcd31e47edafe45e5f07d6bab03831283
|
|
| MD5 |
1e9a445ae01600edb4c1882412710bdc
|
|
| BLAKE2b-256 |
beb197d71978a36926357e6a1e5574171ed94179c96c1586db30399533d29d1d
|