yappi 1.6.10
pip install yappi
Released:
Yet Another Python Profiler
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Sümer Cip
- Tags python, thread, multithread, asyncio, gevent, profiler
- Requires: Python >=3.6
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
Yappi
A tracing profiler that is multithreading, asyncio and gevent aware.
Highlights
- Fast: Yappi is fast. It is completely written in C and lots of love and care went into making it fast.
- Unique: Yappi supports multithreaded, asyncio and gevent profiling. Tagging/filtering multiple profiler results has interesting use cases.
- Intuitive: Profiler can be started/stopped and results can be obtained from any time and any thread.
- Standards Compliant: Profiler results can be saved in callgrind or pstat formats.
- Rich in Feature set: Profiler results can show either Wall Time or actual CPU Time and can be aggregated from different sessions. Various flags are defined for filtering and sorting profiler results.
- Robust: Yappi has been around for years.
Motivation
CPython standard distribution comes with three deterministic profilers. cProfile
, Profile
and hotshot
. cProfile
is implemented as a C module based on lsprof
, Profile
is in pure Python and hotshot
can be seen as a small subset of a cProfile. The major issue is that all of these profilers lack support for multi-threaded programs and CPU time.
If you want to profile a multi-threaded application, you must give an entry point to these profilers and then maybe merge the outputs. None of these profilers are designed to work on long-running multi-threaded applications. It is also not possible to profile an application that start/stop/retrieve traces on the fly with these profilers.
Now fast forwarding to 2019: With the latest improvements on asyncio
library and asynchronous frameworks, most of the current profilers lacks the ability to show correct wall/cpu time or even call count information per-coroutine. Thus we need a different kind of approach to profile asynchronous code. Yappi, with v1.2 introduces the concept of coroutine profiling
. With coroutine-profiling
, you should be able to profile correct wall/cpu time and call count of your coroutine. (including the time spent in context switches, too). You can see details here.
Installation
Can be installed via PyPI
$ pip install yappi
OR from the source directly.
$ pip install git+https://github.com/sumerc/yappi#egg=yappi
Examples
A simple example:
import yappi
def a():
for _ in range(10000000): # do something CPU heavy
pass
yappi.set_clock_type("cpu") # Use set_clock_type("wall") for wall time
yappi.start()
a()
yappi.get_func_stats().print_all()
yappi.get_thread_stats().print_all()
'''
Clock type: CPU
Ordered by: totaltime, desc
name ncall tsub ttot tavg
doc.py:5 a 1 0.117907 0.117907 0.117907
name id tid ttot scnt
_MainThread 0 139867147315008 0.118297 1
'''
Profile a multithreaded application:
You can profile a multithreaded application via Yappi and can easily retrieve
per-thread profile information by filtering on ctx_id
with get_func_stats
API.
import yappi
import time
import threading
_NTHREAD = 3
def _work(n):
time.sleep(n * 0.1)
yappi.start()
threads = []
# generate _NTHREAD threads
for i in range(_NTHREAD):
t = threading.Thread(target=_work, args=(i + 1, ))
t.start()
threads.append(t)
# wait all threads to finish
for t in threads:
t.join()
yappi.stop()
# retrieve thread stats by their thread id (given by yappi)
threads = yappi.get_thread_stats()
for thread in threads:
print(
"Function stats for (%s) (%d)" % (thread.name, thread.id)
) # it is the Thread.__class__.__name__
yappi.get_func_stats(ctx_id=thread.id).print_all()
'''
Function stats for (Thread) (3)
name ncall tsub ttot tavg
..hon3.7/threading.py:859 Thread.run 1 0.000017 0.000062 0.000062
doc3.py:8 _work 1 0.000012 0.000045 0.000045
Function stats for (Thread) (2)
name ncall tsub ttot tavg
..hon3.7/threading.py:859 Thread.run 1 0.000017 0.000065 0.000065
doc3.py:8 _work 1 0.000010 0.000048 0.000048
Function stats for (Thread) (1)
name ncall tsub ttot tavg
..hon3.7/threading.py:859 Thread.run 1 0.000010 0.000043 0.000043
doc3.py:8 _work 1 0.000006 0.000033 0.000033
'''
Different ways to filter/sort stats:
You can use filter_callback
on get_func_stats
API to filter on functions, modules
or whatever available in YFuncStat
object.
import package_a
import yappi
import sys
def a():
pass
def b():
pass
yappi.start()
a()
b()
package_a.a()
yappi.stop()
# filter by module object
current_module = sys.modules[__name__]
stats = yappi.get_func_stats(
filter_callback=lambda x: yappi.module_matches(x, [current_module])
) # x is a yappi.YFuncStat object
stats.sort("name", "desc").print_all()
'''
Clock type: CPU
Ordered by: name, desc
name ncall tsub ttot tavg
doc2.py:10 b 1 0.000001 0.000001 0.000001
doc2.py:6 a 1 0.000001 0.000001 0.000001
'''
# filter by function object
stats = yappi.get_func_stats(
filter_callback=lambda x: yappi.func_matches(x, [a, b])
).print_all()
'''
name ncall tsub ttot tavg
doc2.py:6 a 1 0.000001 0.000001 0.000001
doc2.py:10 b 1 0.000001 0.000001 0.000001
'''
# filter by module name
stats = yappi.get_func_stats(filter_callback=lambda x: 'package_a' in x.module
).print_all()
'''
name ncall tsub ttot tavg
package_a/__init__.py:1 a 1 0.000001 0.000001 0.000001
'''
# filter by function name
stats = yappi.get_func_stats(filter_callback=lambda x: 'a' in x.name
).print_all()
'''
name ncall tsub ttot tavg
doc2.py:6 a 1 0.000001 0.000001 0.000001
package_a/__init__.py:1 a 1 0.000001 0.000001 0.000001
'''
Profile an asyncio application:
You can see that coroutine wall-time's are correctly profiled.
import asyncio
import yappi
async def foo():
await asyncio.sleep(1.0)
await baz()
await asyncio.sleep(0.5)
async def bar():
await asyncio.sleep(2.0)
async def baz():
await asyncio.sleep(1.0)
yappi.set_clock_type("WALL")
with yappi.run():
asyncio.run(foo())
asyncio.run(bar())
yappi.get_func_stats().print_all()
'''
Clock type: WALL
Ordered by: totaltime, desc
name ncall tsub ttot tavg
doc4.py:5 foo 1 0.000030 2.503808 2.503808
doc4.py:11 bar 1 0.000012 2.002492 2.002492
doc4.py:15 baz 1 0.000013 1.001397 1.001397
'''
Profile a gevent application:
You can use yappi to profile greenlet applications now!
import yappi
from greenlet import greenlet
import time
class GreenletA(greenlet):
def run(self):
time.sleep(1)
yappi.set_context_backend("greenlet")
yappi.set_clock_type("wall")
yappi.start(builtins=True)
a = GreenletA()
a.switch()
yappi.stop()
yappi.get_func_stats().print_all()
'''
name ncall tsub ttot tavg
tests/test_random.py:6 GreenletA.run 1 0.000007 1.000494 1.000494
time.sleep 1 1.000487 1.000487 1.000487
'''
Documentation
-
Coroutine Profiling (new in 1.2)
-
Greenlet Profiling (new in 1.3)
Note: Yes. I know I should be moving docs to readthedocs.io. Stay tuned!
Related Talks
Special thanks to A.Jesse Jiryu Davis:
PyCharm Integration
Yappi is the default profiler in PyCharm
. If you have Yappi installed, PyCharm
will use it. See the official documentation for more details.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Sümer Cip
- Tags python, thread, multithread, asyncio, gevent, profiler
- Requires: Python >=3.6
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
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
Uploaded
CPython 3.13
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ i686
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.13
macOS 10.13+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ i686
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.12
macOS 10.13+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.11
macOS 10.9+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.10
macOS 10.9+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
macOS 10.9+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.2+ i686
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.8
macOS 10.9+ x86-64
Uploaded
CPython 3.7m
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.7m
musllinux: musl 1.2+ i686
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.7m
macOS 10.9+ x86-64
Uploaded
CPython 3.6m
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.6m
musllinux: musl 1.2+ i686
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.6m
macOS 10.9+ x86-64
File details
Details for the file yappi-1.6.10.tar.gz
.
File metadata
- Download URL: yappi-1.6.10.tar.gz
- Upload date:
- Size: 59.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 463b822727658937bd95a7d80ca9758605b8cd0014e004e9e520ec9cb4db0c92 |
|
MD5 | 55bb9235aec7aa02c56656e7ad17c28e |
|
BLAKE2b-256 | 025bcfde09baf28f7046194b98f1c4907e172c48e7c1b2db35a918fc8a57727a |
File details
Details for the file yappi-1.6.10-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 34.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 334b31dfefae02bc28b7cd50953aaaae3292e40c15efb613792e4a587281a161 |
|
MD5 | 8d1054649159ef9bdf9bc6672358a50f |
|
BLAKE2b-256 | 237147f12130412703a6816dba27ebd0aa853612ea6fbe3f93f7698c3520ea92 |
File details
Details for the file yappi-1.6.10-cp313-cp313-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-win32.whl
- Upload date:
- Size: 32.0 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc84074575afcc5a2a712e132c0b51541b7434b3099be99f573964ef3b6064a8 |
|
MD5 | 3d14011dd895d77bf8a3f91d2d712424 |
|
BLAKE2b-256 | 887281acfc73b5d66031284c7b4d384200d016f96e26038466269ed139114e98 |
File details
Details for the file yappi-1.6.10-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 78.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d82839835ae2c291b88fb56d82f80c88c00d76df29f3c1ed050db73b553bef0 |
|
MD5 | 012bb54634a81d40f610a2d96fd71cb5 |
|
BLAKE2b-256 | 5daaea0dbf6e00c7dcb81b4d84d35f6e0584c448674fc19533ddb3198533d41b |
File details
Details for the file yappi-1.6.10-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 76.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 354cf94d659302b421b13c03487f2f1bce969b97b85fba88afb11f2ef83c35f3 |
|
MD5 | 757163e754aa89cd326b46756bd2db3a |
|
BLAKE2b-256 | f52862d8f97a62eafc443bb057442ae75b7f4741230c2dd774c5b7002bc05a4e |
File details
Details for the file yappi-1.6.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 81.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f27bbc3311a3662231cff395d38061683fac5c538f3bab6796ff05511d2cce43 |
|
MD5 | e5c4da8cb2f0677dcf3377e70e1fd446 |
|
BLAKE2b-256 | 62598fdcb2a660388a7778c52cdfa0c52654955cf7953f85efacd8fd771f8da0 |
File details
Details for the file yappi-1.6.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 77.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3736ea6458edbabd96918d88e2963594823e4ab4c58d62a52ef81f6b5839ec19 |
|
MD5 | 24c0500c0ed91908baacc7a4b6fb7ee4 |
|
BLAKE2b-256 | ccefa81fac59ca7a13fd26321d59a54841f70f76ce91b5884c001d77f534b3b1 |
File details
Details for the file yappi-1.6.10-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 32.9 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 944df9ebc6b283d6591a6b5f4c586d0eb9c6131c915f1b20fb36127ade83720d |
|
MD5 | d34a95aea6ef01fc5e2f0cb4961bbd0d |
|
BLAKE2b-256 | 2c339ca066f48c7fb21e0ab16fd5e1c99771275a8cec435ef7ac1840d13252f0 |
File details
Details for the file yappi-1.6.10-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 34.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a50eb3aec893c40554f8f811d3341af266d844e7759f7f7abfcdba2744885ea3 |
|
MD5 | 83e5123a1d0c4bef5cc1a5f4a913c3f3 |
|
BLAKE2b-256 | cb4517f50baed4a886fab2c34a040cefefe6623abcaaadf23f851207da9cd5e6 |
File details
Details for the file yappi-1.6.10-cp312-cp312-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-win32.whl
- Upload date:
- Size: 32.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dd13a430b046e2921ddf63d992da97968724b41a03e68292f06a2afa11c9d6e |
|
MD5 | fcd2f7a9b7f1ff8ac7709fd3f091238c |
|
BLAKE2b-256 | af4f0afcacc683f3c34570effc78e6d4c154dea9d6cc8549c2535fb75441be30 |
File details
Details for the file yappi-1.6.10-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 78.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01705971b728a4f95829b723d08883c7623ec275f4066f4048b28dc0151fe0af |
|
MD5 | d24c04ac92f59e1a5af1cf159bd71f05 |
|
BLAKE2b-256 | 0c686806060eaec421a21554c2f7ee8b1379ff02b059e0c753eb55e5b7b701a4 |
File details
Details for the file yappi-1.6.10-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 76.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d80938e566ac6329daa3b036fdf7bd34488010efcf0a65169a44603878daa4e |
|
MD5 | 6521a313aca576d05a7426053e5fc5b1 |
|
BLAKE2b-256 | 3944a3c64e0de45a0fc0bf327af95465a94cb8340a64e5abb7bb8af1cfd76f7f |
File details
Details for the file yappi-1.6.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 81.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 733a212014f2b44673ed62be53b3d4dd458844cd2008ba107f27a3293e42f43a |
|
MD5 | 8e40deed7508208b7c82a28ba94ee90e |
|
BLAKE2b-256 | 3801b03a2bc47fbb2d9bcad072fc2e08730f814defaac2ffbf76ef785fdff5d0 |
File details
Details for the file yappi-1.6.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 77.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9683c40de7e4ddff225068032cd97a6d928e4beddd9c7cf6515325be8ac28036 |
|
MD5 | d284422c55b839789748a978af3e281c |
|
BLAKE2b-256 | 54c585852db160c93ee3190741a4fff25075518ad97dea1e2ad47ca6eab31d2f |
File details
Details for the file yappi-1.6.10-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 32.9 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32c6d928604d7a236090bc36d324f309fe8344c91123bb84e37c43f6677adddc |
|
MD5 | ee3648f7ef2dc62584eb44af90509493 |
|
BLAKE2b-256 | 50011823649d33aee627440939d7247e1fa7ef64bd907ca4ea88438274d392fc |
File details
Details for the file yappi-1.6.10-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 34.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bd4f820e84d823724b8de4bf6857025e9e6c953978dd32485e054cf7de0eda7 |
|
MD5 | 3fca70c8a1d423592e276b5294061275 |
|
BLAKE2b-256 | 9f7d0f20ed8deaa675481071d0f7821756eaa716ba36ca6da9c68e44a6866d6e |
File details
Details for the file yappi-1.6.10-cp311-cp311-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-win32.whl
- Upload date:
- Size: 31.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff3688aa99b08ee10ced478b7255ac03865a8b5c0677482056acfe4d4f56e45f |
|
MD5 | 60f5771c4be43d07bc4362594c5943c3 |
|
BLAKE2b-256 | 94f1bb9d3074245eeba621dffa0715de53cd3adacfe3e49b565efddcd5a8a8e6 |
File details
Details for the file yappi-1.6.10-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 77.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cf46ebe43ac95f8736618a5f0ac763c7502a3aa964a1dda083d9e9c1bf07b12 |
|
MD5 | 81f0be4d6202765edc7a989cc45d22c0 |
|
BLAKE2b-256 | a768d0b6e4af43352f568d390858357e2d67a7f8172b6250daf0bc4846ef17aa |
File details
Details for the file yappi-1.6.10-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 74.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d62741c0ac883067e40481ab89ddd9e004292dbd22ac5992cf45745bf28ccc3 |
|
MD5 | c9147f5bb974fa534d123ecc2649fac4 |
|
BLAKE2b-256 | 4801775412e17e5192f6268c4ad13de498aad7a34e1fc83002d5be4eedf1f7c2 |
File details
Details for the file yappi-1.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 79.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40aa421ea7078795ed2f0e6bae3f8f64f6cd5019c885a12c613b44dd1fc598b4 |
|
MD5 | 6b36cf3c859be777fadfd8b288f05aab |
|
BLAKE2b-256 | e788d4261df64a57378c7c99fe5949c27990e3aee7cbc2f8dee840dbbdeaa4c1 |
File details
Details for the file yappi-1.6.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 76.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bc9a30b162cb0e13d6400476fa05c272992bd359592e9bba1a570878d9e155c |
|
MD5 | 0a17da62af3fe5ccb9f83ca8e3fcdc75 |
|
BLAKE2b-256 | 5f1d1d86bfbb756db33cf9d42489190b73ffe16a36c25afb394f2645e42c795b |
File details
Details for the file yappi-1.6.10-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 32.9 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20b8289e8cca781e948f72d86c03b308e077abeec53ec60080f77319041e0511 |
|
MD5 | b47d354294e8a9ab1c156887dd6e5de7 |
|
BLAKE2b-256 | 67fbafc324765f910a4d06f3064eeb7d7f3c593f47102b1def4dbef1a57344de |
File details
Details for the file yappi-1.6.10-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 34.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 402252d543e47464707ea5d7e4a63c7e77ce81cb58b8559c8883e67ae483911c |
|
MD5 | f0a444e19b50cfdc86e48b9550d2d554 |
|
BLAKE2b-256 | 163467e485b3ce68584641a612bc29bcc09bac049a28a985ed435b6da03bda32 |
File details
Details for the file yappi-1.6.10-cp310-cp310-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-win32.whl
- Upload date:
- Size: 31.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf117a9f733e0d8386bc8c454c11b275999c4bf559d742cbb8b60ace1d813f23 |
|
MD5 | 8e5ca88103b395248eb5028de062a98c |
|
BLAKE2b-256 | 3d064b3be344d3f47ca79235f71d8309b6a7fe7db2a71d40b7e83266925b4d05 |
File details
Details for the file yappi-1.6.10-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 76.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c01a2bd8abc3b6d33ae60dea26f97e2372e0087a747289bbab0fe67c8ac8925 |
|
MD5 | 06f4622ee27fdb9bbf9d30bbe2620da3 |
|
BLAKE2b-256 | 7c8943c245ba4cf4c35d2e1879c6c9b9b255152b5dbea815b32d34bf1741d3ef |
File details
Details for the file yappi-1.6.10-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 74.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 737e3cb6bb05f326eb63000663a4dc08dc08cc9827f7634445250c9610e5e717 |
|
MD5 | fa550d861b24caa2075b5a149f0a9fc1 |
|
BLAKE2b-256 | e21d505a9f9f1fc865879c3b6273755e739e1c626413a5d5356738b0641ebc79 |
File details
Details for the file yappi-1.6.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 79.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f326045442f7d63aa54dc4a18eda358b186af3316ae52619dd606058fb3b4182 |
|
MD5 | 09e86c0cdf97c9099d9cd9bccafe444d |
|
BLAKE2b-256 | cb93fd7248f51eb3f80885ad0bd0ea4e16966e39023f82788d1cd1265d244c87 |
File details
Details for the file yappi-1.6.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 75.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bbafb779c3f90edd09fd34733859226785618adee3179d5949dbba2e90f550a |
|
MD5 | 501155b327eed27d4ee1dba3362fbb45 |
|
BLAKE2b-256 | 1152eaba290ab9bac96791cf2f101e1949408ef3c347d633435467c70f8a78ce |
File details
Details for the file yappi-1.6.10-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 32.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f03127742746ec4cf7e422b08212daf094505ab7f5d725d7b273ed3c475c3d9 |
|
MD5 | 8ac40626af1abbe66f3d1720f5edfbe4 |
|
BLAKE2b-256 | 105b17dc1e58919cc14e8fb5027ccdb1134e324c235d527ccaac53d2e64778f7 |
File details
Details for the file yappi-1.6.10-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 34.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3f833bae26d1046610a08ddb0c968311056d07c8930ab11985e1e38c97cb91e |
|
MD5 | 24c7438ca02d1b74b50d2830e4c7112b |
|
BLAKE2b-256 | 7069e529c43a46674ec83e7a76f6feaf60aced3ce85b68718cb465b070cf9183 |
File details
Details for the file yappi-1.6.10-cp39-cp39-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-win32.whl
- Upload date:
- Size: 31.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4efb7ee80a1ac4511e900ebced03aea761ab129269b0d571586a25d3a71e7a35 |
|
MD5 | 2a496892f7f91e4a53164bd62a79d1b3 |
|
BLAKE2b-256 | dd8431b4d13a1729611dd58b04a0e9e578d1a3582efed0fe9882e8271bcd2fe5 |
File details
Details for the file yappi-1.6.10-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 75.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2594ab790a9db37223e7861ec9cdf74d1edf05a78b31a8806ff24abcde668bea |
|
MD5 | 56ed41bf76e5c266c06f38154293f8d4 |
|
BLAKE2b-256 | a27b9a784fe55a37c34111cff18302d9612173a68e83a552b5d222557cc200e4 |
File details
Details for the file yappi-1.6.10-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 73.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba1cd02fd914441d916db2972c3657711b2d7843cdd481e16244dee5870579af |
|
MD5 | e7e0295b56899ee4b488fe0b9a109d4b |
|
BLAKE2b-256 | 075f8399d446e2e4731e50f2b5ba1895646f2b6d70932aefe4be78eed8470552 |
File details
Details for the file yappi-1.6.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 78.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2e08a11f7e6b49ef09659506ac3bf0484881d6f634c6026c6bcbe3d345ee7c2 |
|
MD5 | e930d7c01afaa49102cc415ce861e84c |
|
BLAKE2b-256 | 857f556a1cdc2b81f8db53d1e4f3fb3a00a100ac378d6987d6585fad291b587b |
File details
Details for the file yappi-1.6.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 74.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 721a67aa9f110d509e2729cb145b79b87fe28d42e253476a524fa781aff41c3c |
|
MD5 | f64010d8b3968837cb85047cef86845a |
|
BLAKE2b-256 | b0be6180be4d9c070b90df3fc1a1ccf0ad89db18a3934a1e2c3b26b2cea6e8fe |
File details
Details for the file yappi-1.6.10-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 32.7 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 198831ccab42295ae2be265d422fdc0d9ccc8ae3e074e7c70fb58731e8181221 |
|
MD5 | 43d8308a5560aef41b731b9728ee6636 |
|
BLAKE2b-256 | 2058897a2e69661d90ff9afa66c902a9a1c35c1ad1a79ca7ecfc506be7b41dbc |
File details
Details for the file yappi-1.6.10-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 34.3 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6822f33ae4474eb9ffc8865e64cba70daef23832be36b4d63d1d8dfd890101cf |
|
MD5 | 26187492d360a54baa9f4295acb9ee14 |
|
BLAKE2b-256 | 8706447363d07dec51fb89e81227c50fa4fb717b7ce203a9bcfbd6f596c19944 |
File details
Details for the file yappi-1.6.10-cp38-cp38-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-win32.whl
- Upload date:
- Size: 31.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dec8fb0125fe636f9218ec3ce022d8435299beadfee1def82ee75e11bce38ebd |
|
MD5 | 3f079cb16bcbe4fa0849b30c3ffc8bc7 |
|
BLAKE2b-256 | d39777ea3d7c200fe779fe495edd30c8423797f52229cdcecfc3d0f6e6c992d9 |
File details
Details for the file yappi-1.6.10-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 76.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49f1f8b16d6f42a79a06ae5268f39e71de3648d6797471dc71d80d91be4a6484 |
|
MD5 | 194673d87e1bad59ca8f54b91464c647 |
|
BLAKE2b-256 | a1dda07d2f993aa0891fb435b23dd62a11cea5851ca0831164ee2ea216e92974 |
File details
Details for the file yappi-1.6.10-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 74.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a4bd5dd1c50e81440c712e6f43ac682768690d2dd0307665910a52db2d69175 |
|
MD5 | 86f9297a9564b17357dfeff42da2d805 |
|
BLAKE2b-256 | 3da94dba3fb3eea619ed8c88815569d79dd787b97ed242c008337107317ecf2d |
File details
Details for the file yappi-1.6.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 78.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d229ab4f2711aeed440037d9007db79d776e79c552ecde23b0b68591fa7ecccf |
|
MD5 | 36633db683ab739607efc8a38a5c009b |
|
BLAKE2b-256 | 2c1099a41ce573b59c6f0076e49f06371717b2f6f1e276ca8f15ebbbdb2b5773 |
File details
Details for the file yappi-1.6.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 75.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ba5c27a82cdd84e5102b789ab5061431944e3dee27e0970c3167b3bce78b262 |
|
MD5 | 5e945a8f149c629e9a296609e1bf0926 |
|
BLAKE2b-256 | cb317f8f660c029095340f255da3319202787345ba736339997498f85653c4eb |
File details
Details for the file yappi-1.6.10-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 32.7 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1795ea62ee9a39c1cff01a2c477b8bd5b1ca95c17d258efbf770b73eb62b2b8 |
|
MD5 | 9614e4a690583b6b9519de7e07ed235c |
|
BLAKE2b-256 | 92aacac80331117b49a5a1c37360e835e256cd8df31f1c27e1045ff65dc7e4bc |
File details
Details for the file yappi-1.6.10-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 34.3 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2246e57e1ab7d11a184042fe5726fbffca8c1a59c5eb01d1a043741403bf844d |
|
MD5 | cd8a33d886142c5175a438389588be32 |
|
BLAKE2b-256 | 24c1a3414af285c97d356786ee11c4fe272a4fa668c451998eb5dd630bbe67cb |
File details
Details for the file yappi-1.6.10-cp37-cp37m-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-win32.whl
- Upload date:
- Size: 31.7 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 228ab550d53b5e37d618b42f5085e504376963b48f867d45d0fdc8a1e0c811d2 |
|
MD5 | 3d18a420ce0fb11a345edf8a7b448522 |
|
BLAKE2b-256 | 0f3ca6c46dcdf8f1bfc693a0069f4cf2b3785d8a20fa104b983fdd6b9cb33632 |
File details
Details for the file yappi-1.6.10-cp37-cp37m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 74.5 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aa33acd51ba1b5d81e5d6ec305d144531d215635b9dfd8ee1d57688c77725af |
|
MD5 | 1b7978e56029997628722402dcb05f01 |
|
BLAKE2b-256 | a010bd5d3618a27f4d177e4c56118906b71ae4287d468a63a1e102968018fac8 |
File details
Details for the file yappi-1.6.10-cp37-cp37m-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 72.5 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c713b660a23f4f8a33ea08a168f9f94d92b0383683e8ae3e9467587b5a8a0eae |
|
MD5 | 862853ccd43d771516e228de9819fc63 |
|
BLAKE2b-256 | c08a9ecbe108b36c2a796729571ed689e11d46ff06cf0e3f96b3cae75afff3c6 |
File details
Details for the file yappi-1.6.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 76.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1305d50e805358937b022d455a17127a7ea2eb8eaf7595e0d06b0760f4bcc58 |
|
MD5 | c90c7f4e0d076a41ede2ca5ca4ab89ca |
|
BLAKE2b-256 | 87f2db4b4d56c143a77122df146025bc327419a53d025c1101164ca3a9dc3aec |
File details
Details for the file yappi-1.6.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 73.3 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3752ab9480f28709427d6077d220d963ed7caa84e18fd0f404022f4076850b0e |
|
MD5 | 178e808674a714c18071b6d59ac0415a |
|
BLAKE2b-256 | 6340cb5e09646c807bb35c8f3ab333b0621265844e965ed491a46ee909e1d87c |
File details
Details for the file yappi-1.6.10-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 32.6 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 215964abb3818124bc638cf5456ca311e70188146afb30336cced0fc4ef42f5b |
|
MD5 | 46b9d0646b811c1fefd5ba5da0eba27e |
|
BLAKE2b-256 | 8798571f3b2cb9684be3b887cc7b753ae62d98063a088111e0846b6223925624 |
File details
Details for the file yappi-1.6.10-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 37.5 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e234dfd385fefaecc640235448d912e35f6a1400bc73be723744e901f2432527 |
|
MD5 | 0a4a6d3ec2ad6eaaf7bc601e15cc976b |
|
BLAKE2b-256 | 4f10b6a23f3d2b8fe391ab0c89ab747ed6a9058cd5f3b7f9012c9594517ac765 |
File details
Details for the file yappi-1.6.10-cp36-cp36m-win32.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-win32.whl
- Upload date:
- Size: 33.6 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de7aeaae96ce5d727d2d3f905dfbdbb512c4be1f7ef5178facac0835da63738a |
|
MD5 | 35ac59da59219031c5c93bac59a2d3aa |
|
BLAKE2b-256 | 66af6639b76ad18438123a86b34a872befd53ed614c286fae47c522698460c67 |
File details
Details for the file yappi-1.6.10-cp36-cp36m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 73.3 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 307d681dd0cdaa7986e3b22115e41597f92778db03ba9be5096cfcb13929c5e9 |
|
MD5 | 3f5edd998a3fe9fcdab590ad4dec2251 |
|
BLAKE2b-256 | 8a3af98c598f4655e0c8020a68664d00633a89bf073b69107b00115ce48d510b |
File details
Details for the file yappi-1.6.10-cp36-cp36m-musllinux_1_2_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-musllinux_1_2_i686.whl
- Upload date:
- Size: 71.3 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce9b908e99368c14bcdc1e198fc2ffe0cf42191ebfcec5458d10c4335f2abaf6 |
|
MD5 | fbbf16cfa6913485919775dd7d6330f4 |
|
BLAKE2b-256 | 01133630c7988f910d1f610935b3020ff3d5e85d84cc9e19e9ac0b1650f22719 |
File details
Details for the file yappi-1.6.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 75.7 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d95ce88d0b533a44a6d9521b983e3412e5c50d7fd152f2155764effad4ecf7f |
|
MD5 | d850a1c60b33c670c2085958f8cb05e4 |
|
BLAKE2b-256 | 58f892e4799d8d31d4d0ef282b25e922133a0f948ff1d02118b485c814ed3691 |
File details
Details for the file yappi-1.6.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 72.1 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9b3e1ce82b2bf30eeab19df7544d2caf5d7dc06bd7196ee2249a94e2081a5ae |
|
MD5 | fe88a256fa356a78c733034f8fd8715a |
|
BLAKE2b-256 | d2cf4494fdf401b824b0c440902fcd4e9fd7fa72cb3fa0ec6cbb2d34c33b7e05 |
File details
Details for the file yappi-1.6.10-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: yappi-1.6.10-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 32.5 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0b4bbdbaeda9ae84364a26cef6ccc512c44f3131a0b074f8892c5147f2e3bea |
|
MD5 | f34176cb792235528245275bf62cfbd7 |
|
BLAKE2b-256 | 4284f2f20d704a0a3a3022a8424e8d58d3b3150b52709035cbf89f7017fd699d |