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

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

Source distribution (sdist)

Source distribution for yappi 1.6.10
File Size Uploaded
yappi-1.6.10.tar.gz 59.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for yappi 1.6.10
File
yappi-1.6.10-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
yappi-1.6.10-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
yappi-1.6.10-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
yappi-1.6.10-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
yappi-1.6.10-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.10-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
yappi-1.6.10-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yappi-1.6.10-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yappi-1.6.10-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
yappi-1.6.10-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
yappi-1.6.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yappi-1.6.10-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
yappi-1.6.10-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yappi-1.6.10-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yappi-1.6.10-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
yappi-1.6.10-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.10-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.10-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
yappi-1.6.10-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yappi-1.6.10-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yappi-1.6.10-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
yappi-1.6.10-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yappi-1.6.10-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
yappi-1.6.10-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
yappi-1.6.10-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
yappi-1.6.10-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
yappi-1.6.10-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.10-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.10-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
yappi-1.6.10-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
yappi-1.6.10-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
yappi-1.6.10-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
yappi-1.6.10-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
yappi-1.6.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yappi-1.6.10-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
yappi-1.6.10-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
yappi-1.6.10-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
yappi-1.6.10-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.10-cp37-cp37m-musllinux_1_2_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
yappi-1.6.10-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.10-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
yappi-1.6.10-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
yappi-1.6.10-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
yappi-1.6.10-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.10-cp36-cp36m-musllinux_1_2_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-32 Details
yappi-1.6.10-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.5+ x86-64, Linux glibc 2.17+ x86-64 Details
yappi-1.6.10-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.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yappi-1.6.10-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.3 MB

Release files / yappi-1.6.10.tar.gz

Download URL yappi-1.6.10.tar.gz
Size 59.4 kB
Tags Source
SHA-256 checksum
How to use checksums
463b822727658937bd95a7d80ca9758605b8cd0014e004e9e520ec9cb4db0c92
BLAKE2b-256 checksum
How to use checksums
025bcfde09baf28f7046194b98f1c4907e172c48e7c1b2db35a918fc8a57727a
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.10-cp313-cp313-win_amd64.whl

Download URL yappi-1.6.10-cp313-cp313-win_amd64.whl
Size 34.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
334b31dfefae02bc28b7cd50953aaaae3292e40c15efb613792e4a587281a161
BLAKE2b-256 checksum
How to use checksums
237147f12130412703a6816dba27ebd0aa853612ea6fbe3f93f7698c3520ea92
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.10-cp313-cp313-win32.whl

Download URL yappi-1.6.10-cp313-cp313-win32.whl
Size 32.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
fc84074575afcc5a2a712e132c0b51541b7434b3099be99f573964ef3b6064a8
BLAKE2b-256 checksum
How to use checksums
887281acfc73b5d66031284c7b4d384200d016f96e26038466269ed139114e98
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.10-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
1d82839835ae2c291b88fb56d82f80c88c00d76df29f3c1ed050db73b553bef0
BLAKE2b-256 checksum
How to use checksums
5daaea0dbf6e00c7dcb81b4d84d35f6e0584c448674fc19533ddb3198533d41b
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.10-cp313-cp313-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
354cf94d659302b421b13c03487f2f1bce969b97b85fba88afb11f2ef83c35f3
BLAKE2b-256 checksum
How to use checksums
f52862d8f97a62eafc443bb057442ae75b7f4741230c2dd774c5b7002bc05a4e
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.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
f27bbc3311a3662231cff395d38061683fac5c538f3bab6796ff05511d2cce43
BLAKE2b-256 checksum
How to use checksums
62598fdcb2a660388a7778c52cdfa0c52654955cf7953f85efacd8fd771f8da0
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.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
3736ea6458edbabd96918d88e2963594823e4ab4c58d62a52ef81f6b5839ec19
BLAKE2b-256 checksum
How to use checksums
ccefa81fac59ca7a13fd26321d59a54841f70f76ce91b5884c001d77f534b3b1
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.10-cp313-cp313-macosx_10_13_x86_64.whl

