Skip to main content

Yet Another Python Profiler

Project description

yappi

Yappi

A tracing profiler that is multithreading, asyncio and gevent aware.

FreePalestine.Dev

From the river to the sea, Palestine will be free

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

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yappi-1.7.6.tar.gz (62.6 kB view details)

Uploaded Source

Built Distributions

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

yappi-1.7.6-cp314-cp314-win_arm64.whl (33.4 kB view details)

Uploaded CPython 3.14Windows ARM64

yappi-1.7.6-cp314-cp314-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.14Windows x86-64

yappi-1.7.6-cp314-cp314-win32.whl (33.5 kB view details)

Uploaded CPython 3.14Windows x86

yappi-1.7.6-cp314-cp314-musllinux_1_2_x86_64.whl (80.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp314-cp314-musllinux_1_2_aarch64.whl (80.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.4 kB view details)

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

yappi-1.7.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (83.0 kB view details)

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

yappi-1.7.6-cp314-cp314-macosx_11_0_arm64.whl (33.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yappi-1.7.6-cp314-cp314-macosx_10_15_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

yappi-1.7.6-cp313-cp313-win_arm64.whl (32.9 kB view details)

Uploaded CPython 3.13Windows ARM64

yappi-1.7.6-cp313-cp313-win_amd64.whl (35.2 kB view details)

Uploaded CPython 3.13Windows x86-64

yappi-1.7.6-cp313-cp313-win32.whl (32.9 kB view details)

Uploaded CPython 3.13Windows x86

yappi-1.7.6-cp313-cp313-musllinux_1_2_x86_64.whl (80.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp313-cp313-musllinux_1_2_aarch64.whl (80.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.6 kB view details)

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

yappi-1.7.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (83.1 kB view details)

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

yappi-1.7.6-cp313-cp313-macosx_11_0_arm64.whl (33.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yappi-1.7.6-cp313-cp313-macosx_10_13_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

yappi-1.7.6-cp312-cp312-win_arm64.whl (32.8 kB view details)

Uploaded CPython 3.12Windows ARM64

yappi-1.7.6-cp312-cp312-win_amd64.whl (35.2 kB view details)

Uploaded CPython 3.12Windows x86-64

yappi-1.7.6-cp312-cp312-win32.whl (32.9 kB view details)

Uploaded CPython 3.12Windows x86

yappi-1.7.6-cp312-cp312-musllinux_1_2_x86_64.whl (80.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp312-cp312-musllinux_1_2_aarch64.whl (80.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.3 kB view details)

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

yappi-1.7.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.8 kB view details)

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

yappi-1.7.6-cp312-cp312-macosx_11_0_arm64.whl (33.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yappi-1.7.6-cp312-cp312-macosx_10_13_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

yappi-1.7.6-cp311-cp311-win_arm64.whl (32.8 kB view details)

Uploaded CPython 3.11Windows ARM64

yappi-1.7.6-cp311-cp311-win_amd64.whl (35.1 kB view details)

Uploaded CPython 3.11Windows x86-64

yappi-1.7.6-cp311-cp311-win32.whl (32.8 kB view details)

Uploaded CPython 3.11Windows x86

yappi-1.7.6-cp311-cp311-musllinux_1_2_x86_64.whl (78.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp311-cp311-musllinux_1_2_aarch64.whl (79.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (80.6 kB view details)

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

yappi-1.7.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (81.5 kB view details)

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

yappi-1.7.6-cp311-cp311-macosx_11_0_arm64.whl (33.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yappi-1.7.6-cp311-cp311-macosx_10_9_x86_64.whl (33.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yappi-1.7.6-cp310-cp310-win_arm64.whl (32.8 kB view details)

Uploaded CPython 3.10Windows ARM64

yappi-1.7.6-cp310-cp310-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.10Windows x86-64

yappi-1.7.6-cp310-cp310-win32.whl (32.7 kB view details)

Uploaded CPython 3.10Windows x86

yappi-1.7.6-cp310-cp310-musllinux_1_2_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp310-cp310-musllinux_1_2_aarch64.whl (77.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.3 kB view details)

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

yappi-1.7.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.0 kB view details)

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

yappi-1.7.6-cp310-cp310-macosx_11_0_arm64.whl (33.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yappi-1.7.6-cp310-cp310-macosx_10_9_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yappi-1.7.6-cp39-cp39-win_arm64.whl (32.7 kB view details)

Uploaded CPython 3.9Windows ARM64

yappi-1.7.6-cp39-cp39-win_amd64.whl (35.1 kB view details)

Uploaded CPython 3.9Windows x86-64

yappi-1.7.6-cp39-cp39-win32.whl (32.7 kB view details)

Uploaded CPython 3.9Windows x86

yappi-1.7.6-cp39-cp39-musllinux_1_2_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp39-cp39-musllinux_1_2_aarch64.whl (76.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yappi-1.7.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (79.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yappi-1.7.6-cp39-cp39-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yappi-1.7.6-cp39-cp39-macosx_10_9_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

yappi-1.7.6-cp38-cp38-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.8Windows x86-64

yappi-1.7.6-cp38-cp38-win32.whl (32.6 kB view details)

Uploaded CPython 3.8Windows x86

yappi-1.7.6-cp38-cp38-musllinux_1_2_x86_64.whl (76.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

yappi-1.7.6-cp38-cp38-musllinux_1_2_aarch64.whl (77.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

yappi-1.7.6-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (78.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yappi-1.7.6-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (79.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yappi-1.7.6-cp38-cp38-macosx_11_0_arm64.whl (32.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

yappi-1.7.6-cp38-cp38-macosx_10_9_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file yappi-1.7.6.tar.gz.

File metadata

  • Download URL: yappi-1.7.6.tar.gz
  • Upload date:
  • Size: 62.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6.tar.gz
Algorithm Hash digest
SHA256 c94281936af77c00c6ac2306a0e7f85a67e354d717120df85fcc5dfb9243d4dd
MD5 b5c6f62f5c37ad79f3d02d3e97255361
BLAKE2b-256 9f47f7ec7744dff1104560d6276f951a8182f5b805e8d86ece591aebd0512845

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 33.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b6a189c4b666933218d4bd4b7e1e22d03123120dcba3af4d6c2748ba7efba9ac
MD5 be9232c91455f5e38f1296bdcf3b44f5
BLAKE2b-256 cb885d9bea42f502a3916cd73934a7e4d522856e019a55e3364901c457e9e530

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 53b8b8b6ad4f42cb82107c9fa96d103de33f76785e0ce84f5a326e66efc80f64
MD5 6148861437dd6ad2c94c324bf94b7e26
BLAKE2b-256 1bd2b468708803dcfead2b9c0415189ae89d0c17215c22715ffbc65372c0eccd

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5d1d7ba37477da04cc1005784036a535ec5e053cfa09aec7d20e5bc436aedb8c
MD5 9f640d2042e60ef2f7ea3b092fff24bb
BLAKE2b-256 a23758c6601a43b9aa69f6c05cc2538ece44b73380349458d5fd397a737514cb

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b44e7a3187290615877d039bb2f4e232e1b7a5858b314ef6b011bd90447b537
MD5 ee264605e291b38930a5e5011c51d62a
BLAKE2b-256 862bdbb6c82cc6f2b4d642af2b612f8930cb0948f4ede5d0307a4b45cb676932

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e3ef62417c598474a359de6aef92e13ea623416bb0ff45fa4b97e6569120549
MD5 c8b161b74ef475a6ee2bf5a651cc3961
BLAKE2b-256 f6ff9a6a783840a595ada5c35355c7a1452846ecc69e44ba192e7c2a1236239e

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dedd28687f48607db40874629a47bc93d16f1b9c93045f34961620bda76df9d7
MD5 adb8f2913be6b5d10465859303282424
BLAKE2b-256 24d00c55c25d74bd4bbe46031fc316927e93fc4b438005db66313ddc02d23bdb

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06c0487ab02e3a9722524c8d034feeadbdc2070d6530c38f7483291bf978b800
MD5 c2df54b10113ca5e6f3aba215a2b2013
BLAKE2b-256 3ed57b5fb53dff4f9361c88161bd1cd6e47388d57aaba8ae22ead354d37f8ecc

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9b018df48bc061248ae1fc36e161e9b4fb2cbbc50a8a0dfb68b9db4608bc9da
MD5 165e2c51712438aabea7ff6ebe4611c0
BLAKE2b-256 2a9deb1298c95b00891ed1c62262779034bb109d5dea66c4db8546106f698602

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8bf3595e8c1c0326b8012591bc96b72625c7424d4d9fbe4b640b0aafd81f88dc
MD5 06e41cfb97766b7f7902084692e17a9d
BLAKE2b-256 9eb3d3fc45ea2c23c798887e1897a0aac92f8680d109a2381dbfefc70228cbb9

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4981a243c5dbf105f6e1415197935ca36fde2b28adf26d2feceb95b5f1f77f06
MD5 8b5e4c4bc9e69287d6a17fa3a37a8ecc
BLAKE2b-256 3ab0dec448196d207b2e3b4e6b27dd74d0f1714b645af4f25cfe7dfd564ec14f

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95f9f326483d111b768f630a2d60689de7defff777f016b1f0dab9e93f36beb5
MD5 2d987a332334478edbeba9106f91dbcb
BLAKE2b-256 a16cdede83e0ca33701681acdb06854e492010257ae83bd9dda8e953983fab3a

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c9e3a92a04d9d6199fa0d157139beff1ca7eea7389e0e6b46b1353d8ffeec6a3
MD5 ff1c4dfc1dba4ea637bbfd53d121e3fa
BLAKE2b-256 922aa42901c467259e10193c66a24bff410f041896ecdd3cb7b42dd515a54b2a

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3b5742d39c1ebe8909db0dec4a5b724a5a6167161864280021298f7ef4e76a1
MD5 cf38da6b09bd3ce855c14c9aae7824f0
BLAKE2b-256 689e9fa404fee5eb4942ad36409b5d00e3783bd573982aa84f22c8a2646a7125

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5beecd15ff133c93fc505669754cb7caadd7fb19e87a71af133dfd1410e17aff
MD5 d24963c5ceb8ff277f9ec72074b90c8b
BLAKE2b-256 6dd919b43be0e0f2a72518ec4907138614d4f98027839c10cd6b9b3a607cca2a

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e100b6c36b922fc407078ed74f08b2463f46efc1fb440387eb493966e4ec434
MD5 bc23c18f9aa963a0155720728c329330
BLAKE2b-256 f05224e214e5d4093e7b137fac95958afe289d1153ad35e6556be348c55a0b6a

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b27541c7f77ef2f76b2e0bb5da6dce5dc5fcdc7e500b4756e7a3e077d499ac25
MD5 ead46cfd50899594d469e2159010d9e9
BLAKE2b-256 1704078db90359b39496f9192e375cd97831b138794cf456ad43bd8c7b65a4e3

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4643d431656ec63e83455605ba29d1609d36b2fe14412e6939a223c323a7aee
MD5 a2e76aa0416b31820a0680d292339a0d
BLAKE2b-256 aacaf36ccb82d7c96dee3858d26ed08e67de1767c309f285dbb2f76eceeaba48

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 072df6fa8b4cfb5159c261dd0df8e8b85de0adbadbc5e953e1183da193674bc4
MD5 9ee49ce852228a35fdd1bfe83199bd41
BLAKE2b-256 15b09a10f3a22290b67e23f339318fd368c173547478e0896f89363fb9cf190b

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0adc831b099a554831335819d7eb1643e189e4f3aa2db873ca5d584bd42dba01
MD5 84f27c7f86f06c4cd18b5dbe6f88f6b1
BLAKE2b-256 3b72711a33a5bf45e5af484a48001b75908dade76d4b8ed5d180f89dc62c5a5a

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 59bd23fb39a7b9027c5eecc94585042849cb36be9af2d35c31812be1408af356
MD5 bba465c4034cb67e21c4fdd0bbd2293a
BLAKE2b-256 0c89a9ee11f80482263b7268c8968a4e675393454167b20574831a357610afd4

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dbcf79ee2f1a96ec52e8291c07e27c0e38eead61a5c24d57eb467b5d9e6f2f9f
MD5 e68e8d77786646c4fc3b92ef64800702
BLAKE2b-256 a279f056c72ba190d186fe52eb6a9181aab15dbd68a868ab5c7375e3b5796565

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62cbb47dffca45b906d52a3c8f02e508f67d657275fb9d897e1e736fe5afe25f
MD5 cac4111008f159c1219e084e8482c575
BLAKE2b-256 83e66e11c44a90725a6f1afa4bc308618b2efc07a90d4c06e1d5a3b0125f8e6c

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178b23a56a59ddd58a528848e9242040ecad6d2fe0bcfb439455eef02cd43b07
MD5 be61848999b89cf58d8ad65f4ba4005a
BLAKE2b-256 1f95fdcabc38a3e70e7c6394d07868ff25c9984a1ea97020cc65d8858c71aa62

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a88615e2b9817887f6d1addfd12466a8529f25acc58b656205ae3f641cd725b
MD5 e50c1b0cc1fd3668675db2efe6cb7f7d
BLAKE2b-256 94e0e49b8e12140dba82767ee9fd8de1577be90a09a083aa6e0f02fdfc3e8ee9

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e878f63781761db7b62265468d78147b95df9ca2af9bc5140f94ad0faffe11c
MD5 02f7ebd4d695c101f1bf8c2afa51c720
BLAKE2b-256 7a80220c5a34e3a4949cea0e0ff1049afab3a67f1bfb348db89a16bb74c77621

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15ed0d845e30b35952d09dd4f70df81089db05b735d57c75e0924ebacda14a34
MD5 6a2566e08fbdf2ca93f9fa697e22b0c4
BLAKE2b-256 3fbeaf330ad8ede549ecaa8b29d3a2185e2209b3a87056c05dbaaa7841497c6d

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56fae31c4e09448a9919c1e6a4f976b2a49aa914f42e6e95355f6329c83003da
MD5 b1d95d79d93ab341a9eb1ec211ed778b
BLAKE2b-256 1b0e948fdb5980494c50fcf4d24cfd1d5c2ea9c48d4dd151e6b9c032d7ac5fed

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b6a4e5b7c813aa147ddc6a12f660de01829da184d760095dd3609cf1059b64e3
MD5 54fb23a2771dc1b4fc1dadff0abb988c
BLAKE2b-256 ae0aaa57e4502235ea3bf837845895f996b94e41fb4a7cf2c98f96d9f98b3634

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8721d2137155880eaf851b0a1bc9ad3e9a3c175e28869a87e8abd22d2b12029
MD5 c5e78c474d4eec3a1e7d9d70f6311183
BLAKE2b-256 612cbb70b2af0d684d34c3432f8edd5d526ad45d55f7e4652d7f9d62e7408bb0

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 380d6b49d5d62df60c022c7c510dc56cac688f2329cda07954a0d99edeba644c
MD5 41c9c9351cf602fc3af880953f298970
BLAKE2b-256 b0d638bdf52d49e3f0349730da50ccf36d83b6d8b107dbdb7ff6e89347bebf8b

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 322bdfe2693492c226c31fcb0c197a203a0ff8e65e0594882c4d6061a1184b49
MD5 8ff5500e50d62357a6749b031e8aaf93
BLAKE2b-256 fd4cda46a83e33a9f20f6f53f675dd3aba433fd989d04c723c1154e7f1485f95

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84fb5444b1e10c66f34fc65fdaa461dbce703865925d5d81604e614e775f9c24
MD5 0b6c5b2cd997f59000b7d6e8d94747f7
BLAKE2b-256 e423da8868b2654795411026778b45e0a2a72fa75f6aad5c1603263a5ff6e14f

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 757199a1d4e8b3f27656b69612d6db99fb06df6e25dc3b37a01b11e564b135fe
MD5 edfb1d43b5da1dc2341629460e254e9d
BLAKE2b-256 8b080dc97e9131004491b55cabc6d8d8b9e498e4e80cfdf5df04d4bf8e5c4829

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8aa1f8983463d064cdd28709f76c5886bc1417607f075fc326e605faa44e7f04
MD5 63db1bf1b946a40d3d360a863aef089c
BLAKE2b-256 156ac4c34f8fb1e683e9cf513f842c5ad1accbdc701b635192a47f701eebfdca

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4b62efda1ca0b820985ae31f5081fa8250307f45d5905ba78b19c558fccd9e2
MD5 0e39cfdaa600c73cf7be376d0b2292c6
BLAKE2b-256 b3dd3692268998ebbbfd984ffdea52f56548480626d046eb1e83fb50a7e3e704

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d6b52ebe13f05c4845df803aca02ea209cb6de71b5e16a26a938543d9df4342
MD5 d0c9e9a22610844c3c773b181b2ca3fc
BLAKE2b-256 316d332fb3c5044b029398e82faea2cf0723ba57e26383d5ad461d2e1f6f049e

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 21e0347a8cf2dcda5f013dacf60b3b887d5aba0bae77b3d4ada51e85a2f5069a
MD5 17b62266df73f9377ab0c8acff322727
BLAKE2b-256 b3bff18429c20d39b10c57fdb53cc74c8069deb2b1fc4106c5c235fcda155c4b

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6494b59c04c6c16d35bb44df0f625e738a9632f644236015660b1a20e39db81
MD5 11703c6b78a3929e32eef44ec739298f
BLAKE2b-256 0f3ad7f08cd35fbdd570505dca2c12ea63e24aacdeef18b8b6f4e4de191329cd

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 91363676076f7361db7e9762c64f330d0a25d93904b036afe1af09a507658c83
MD5 d80773e09f32fc49af458c068e1ecd1a
BLAKE2b-256 67df0625498b49031c924378f1af2fdb5e6d7110cfe762ab57002fa064ae5bca

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 343d7c74ff93389d89ef448f91afde80eb3411c81aa0711682342d6933bf006f
MD5 7121e65a3d7909be09f19ce22d45a68f
BLAKE2b-256 c680b3141fdc360233d06598a16a4c9290d794baddac106181986e67b3ec8d1b

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cca3d18602d0f9d3ed3529dc3117a006a0c772c86c780c7842438ae8c62e9688
MD5 f9b9a7fd899284993b9efc6040617d82
BLAKE2b-256 2e64e593da46a81eba534c6a74a1fa154f0485fa9058248fa7e94abf0b2f9e46

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7a7dcf4ddfa2be4e08f543241320855bfa90c5c566d68ffb60980f07e347226
MD5 69dc17de5a9b64c51cb3c6b8b75d5d1b
BLAKE2b-256 ffe94d1e36be943e94f4ead505bd4d44febf9d97107f28f360e63c60f864aae8

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e67dba03d83408ac2a1f32343b5b0eea0b0758d9c76091d24f7265eb3a57cbdc
MD5 2249c74a87ca74995fb2518e5d84829d
BLAKE2b-256 1ece7a342264600c94c28eecc4b83e9e507d998c2905aee8d345e4d912ff8ad6

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13dec55a9fe794754471109bab7919ab251296d41ca1ede6e4bb94cb4437916d
MD5 af0df310a049ed403df70a7b0682b4b3
BLAKE2b-256 45534aba446c77174286d1a168c748f994ffb722dd640b18b1ff30e4b0cd0abf

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90ba3317c5d58b1da592f6368658776e9401abd2cc39aef8a11e4e220fdbd4ab
MD5 f0e8cf63b058f2905b8a399561a14d7c
BLAKE2b-256 d5f3a2c73e2c40b10f592710eb3ece06004e275a224bbe8c23aed8ddf651185e

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 94286e4b18b0d06d4d0d5be1c9a19c1ec34d630ad2e216263de83f4bb303c8ec
MD5 38861fb4f4035b8d9b6c49117a3059e7
BLAKE2b-256 8374f18b685eb19851085492671889ed19b52f54cb4e505e74a1ddb2b129f9e6

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 587584ba6b21ec8b7839b4737fe08c970c19730e76329bd5207e591904df0cfc
MD5 a83584ba20471e85f7bbd7c715fc2c1a
BLAKE2b-256 7cc50738f591de86eb07c41e39595db667dfada710e1bd4b85a79bcdd36a9b40

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 718f0e1b51eef701663755850a6ae8d2d9e11bb34204692bdcc6da71e1c37813
MD5 324d817244984d324e1241702d93e87c
BLAKE2b-256 24144948c162f2961c76faa096552abd2362cb84cfe4064a90588e57a8488b71

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da87ca817e6496c2eafebc3e3773e2f253062295cfe82682121c1934a6403063
MD5 571442bc311ff8646da6f777c504af41
BLAKE2b-256 49d411bcb0fa8c98be95a3bdcf075c8f9d54fc598fe0cb2e751307ca006cca25

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d29db4473f8b7917dbb2c74458f1599448a6c8d9af0da2bedfa4700d6a8d5f3
MD5 f185bd0ac6ee3ac34933ac8373b1b4ea
BLAKE2b-256 ebac704a027537cac0cc9ccba180a871f7fe8100b8c2d2ef37a3ac9489a2bbec

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c57116c8325c734d87b19d165bf6f111b27b75de70e2a12416a1132dcf205e43
MD5 f07971e963e0b231d8c4dd0e6ee19304
BLAKE2b-256 8a01944dc5cb52be4602919bdc5580ff572844b711131c466fc92dd836db9758

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 becef89596237a9337cbd0e6bf24118dc5f81be0a22309c7d3fbb43b888a9bdc
MD5 3584a7664ecc5504bec20fe7945f3f2e
BLAKE2b-256 cff323ec993128c585d0417d2d16cff9014895202c15229cf46c63d3b3d0f5e3

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 767e2d290c887a4de253f5d51cbe64a5d76945d1f2ac79ef31462b8d6ad38835
MD5 0e55e7f214dc362b5f1a9ca098116ca8
BLAKE2b-256 b4ededa972d326f3bbca354db0a21bd8ac370dcc5eba69281a6643f3d2f746c8

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98a1f975e94c6367a4dcdc4d56db8d5ae7384dd3580324b5e1efa59ed32b5c0a
MD5 816f04a9924e18d8cebb9a6bf0def410
BLAKE2b-256 ff309f153ac932ea89e893dee424dc05f68c1f13520b1dac169590c86ed3d3cb

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4fc9f5b1a050cfc8e0829b7f0ca9522c4e9c153ee9f78c90447412af2deb4aa7
MD5 f906018c4ceec1fabdbdf8269ed389f7
BLAKE2b-256 aa1d6e354dd3bb71ce59f58d49db3836cbc7b4d0e499a11b00af7edc19751ef8

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: yappi-1.7.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0a1b3317977e2614b1983ba814b0a56c0f21acd7e7dfc1e2ed7d59141895f3a3
MD5 84dcf822f3fac039a751a0ce538d980b
BLAKE2b-256 43d6203c679d539c72a3c28aad44260dcaf82c9c5f6cc44f4baf6b40772d42ad

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a91358c612022d35d49359ee3a9fc7a6f8b6a3b652852660501ddd7982b310c4
MD5 5740855ebf3047979e10eda4672a8d54
BLAKE2b-256 548bab4a638167d88c575935e9e5516a7c9c4459e7ce6de5f929c605ed4c0082

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 312b51f3325ecb68d4d5163f3b576bd841bf18368862fad1461c10eec720c477
MD5 50ffdb5088eaee5722baf2e7a039c915
BLAKE2b-256 436a86c34b721c4491946e95301e4e75fb2b4a53dff247a4c8465ad589ee0174

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 853da78543d5e8c445e7bf313331b58da95b218b25741ae7734d77574d09ec0a
MD5 8386140b85016925bedab5aaa9daca55
BLAKE2b-256 1c78ed58d41ed03925d7b83754600c4f1367f6433b502d78b06b638d8263c2dc

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35687a345aaf41b89965b30d51aba6603bd738263ff76c0c0b538b4347988df2
MD5 ee1e421d01917fe497316a20abf04396
BLAKE2b-256 493e7423569c759680aae2d975f7e8940a872b2f111fe095c2f0a87791054da7

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yappi-1.7.6-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yappi-1.7.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 945daf6c86900cca1f8c449704c3d95f1d6c7f14285da2ade3bdd74cacdb24a0
MD5 c3015db073bf67ba748dc668b1c3e4f3
BLAKE2b-256 1236a696a95a05a4c9e9ba37a24a5deae9f00809ae51e71f17787976b71594e5

See more details on using hashes here.

File details

Details for the file yappi-1.7.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.7.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e3cb10af86fa45e643308630ca52b8e9f0909f215ccb767403876439167b3b5
MD5 b03e4c78b88237381e6c22348ae5f4a9
BLAKE2b-256 c86f20dd03f59aecce32cc702ebb68ac57f63668720fe1a57d9704839ac6e2d2

See more details on using hashes here.

Supported by

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