Skip to main content

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.

Release files for yappi 1.6.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for yappi 1.6.9
File
yappi-1.6.9-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
yappi-1.6.9-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
yappi-1.6.9-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yappi-1.6.9-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
yappi-1.6.9-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yappi-1.6.9-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yappi-1.6.9-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yappi-1.6.9-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
yappi-1.6.9-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yappi-1.6.9-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yappi-1.6.9-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yappi-1.6.9-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
yappi-1.6.9-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yappi-1.6.9-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yappi-1.6.9-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yappi-1.6.9-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
yappi-1.6.9-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
yappi-1.6.9-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
yappi-1.6.9-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yappi-1.6.9-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
yappi-1.6.9-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
yappi-1.6.9-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
yappi-1.6.9-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yappi-1.6.9-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
yappi-1.6.9-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
yappi-1.6.9-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
yappi-1.6.9-cp37-cp37m-musllinux_1_2_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp37-cp37m-musllinux_1_2_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yappi-1.6.9-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
yappi-1.6.9-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
yappi-1.6.9-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
yappi-1.6.9-cp36-cp36m-musllinux_1_2_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-64 Details
yappi-1.6.9-cp36-cp36m-musllinux_1_2_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-32 Details
yappi-1.6.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
yappi-1.6.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yappi-1.6.9-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 3.2 MB

Release files / yappi-1.6.9-cp313-cp313-win_amd64.whl

Download URL yappi-1.6.9-cp313-cp313-win_amd64.whl
Size 34.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
50a3920ae387ba0454a3a81bf0bbb3de85bd25c8f00f031298488f522ba455d8
BLAKE2b-256 checksum
How to use checksums
9c3d209523ef48569b438abd2510492f9753ebe79d3b122adff360366c81ef38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp313-cp313-win32.whl

Download URL yappi-1.6.9-cp313-cp313-win32.whl
Size 32.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
59b0cbdb25568ada42fb13be94e018b4cbfb65aa112018ccef0eb5284418dff1
BLAKE2b-256 checksum
How to use checksums
86ba2e58a076b5dc181c880500a64b4c9a99fcb03ae443f04b2576d6cf8c1d7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp313-cp313-musllinux_1_2_x86_64.whl
Size 78.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2ae06a1f7e645dc9a354100a38c7bc78930a6e01805036723b34d104e4f2131f
BLAKE2b-256 checksum
How to use checksums
7d6bd22aa853ccdadc086dcc795e722d18d43df6f5f6570f7f9443fd6ec00b58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp313-cp313-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp313-cp313-musllinux_1_2_i686.whl
Size 76.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e65fc1df1a420c01217515d24023040b78cb66046419b436619d8de78a890210
BLAKE2b-256 checksum
How to use checksums
69feed5431fdccef481c25e44870853f22026b1f85297b21db915d99c090d480
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 81.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
80eef7a81eb6ecc717aadd362e54150eb9ac2a10bae752e0c3d9ba9149192dcb
BLAKE2b-256 checksum
How to use checksums
5330e99d9f6304ee3bcf9f13a52dd237b9fac46fe7fc8b8c939f880072c716c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 77.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
05db2a3ce0f659701f20d81e65d27cb16a4c85da4c0ede1ac4902e5d1400a39b
BLAKE2b-256 checksum
How to use checksums
631b0d5717ee16cecf453378b5559b2fd278a0547632a7c6fcffa7a56a402851
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp313-cp313-macosx_10_13_x86_64.whl

Download URL yappi-1.6.9-cp313-cp313-macosx_10_13_x86_64.whl
Size 32.9 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b8fc0d813557d9a4c24c3b289aa96c43aeedc03008a41b02995472c61be0d0e2
BLAKE2b-256 checksum
How to use checksums
613cc12fd8de3fa8643bd467b0e64e4d12d9393284b33bdbc7fdf94196328c6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-win_amd64.whl

Download URL yappi-1.6.9-cp312-cp312-win_amd64.whl
Size 34.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e33b488fb1a2c11e098013942fab7b9bee0cb36a165d131b7ba0972e4636b62f
BLAKE2b-256 checksum
How to use checksums
086a136056fe9d2f9a696d103c478eb34f4e84438bbb2c4f1777bb117f8af621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-win32.whl