Download URL yappi-1.6.10-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
944df9ebc6b283d6591a6b5f4c586d0eb9c6131c915f1b20fb36127ade83720d
BLAKE2b-256 checksum
How to use checksums
2c339ca066f48c7fb21e0ab16fd5e1c99771275a8cec435ef7ac1840d13252f0
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.10-cp312-cp312-win_amd64.whl

Download URL yappi-1.6.10-cp312-cp312-win_amd64.whl
Size 34.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a50eb3aec893c40554f8f811d3341af266d844e7759f7f7abfcdba2744885ea3
BLAKE2b-256 checksum
How to use checksums
cb4517f50baed4a886fab2c34a040cefefe6623abcaaadf23f851207da9cd5e6
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.10-cp312-cp312-win32.whl

Download URL yappi-1.6.10-cp312-cp312-win32.whl
Size 32.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
8dd13a430b046e2921ddf63d992da97968724b41a03e68292f06a2afa11c9d6e
BLAKE2b-256 checksum
How to use checksums
af4f0afcacc683f3c34570effc78e6d4c154dea9d6cc8549c2535fb75441be30
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.10-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
01705971b728a4f95829b723d08883c7623ec275f4066f4048b28dc0151fe0af
BLAKE2b-256 checksum
How to use checksums
0c686806060eaec421a21554c2f7ee8b1379ff02b059e0c753eb55e5b7b701a4
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.10-cp312-cp312-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
7d80938e566ac6329daa3b036fdf7bd34488010efcf0a65169a44603878daa4e
BLAKE2b-256 checksum
How to use checksums
3944a3c64e0de45a0fc0bf327af95465a94cb8340a64e5abb7bb8af1cfd76f7f
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.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
733a212014f2b44673ed62be53b3d4dd458844cd2008ba107f27a3293e42f43a
BLAKE2b-256 checksum
How to use checksums
3801b03a2bc47fbb2d9bcad072fc2e08730f814defaac2ffbf76ef785fdff5d0
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.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
9683c40de7e4ddff225068032cd97a6d928e4beddd9c7cf6515325be8ac28036
BLAKE2b-256 checksum
How to use checksums
54c585852db160c93ee3190741a4fff25075518ad97dea1e2ad47ca6eab31d2f
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.10-cp312-cp312-macosx_10_13_x86_64.whl

Download URL yappi-1.6.10-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
32c6d928604d7a236090bc36d324f309fe8344c91123bb84e37c43f6677adddc
BLAKE2b-256 checksum
How to use checksums
50011823649d33aee627440939d7247e1fa7ef64bd907ca4ea88438274d392fc
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.10-cp311-cp311-win_amd64.whl

Download URL yappi-1.6.10-cp311-cp311-win_amd64.whl
Size 34.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4bd4f820e84d823724b8de4bf6857025e9e6c953978dd32485e054cf7de0eda7
BLAKE2b-256 checksum
How to use checksums
9f7d0f20ed8deaa675481071d0f7821756eaa716ba36ca6da9c68e44a6866d6e
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.10-cp311-cp311-win32.whl

Download URL yappi-1.6.10-cp311-cp311-win32.whl
Size 31.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ff3688aa99b08ee10ced478b7255ac03865a8b5c0677482056acfe4d4f56e45f
BLAKE2b-256 checksum
How to use checksums
94f1bb9d3074245eeba621dffa0715de53cd3adacfe3e49b565efddcd5a8a8e6
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.10-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
1cf46ebe43ac95f8736618a5f0ac763c7502a3aa964a1dda083d9e9c1bf07b12
BLAKE2b-256 checksum
How to use checksums
a768d0b6e4af43352f568d390858357e2d67a7f8172b6250daf0bc4846ef17aa
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.10-cp311-cp311-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
0d62741c0ac883067e40481ab89ddd9e004292dbd22ac5992cf45745bf28ccc3
BLAKE2b-256 checksum
How to use checksums
4801775412e17e5192f6268c4ad13de498aad7a34e1fc83002d5be4eedf1f7c2
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.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
40aa421ea7078795ed2f0e6bae3f8f64f6cd5019c885a12c613b44dd1fc598b4
BLAKE2b-256 checksum
How to use checksums
e788d4261df64a57378c7c99fe5949c27990e3aee7cbc2f8dee840dbbdeaa4c1
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.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
4bc9a30b162cb0e13d6400476fa05c272992bd359592e9bba1a570878d9e155c
BLAKE2b-256 checksum
How to use checksums
5f1d1d86bfbb756db33cf9d42489190b73ffe16a36c25afb394f2645e42c795b
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.10-cp311-cp311-macosx_10_9_x86_64.whl

Download URL yappi-1.6.10-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
20b8289e8cca781e948f72d86c03b308e077abeec53ec60080f77319041e0511
BLAKE2b-256 checksum
How to use checksums
67fbafc324765f910a4d06f3064eeb7d7f3c593f47102b1def4dbef1a57344de
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.10-cp310-cp310-win_amd64.whl

Download URL yappi-1.6.10-cp310-cp310-win_amd64.whl
Size 34.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
402252d543e47464707ea5d7e4a63c7e77ce81cb58b8559c8883e67ae483911c
BLAKE2b-256 checksum
How to use checksums
163467e485b3ce68584641a612bc29bcc09bac049a28a985ed435b6da03bda32
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.10-cp310-cp310-win32.whl

Download URL yappi-1.6.10-cp310-cp310-win32.whl
Size 31.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
cf117a9f733e0d8386bc8c454c11b275999c4bf559d742cbb8b60ace1d813f23
BLAKE2b-256 checksum
How to use checksums
3d064b3be344d3f47ca79235f71d8309b6a7fe7db2a71d40b7e83266925b4d05
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.10-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-cp310-cp310-musllinux_1_2_x86_64.whl
Size 76.6 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7c01a2bd8abc3b6d33ae60dea26f97e2372e0087a747289bbab0fe67c8ac8925
BLAKE2b-256 checksum
How to use checksums
7c8943c245ba4cf4c35d2e1879c6c9b9b255152b5dbea815b32d34bf1741d3ef
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.10-cp310-cp310-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
737e3cb6bb05f326eb63000663a4dc08dc08cc9827f7634445250c9610e5e717
BLAKE2b-256 checksum
How to use checksums
e21d505a9f9f1fc865879c3b6273755e739e1c626413a5d5356738b0641ebc79
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.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
f326045442f7d63aa54dc4a18eda358b186af3316ae52619dd606058fb3b4182
BLAKE2b-256 checksum
How to use checksums
cb93fd7248f51eb3f80885ad0bd0ea4e16966e39023f82788d1cd1265d244c87
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.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
7bbafb779c3f90edd09fd34733859226785618adee3179d5949dbba2e90f550a
BLAKE2b-256 checksum
How to use checksums
1152eaba290ab9bac96791cf2f101e1949408ef3c347d633435467c70f8a78ce
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.10-cp310-cp310-macosx_10_9_x86_64.whl

Download URL yappi-1.6.10-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
1f03127742746ec4cf7e422b08212daf094505ab7f5d725d7b273ed3c475c3d9
BLAKE2b-256 checksum
How to use checksums
105b17dc1e58919cc14e8fb5027ccdb1134e324c235d527ccaac53d2e64778f7
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.10-cp39-cp39-win_amd64.whl

Download URL yappi-1.6.10-cp39-cp39-win_amd64.whl
Size 34.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f3f833bae26d1046610a08ddb0c968311056d07c8930ab11985e1e38c97cb91e
BLAKE2b-256 checksum
How to use checksums
7069e529c43a46674ec83e7a76f6feaf60aced3ce85b68718cb465b070cf9183
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.10-cp39-cp39-win32.whl