Download URL yappi-1.6.9-cp312-cp312-win32.whl
Size 32.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
777ecc75fa7d6a195ebbddd7e5a3b5436c77a0f45567cedd42b475f78aa42df3
BLAKE2b-256 checksum
How to use checksums
f0facdd58b6129dbce57606e0758c498bd0d5ead893e7b89293b19b881326f13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp312-cp312-musllinux_1_2_x86_64.whl
Size 78.5 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
af0afe2c1509841aae125729f8bb2725f67873ce254db9fe6b4c7ac62b08d7d4
BLAKE2b-256 checksum
How to use checksums
5371acc859249cd547bc9877bc20736948a3c3cb8bbd607ce29d185256fcd5bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp312-cp312-musllinux_1_2_i686.whl
Size 76.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
918791b3f3538eec8b610d12b29e2b77400fef18e37b733f74c1a7671d49f332
BLAKE2b-256 checksum
How to use checksums
1a7e88c03bc7bc1c0189b0a9d2ccb821a2592fab4c05c214b33946ab978d6423
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 81.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c4dbf26b18683e47f3fdb97b9b6102b5d0b01c00b0017db8af0e07cadfc8c68b
BLAKE2b-256 checksum
How to use checksums
6cefc16e5d47ddf790c50849753ff8e2858c18b25ec49ff3f82b81357325d657
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 77.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b15573f0a19a098f28e732941b29ced00585066edb028509cc25a65664cb9295
BLAKE2b-256 checksum
How to use checksums
53a6fe9ee01af8fc24e29012ccbf13bd0af0c9191468d118797370a9b4466925
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp312-cp312-macosx_10_13_x86_64.whl

Download URL yappi-1.6.9-cp312-cp312-macosx_10_13_x86_64.whl
Size 32.9 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
fd849e36d5de4b61c8b8b6150dc8509495a3959d087167f5a54df3739e62cc49
BLAKE2b-256 checksum
How to use checksums
29b59fe9bd50901041d5f75307b51e9f809f318a674f4ded553e519e1e88e4ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-win_amd64.whl

Download URL yappi-1.6.9-cp311-cp311-win_amd64.whl
Size 34.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4d969ddce352ed8998e53afdc9df382255ac8a803670c76a7b8ce1cb702dfc45
BLAKE2b-256 checksum
How to use checksums
b6c98d49b9a50c92f7e4183088c139096f69648fd46cb218487b12f5ac6e1d00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-win32.whl

Download URL yappi-1.6.9-cp311-cp311-win32.whl
Size 31.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
6433c658b6a5645c83cdc400f7aae34c45d5384cfbeca367aa07c9f84a3772f9
BLAKE2b-256 checksum
How to use checksums
7e509b0b4e509d9e43b6ccddf59db0e5e3002c729f3fb386104b051d6a553936
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp311-cp311-musllinux_1_2_x86_64.whl
Size 77.2 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7cda59038ba53260350c474569b968da0364cefec2b967ed358eda097a86dbef
BLAKE2b-256 checksum
How to use checksums
6b831629a85a1dfd04febfb477007f7e93416c89c74505c1d283c1946a7a080e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp311-cp311-musllinux_1_2_i686.whl
Size 74.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f1363cdd7d18a714e3f5a8372c484206a47cacbab8b6f7d356a5f1e75a870b13
BLAKE2b-256 checksum
How to use checksums
a46df035cc99a2fb007bf6223d0029649b2905b333ecc704ca00836a15e1f8dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 79.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
24ec38c119a15c34d7930aa81e980df7b7a19202a85a472db4fd23a43369d56b
BLAKE2b-256 checksum
How to use checksums
753cb9f1833176c4d0f77ee410dfc839b59732ff2c863145eaae42b1f679ad8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 76.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
69a35191fae45e8d3985f4e64ba42b4a3f6a13fa2218f57c17199f7308c1e3e7
BLAKE2b-256 checksum
How to use checksums
3f72a9b5d761a8626f8ab473c60b8a91ebb11bfc3a50ddbe0844f76b8d0867e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp311-cp311-macosx_10_9_x86_64.whl

Download URL yappi-1.6.9-cp311-cp311-macosx_10_9_x86_64.whl
Size 32.9 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ed6bfbeb3a60f7edf0207e22c30fcb57828a1ba574d4c189b401e3c7a111c7db
BLAKE2b-256 checksum
How to use checksums
2f37496436f99ccd256e5d30ceb9e81f5ac4d59efc4bd005bf7a419d00197d28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-win_amd64.whl

Download URL yappi-1.6.9-cp310-cp310-win_amd64.whl
Size 34.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
23c1ba3615fa0a5b87b84add2de44154fe476566ab1d3303669643ed96474e88
BLAKE2b-256 checksum
How to use checksums
9c307ef3da8fef00b8560faf1f9b5f85a8df49a019fd9e1d44cdb90c9c74e7a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-win32.whl

Download URL yappi-1.6.9-cp310-cp310-win32.whl
Size 31.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3b8e8ede0e4b9033cfd35e837e33ac22a325b924f82510a231592ef3a1099458
BLAKE2b-256 checksum
How to use checksums
2836f78760af4a9c7be57920f439eadc7aa21cadaf077402f504acb8e1171976
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp310-cp310-musllinux_1_2_x86_64.whl
Size 76.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cff344665370907ab445eb1795b92d76f6a949b55839f0e3162a7965e70c2ad7
BLAKE2b-256 checksum
How to use checksums
be36fb1ffb8b2ebbe07bb307d635fb3e49ecc6d81a9f3404171c8125ba27d4dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp310-cp310-musllinux_1_2_i686.whl
Size 74.2 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d0621918dc589befdafd3fe22176dfa8de8813db73b2895b4d98721d35279e2e
BLAKE2b-256 checksum
How to use checksums
b1efa40a16a2e055da17f1ed66381fe1ed9f86a34e9d97a15d7fc09e1da83150
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 79.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7bde45b409d2ebc10886f203a25b78cce1de612450403927abab242f27ee1529
BLAKE2b-256 checksum
How to use checksums
1e3248ec608536f00b6a4abccafe88ecb77449756c0744ef251fb2643ed9b0c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 75.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
795be145a81df5c2ab35627d3d7a324ba25a3cb9c50fc8d7c97cb70be77b63fb
BLAKE2b-256 checksum
How to use checksums
fafd0395a7abe076e594dbd57e9ccf62f72cf9e256d3b28449a13abf7a34ed19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp310-cp310-macosx_10_9_x86_64.whl

Download URL yappi-1.6.9-cp310-cp310-macosx_10_9_x86_64.whl
Size 32.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b0fd0507cddd93c3e78e3b8d76a72ea9ce3a2d703ab0668cfdb2e388359671c6
BLAKE2b-256 checksum
How to use checksums
d7eb8c50237f403f8d0926a305a8ef0f189ef0eff1d51e12c920683db87a21fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-win_amd64.whl

Download URL yappi-1.6.9-cp39-cp39-win_amd64.whl
Size 34.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
62e9e90f57ed5fe16264b4cfd0db9768ad7db5bc7c4b9f6ed3bd1047a8f5b25e
BLAKE2b-256 checksum
How to use checksums
b4a8ba28f9e593109ad94d4b6a2d9f2b2d406a68840fa4dc8b8f0a8d124817a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-win32.whl

Download URL yappi-1.6.9-cp39-cp39-win32.whl
Size 31.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
d7ebb5ddec57a20e40c94efc4b048c58e532e38eab177c1853e62863ee0f8c62
BLAKE2b-256 checksum
How to use checksums
86518be1c141c22327fd244ed2309b258acba4374deea7231ddd3f47cf00eb5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp39-cp39-musllinux_1_2_x86_64.whl
Size 75.6 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0a66596d4450b0074b3b38a4325177c91f6b1715c0684245455abc0ec0d87c4b
BLAKE2b-256 checksum
How to use checksums
1b10d9bccc39a886187d137b12efdfea605ae14eca56870ffdfa1da141bbd952
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp39-cp39-musllinux_1_2_i686.whl
Size 73.6 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3eac8b9e35ba86af57be1c4d6025634ad799f29550198bda07ee5761afd85dc5
BLAKE2b-256 checksum
How to use checksums
dc0b228a501e7edfb3344a21fe53fe0a79ab3419707a8351572291b4dc35f3a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 78.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e05f2500bcbb2d46ad01bd11c6c9887655c20736fe6be528b21353afa7bd27e5
BLAKE2b-256 checksum
How to use checksums
9c66ffb95d5938f3970bba3ca1f2d9d06e55508f5f145b88a762c36c51b50814
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 74.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f68db97355532984901040073561a2107605392e3b0fd6bea83d002149833eb1
BLAKE2b-256 checksum
How to use checksums
a884667e16245939cb5a7beecc753238ff538fe7a4a6ad5cee84ba2dbe42f0ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp39-cp39-macosx_10_9_x86_64.whl