Download URL yappi-1.6.10-cp39-cp39-win32.whl
Size 31.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
4efb7ee80a1ac4511e900ebced03aea761ab129269b0d571586a25d3a71e7a35
BLAKE2b-256 checksum
How to use checksums
dd8431b4d13a1729611dd58b04a0e9e578d1a3582efed0fe9882e8271bcd2fe5
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.10-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
2594ab790a9db37223e7861ec9cdf74d1edf05a78b31a8806ff24abcde668bea
BLAKE2b-256 checksum
How to use checksums
a27b9a784fe55a37c34111cff18302d9612173a68e83a552b5d222557cc200e4
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.10-cp39-cp39-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
ba1cd02fd914441d916db2972c3657711b2d7843cdd481e16244dee5870579af
BLAKE2b-256 checksum
How to use checksums
075f8399d446e2e4731e50f2b5ba1895646f2b6d70932aefe4be78eed8470552
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.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
e2e08a11f7e6b49ef09659506ac3bf0484881d6f634c6026c6bcbe3d345ee7c2
BLAKE2b-256 checksum
How to use checksums
857f556a1cdc2b81f8db53d1e4f3fb3a00a100ac378d6987d6585fad291b587b
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.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
721a67aa9f110d509e2729cb145b79b87fe28d42e253476a524fa781aff41c3c
BLAKE2b-256 checksum
How to use checksums
b0be6180be4d9c070b90df3fc1a1ccf0ad89db18a3934a1e2c3b26b2cea6e8fe
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.10-cp39-cp39-macosx_10_9_x86_64.whl

Download URL yappi-1.6.10-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
198831ccab42295ae2be265d422fdc0d9ccc8ae3e074e7c70fb58731e8181221
BLAKE2b-256 checksum
How to use checksums
2058897a2e69661d90ff9afa66c902a9a1c35c1ad1a79ca7ecfc506be7b41dbc
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.10-cp38-cp38-win_amd64.whl

Download URL yappi-1.6.10-cp38-cp38-win_amd64.whl
Size 34.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6822f33ae4474eb9ffc8865e64cba70daef23832be36b4d63d1d8dfd890101cf
BLAKE2b-256 checksum
How to use checksums
8706447363d07dec51fb89e81227c50fa4fb717b7ce203a9bcfbd6f596c19944
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.10-cp38-cp38-win32.whl

Download URL yappi-1.6.10-cp38-cp38-win32.whl
Size 31.8 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
dec8fb0125fe636f9218ec3ce022d8435299beadfee1def82ee75e11bce38ebd
BLAKE2b-256 checksum
How to use checksums
d39777ea3d7c200fe779fe495edd30c8423797f52229cdcecfc3d0f6e6c992d9
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.10-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
49f1f8b16d6f42a79a06ae5268f39e71de3648d6797471dc71d80d91be4a6484
BLAKE2b-256 checksum
How to use checksums
a1dda07d2f993aa0891fb435b23dd62a11cea5851ca0831164ee2ea216e92974
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.10-cp38-cp38-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
8a4bd5dd1c50e81440c712e6f43ac682768690d2dd0307665910a52db2d69175
BLAKE2b-256 checksum
How to use checksums
3da94dba3fb3eea619ed8c88815569d79dd787b97ed242c008337107317ecf2d
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.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 78.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d229ab4f2711aeed440037d9007db79d776e79c552ecde23b0b68591fa7ecccf
BLAKE2b-256 checksum
How to use checksums
2c1099a41ce573b59c6f0076e49f06371717b2f6f1e276ca8f15ebbbdb2b5773
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.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
2ba5c27a82cdd84e5102b789ab5061431944e3dee27e0970c3167b3bce78b262
BLAKE2b-256 checksum
How to use checksums
cb317f8f660c029095340f255da3319202787345ba736339997498f85653c4eb
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.10-cp38-cp38-macosx_10_9_x86_64.whl

Download URL yappi-1.6.10-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
b1795ea62ee9a39c1cff01a2c477b8bd5b1ca95c17d258efbf770b73eb62b2b8
BLAKE2b-256 checksum
How to use checksums
92aacac80331117b49a5a1c37360e835e256cd8df31f1c27e1045ff65dc7e4bc
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.10-cp37-cp37m-win_amd64.whl

Download URL yappi-1.6.10-cp37-cp37m-win_amd64.whl
Size 34.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2246e57e1ab7d11a184042fe5726fbffca8c1a59c5eb01d1a043741403bf844d
BLAKE2b-256 checksum
How to use checksums
24c1a3414af285c97d356786ee11c4fe272a4fa668c451998eb5dd630bbe67cb
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.10-cp37-cp37m-win32.whl