Download URL yappi-1.6.9-cp39-cp39-macosx_10_9_x86_64.whl
Size 32.7 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ef20f64363717cb4fde7d8b71f31efaf63eabbbef0d6299f9f0aaf0a49af939c
BLAKE2b-256 checksum
How to use checksums
852649dabac5e8bf3e26fb45f814c2537c4782c3510f1e88bcc99e795b5d9ee3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-win_amd64.whl

Download URL yappi-1.6.9-cp38-cp38-win_amd64.whl
Size 34.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
05c1683ea81bb868744789291d395cec5bae62c75f0cb238416df9fabeaffa65
BLAKE2b-256 checksum
How to use checksums
19148bd4e1d83985b533c7f12331f5cc72f510e8821c07f07ef990bdd674bfac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-win32.whl

Download URL yappi-1.6.9-cp38-cp38-win32.whl
Size 31.8 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
5840ce4f501296033fb364f88bb215a3a17874b8cb3a17dd4310d5955537d9bc
BLAKE2b-256 checksum
How to use checksums
dab5236e16fb0af35e539c428586fd171f0133beb31db3453b57470dd17bcfcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp38-cp38-musllinux_1_2_x86_64.whl
Size 76.1 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2bc24fd77eef372dcd691d96e32f6c582d0b3134d9ee02584a435e63eacee34a
BLAKE2b-256 checksum
How to use checksums
360e4adf0d0b89f47c23831145a10c2ade55aef2315c0016806369f697c3510c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp38-cp38-musllinux_1_2_i686.whl
Size 74.0 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e6aae2af43f1f6f691c974fcd5c63bbc7604968263169f0c22a480867ba9411a
BLAKE2b-256 checksum
How to use checksums
3dcb8bb0a5b3d93442aff4cb4b240dd4ea990f534f3dd42e9d9c3e90099307e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 78.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9b82b5ceab7034aaac18532786054da3b0e51372e7a38c25334e8f214d1e84ec
BLAKE2b-256 checksum
How to use checksums
fb3d9909211f194ff53422350c46f22e25d2baa45ef7f67c2954242757f29a3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 75.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8eedbb9ba1b76aa7f1ff8708d5e8054693a7207a255d086ce7e2417dc69e09b2
BLAKE2b-256 checksum
How to use checksums
395ccc7b4031308d82d369cc6a56a000fcfc75da83532a98055b1164ace8f6ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp38-cp38-macosx_10_9_x86_64.whl

Download URL yappi-1.6.9-cp38-cp38-macosx_10_9_x86_64.whl
Size 32.7 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
510936e44326fa94eb17da0e879997d90c7678d8f354d27a4acca0cd720d442b
BLAKE2b-256 checksum
How to use checksums
26fe33919f6925efeccfe3f87b1a407a81a86d122b32f31f2996d41936fb17fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-win_amd64.whl

Download URL yappi-1.6.9-cp37-cp37m-win_amd64.whl
Size 34.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e55f676cd38d902c38427d245b11ad72bf2edaaf2a25eb4587fdc2351d7ca502
BLAKE2b-256 checksum
How to use checksums
6318b487dc4ea4b16d52408be8aafd3561d4d8ee7ac5b276bf0f4e8dabf8ac48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-win32.whl

Download URL yappi-1.6.9-cp37-cp37m-win32.whl
Size 31.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b6c5ade0f8767c0c06ee68b536fd71e15db2dfe81691de2540307b23a107ce63
BLAKE2b-256 checksum
How to use checksums
6302dde28357969c27156aff332dbe297158396581ca3c5f267fc0ba07c5173f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp37-cp37m-musllinux_1_2_x86_64.whl
Size 74.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9f826ae662534189e2d1a3fd2e37a78fc40c92d6f5b91267aeec08f3a9b7e412
BLAKE2b-256 checksum
How to use checksums
9435dc06f4e3ab8978b1f4c18b6418d8490f499b7e6f6a18bca25f91c0882f78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp37-cp37m-musllinux_1_2_i686.whl
Size 72.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1716fc67049d648748d94e6921681ce8bfab9b9af626a5331f3033d8f2d27a18
BLAKE2b-256 checksum
How to use checksums
31e0e6be5c92b91a8abcf4c9d24769f14742108f143f98a5ff9a4990e36c4797
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 76.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
2090f09494f89b1f3ed88b6c2ba47adb8b1dc5c8d499db4c21d86c9118a2cb87
BLAKE2b-256 checksum
How to use checksums
25e30b6ddc0081deaba7d8a8334b1a4a3b85dfdc6a0f0839aa42db060235616f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 73.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b97faabea1e06fca9aecd8286506b2f94740b6e6ffb6876a67a96c248364527f
BLAKE2b-256 checksum
How to use checksums
0ff1dcf1888b1950fc11904df6fc7a89db0a9bed9c0286b5644af5bedc46df8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL yappi-1.6.9-cp37-cp37m-macosx_10_9_x86_64.whl
Size 32.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6900cb45a2ae21aa5acd70fab9f1d7c6e959ab32d717e31b39141207cef3226e
BLAKE2b-256 checksum
How to use checksums
5632db25610d95ee1210e777700d4b97d6b6b435cb554f17d715d11a1fed5757
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-win_amd64.whl

Download URL yappi-1.6.9-cp36-cp36m-win_amd64.whl
Size 37.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
93f74ffb245e6d70cafcc078ed57c1b85be71e5b2054c4046409455cf13864bd
BLAKE2b-256 checksum
How to use checksums
7f0e119c4c4244166092d0b62713bb8b8e5bec0a9a4d1be3b8a69bf4366004c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-win32.whl

Download URL yappi-1.6.9-cp36-cp36m-win32.whl
Size 33.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
5be9d7fae8ce11b622ad2602e872c1c477fb0956884fb6d116e4d6e725de5ef8
BLAKE2b-256 checksum
How to use checksums
76d47b5c88c7ec11d2958c20df3275986f72534c0e63fac842e792bccb3f3566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.9-cp36-cp36m-musllinux_1_2_x86_64.whl
Size 73.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
603ce99206b7a22be27398c4f5fb995c6c7d7327bba5c60291c1e19c57062370
BLAKE2b-256 checksum
How to use checksums
0821ce1cd101871a925c8619f9b42e1dca7f0c4b560e700d2d1fbdb7ec5921d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-musllinux_1_2_i686.whl

Download URL yappi-1.6.9-cp36-cp36m-musllinux_1_2_i686.whl
Size 71.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e46d34d8d035822cbf5b874edd7c1bd183d2cbdebb7888d69ae195cf74faea14
BLAKE2b-256 checksum
How to use checksums
92323f46e39bd5013823d4d6f78576bd6a1c816f83b656f4271b4188b63ce78c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 75.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
67d3df2b4dc016cb89cd50cc7dc612fb255dab55b68206458e05c6f524a8ed5f
BLAKE2b-256 checksum
How to use checksums
f15e584f91e9a9de0ddee250c01132ecb20c2973a0a0250946572c04b19df17d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 72.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8bc5ec2978308f84f6cee667ecd2bbf38e1195370d61834d37f485e0c895fe09
BLAKE2b-256 checksum
How to use checksums
b6867e1e5178f7efed0370c0f6fd4d6e4e8acca54ee767ce33d9c546af77b527
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release files / yappi-1.6.9-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL yappi-1.6.9-cp36-cp36m-macosx_10_9_x86_64.whl
Size 32.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
416a0652dec8e5a12dfdef18be22650bc14f8f42be4bac20002c3dd57211d153
BLAKE2b-256 checksum
How to use checksums
ba4607bd78c673a8abf3dce93d18b1d737adf4d12b19aac89cc6c7422b47ef8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.7

Release history Release notifications | RSS feed

1.7.6

63 release files

1.7.5

63 release files

1.7.3

63 release files

This release

1.6.9 This release

56 release files

1.4.0

43 release files

1.3.5

1 release file

1.3.3

1 release file

1.3.2

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.5

1 release file

1.2.4

1 release file

1.2.3

1 release file

1.2.1

1 release file

1.0

1 release file

0.99

1 release file

0.98

1 release file

0.94

1 release file

0.93

1 release file

0.92

1 release file

0.82

1 release file

0.62

0.54

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page