Download URL yappi-1.6.10-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
228ab550d53b5e37d618b42f5085e504376963b48f867d45d0fdc8a1e0c811d2
BLAKE2b-256 checksum
How to use checksums
0f3ca6c46dcdf8f1bfc693a0069f4cf2b3785d8a20fa104b983fdd6b9cb33632
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.10-cp37-cp37m-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
3aa33acd51ba1b5d81e5d6ec305d144531d215635b9dfd8ee1d57688c77725af
BLAKE2b-256 checksum
How to use checksums
a010bd5d3618a27f4d177e4c56118906b71ae4287d468a63a1e102968018fac8
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.10-cp37-cp37m-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
c713b660a23f4f8a33ea08a168f9f94d92b0383683e8ae3e9467587b5a8a0eae
BLAKE2b-256 checksum
How to use checksums
c08a9ecbe108b36c2a796729571ed689e11d46ff06cf0e3f96b3cae75afff3c6
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.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
f1305d50e805358937b022d455a17127a7ea2eb8eaf7595e0d06b0760f4bcc58
BLAKE2b-256 checksum
How to use checksums
87f2db4b4d56c143a77122df146025bc327419a53d025c1101164ca3a9dc3aec
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.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
3752ab9480f28709427d6077d220d963ed7caa84e18fd0f404022f4076850b0e
BLAKE2b-256 checksum
How to use checksums
6340cb5e09646c807bb35c8f3ab333b0621265844e965ed491a46ee909e1d87c
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.10-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL yappi-1.6.10-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
215964abb3818124bc638cf5456ca311e70188146afb30336cced0fc4ef42f5b
BLAKE2b-256 checksum
How to use checksums
8798571f3b2cb9684be3b887cc7b753ae62d98063a088111e0846b6223925624
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.10-cp36-cp36m-win_amd64.whl

Download URL yappi-1.6.10-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
e234dfd385fefaecc640235448d912e35f6a1400bc73be723744e901f2432527
BLAKE2b-256 checksum
How to use checksums
4f10b6a23f3d2b8fe391ab0c89ab747ed6a9058cd5f3b7f9012c9594517ac765
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.10-cp36-cp36m-win32.whl

Download URL yappi-1.6.10-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
de7aeaae96ce5d727d2d3f905dfbdbb512c4be1f7ef5178facac0835da63738a
BLAKE2b-256 checksum
How to use checksums
66af6639b76ad18438123a86b34a872befd53ed614c286fae47c522698460c67
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.10-cp36-cp36m-musllinux_1_2_x86_64.whl

Download URL yappi-1.6.10-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
307d681dd0cdaa7986e3b22115e41597f92778db03ba9be5096cfcb13929c5e9
BLAKE2b-256 checksum
How to use checksums
8a3af98c598f4655e0c8020a68664d00633a89bf073b69107b00115ce48d510b
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.10-cp36-cp36m-musllinux_1_2_i686.whl

Download URL yappi-1.6.10-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
ce9b908e99368c14bcdc1e198fc2ffe0cf42191ebfcec5458d10c4335f2abaf6
BLAKE2b-256 checksum
How to use checksums
01133630c7988f910d1f610935b3020ff3d5e85d84cc9e19e9ac0b1650f22719
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.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yappi-1.6.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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
3d95ce88d0b533a44a6d9521b983e3412e5c50d7fd152f2155764effad4ecf7f
BLAKE2b-256 checksum
How to use checksums
58f892e4799d8d31d4d0ef282b25e922133a0f948ff1d02118b485c814ed3691
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.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yappi-1.6.10-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
e9b3e1ce82b2bf30eeab19df7544d2caf5d7dc06bd7196ee2249a94e2081a5ae
BLAKE2b-256 checksum
How to use checksums
d2cf4494fdf401b824b0c440902fcd4e9fd7fa72cb3fa0ec6cbb2d34c33b7e05
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.10-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL yappi-1.6.10-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
f0b4bbdbaeda9ae84364a26cef6ccc512c44f3131a0b074f8892c5147f2e3bea
BLAKE2b-256 checksum
How to use checksums
4284f2f20d704a0a3a3022a8424e8d58d3b3150b52709035cbf89f7017fd699d
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.10 This release

57 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