Skip to main content

Yet Another Python Profiler

Project description

yappi

Yappi

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

FreePalestine.Dev

From the river to the sea, Palestine will be free

Highlights

  • Fast: Yappi is fast. It is completely written in C and lots of love and care went into making it fast.
  • Unique: Yappi supports multithreaded, asyncio and gevent profiling. Tagging/filtering multiple profiler results has interesting use cases.
  • Intuitive: Profiler can be started/stopped and results can be obtained from any time and any thread.
  • Standards Compliant: Profiler results can be saved in callgrind or pstat formats.
  • Rich in Feature set: Profiler results can show either Wall Time or actual CPU Time and can be aggregated from different sessions. Various flags are defined for filtering and sorting profiler results.
  • Robust: Yappi has been around for years.

Motivation

CPython standard distribution comes with three deterministic profilers. cProfile, Profile and hotshot. cProfile is implemented as a C module based on lsprof, Profile is in pure Python and hotshot can be seen as a small subset of a cProfile. The major issue is that all of these profilers lack support for multi-threaded programs and CPU time.

If you want to profile a multi-threaded application, you must give an entry point to these profilers and then maybe merge the outputs. None of these profilers are designed to work on long-running multi-threaded applications. It is also not possible to profile an application that start/stop/retrieve traces on the fly with these profilers.

Now fast forwarding to 2019: With the latest improvements on asyncio library and asynchronous frameworks, most of the current profilers lacks the ability to show correct wall/cpu time or even call count information per-coroutine. Thus we need a different kind of approach to profile asynchronous code. Yappi, with v1.2 introduces the concept of coroutine profiling. With coroutine-profiling, you should be able to profile correct wall/cpu time and call count of your coroutine. (including the time spent in context switches, too). You can see details here.

Installation

Can be installed via PyPI

$ pip install yappi

OR from the source directly.

$ pip install git+https://github.com/sumerc/yappi#egg=yappi

Examples

A simple example:

import yappi

def a():
    for _ in range(10000000):  # do something CPU heavy
        pass

yappi.set_clock_type("cpu") # Use set_clock_type("wall") for wall time
yappi.start()
a()

yappi.get_func_stats().print_all()
yappi.get_thread_stats().print_all()
'''

Clock type: CPU
Ordered by: totaltime, desc

name                                  ncall  tsub      ttot      tavg      
doc.py:5 a                            1      0.117907  0.117907  0.117907

name           id     tid              ttot      scnt        
_MainThread    0      139867147315008  0.118297  1
'''

Profile a multithreaded application:

You can profile a multithreaded application via Yappi and can easily retrieve per-thread profile information by filtering on ctx_id with get_func_stats API.

import yappi
import time
import threading

_NTHREAD = 3


def _work(n):
    time.sleep(n * 0.1)


yappi.start()

threads = []
# generate _NTHREAD threads
for i in range(_NTHREAD):
    t = threading.Thread(target=_work, args=(i + 1, ))
    t.start()
    threads.append(t)
# wait all threads to finish
for t in threads:
    t.join()

yappi.stop()

# retrieve thread stats by their thread id (given by yappi)
threads = yappi.get_thread_stats()
for thread in threads:
    print(
        "Function stats for (%s) (%d)" % (thread.name, thread.id)
    )  # it is the Thread.__class__.__name__
    yappi.get_func_stats(ctx_id=thread.id).print_all()
'''
Function stats for (Thread) (3)

name                                  ncall  tsub      ttot      tavg
..hon3.7/threading.py:859 Thread.run  1      0.000017  0.000062  0.000062
doc3.py:8 _work                       1      0.000012  0.000045  0.000045

Function stats for (Thread) (2)

name                                  ncall  tsub      ttot      tavg
..hon3.7/threading.py:859 Thread.run  1      0.000017  0.000065  0.000065
doc3.py:8 _work                       1      0.000010  0.000048  0.000048


Function stats for (Thread) (1)

name                                  ncall  tsub      ttot      tavg
..hon3.7/threading.py:859 Thread.run  1      0.000010  0.000043  0.000043
doc3.py:8 _work                       1      0.000006  0.000033  0.000033
'''

Different ways to filter/sort stats:

You can use filter_callback on get_func_stats API to filter on functions, modules or whatever available in YFuncStat object.

import package_a
import yappi
import sys

def a():
    pass

def b():
    pass

yappi.start()
a()
b()
package_a.a()
yappi.stop()

# filter by module object
current_module = sys.modules[__name__]
stats = yappi.get_func_stats(
    filter_callback=lambda x: yappi.module_matches(x, [current_module])
)  # x is a yappi.YFuncStat object
stats.sort("name", "desc").print_all()
'''
Clock type: CPU
Ordered by: name, desc

name                                  ncall  tsub      ttot      tavg
doc2.py:10 b                          1      0.000001  0.000001  0.000001
doc2.py:6 a                           1      0.000001  0.000001  0.000001
'''

# filter by function object
stats = yappi.get_func_stats(
    filter_callback=lambda x: yappi.func_matches(x, [a, b])
).print_all()
'''
name                                  ncall  tsub      ttot      tavg
doc2.py:6 a                           1      0.000001  0.000001  0.000001
doc2.py:10 b                          1      0.000001  0.000001  0.000001
'''

# filter by module name
stats = yappi.get_func_stats(filter_callback=lambda x: 'package_a' in x.module
                             ).print_all()
'''
name                                  ncall  tsub      ttot      tavg
package_a/__init__.py:1 a             1      0.000001  0.000001  0.000001
'''

# filter by function name
stats = yappi.get_func_stats(filter_callback=lambda x: 'a' in x.name
                             ).print_all()
'''
name                                  ncall  tsub      ttot      tavg
doc2.py:6 a                           1      0.000001  0.000001  0.000001
package_a/__init__.py:1 a             1      0.000001  0.000001  0.000001
'''

Profile an asyncio application:

You can see that coroutine wall-time's are correctly profiled.

import asyncio
import yappi

async def foo():
    await asyncio.sleep(1.0)
    await baz()
    await asyncio.sleep(0.5)

async def bar():
    await asyncio.sleep(2.0)

async def baz():
    await asyncio.sleep(1.0)

yappi.set_clock_type("WALL")
with yappi.run():
    asyncio.run(foo())
    asyncio.run(bar())
yappi.get_func_stats().print_all()
'''
Clock type: WALL
Ordered by: totaltime, desc

name                                  ncall  tsub      ttot      tavg      
doc4.py:5 foo                         1      0.000030  2.503808  2.503808
doc4.py:11 bar                        1      0.000012  2.002492  2.002492
doc4.py:15 baz                        1      0.000013  1.001397  1.001397
'''

Profile a gevent application:

You can use yappi to profile greenlet applications now!

import yappi
from greenlet import greenlet
import time

class GreenletA(greenlet):
    def run(self):
        time.sleep(1)

yappi.set_context_backend("greenlet")
yappi.set_clock_type("wall")

yappi.start(builtins=True)
a = GreenletA()
a.switch()
yappi.stop()

yappi.get_func_stats().print_all()
'''
name                                  ncall  tsub      ttot      tavg
tests/test_random.py:6 GreenletA.run  1      0.000007  1.000494  1.000494
time.sleep                            1      1.000487  1.000487  1.000487
'''

Documentation

Related Talks

Special thanks to A.Jesse Jiryu Davis:

PyCharm Integration

Yappi is the default profiler in PyCharm. If you have Yappi installed, PyCharm will use it. See the official documentation for more details.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

yappi-1.6.9-cp313-cp313-win_amd64.whl (34.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

yappi-1.6.9-cp313-cp313-win32.whl (32.0 kB view details)

Uploaded CPython 3.13 Windows x86

yappi-1.6.9-cp313-cp313-musllinux_1_2_x86_64.whl (78.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp313-cp313-musllinux_1_2_i686.whl (76.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yappi-1.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (81.3 kB view details)

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

yappi-1.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp313-cp313-macosx_10_13_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yappi-1.6.9-cp312-cp312-win_amd64.whl (34.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

yappi-1.6.9-cp312-cp312-win32.whl (32.0 kB view details)

Uploaded CPython 3.12 Windows x86

yappi-1.6.9-cp312-cp312-musllinux_1_2_x86_64.whl (78.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp312-cp312-musllinux_1_2_i686.whl (76.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yappi-1.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (81.2 kB view details)

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

yappi-1.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp312-cp312-macosx_10_13_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

yappi-1.6.9-cp311-cp311-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

yappi-1.6.9-cp311-cp311-win32.whl (31.9 kB view details)

Uploaded CPython 3.11 Windows x86

yappi-1.6.9-cp311-cp311-musllinux_1_2_x86_64.whl (77.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp311-cp311-musllinux_1_2_i686.whl (74.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yappi-1.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (79.8 kB view details)

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

yappi-1.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (76.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp311-cp311-macosx_10_9_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yappi-1.6.9-cp310-cp310-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

yappi-1.6.9-cp310-cp310-win32.whl (31.8 kB view details)

Uploaded CPython 3.10 Windows x86

yappi-1.6.9-cp310-cp310-musllinux_1_2_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp310-cp310-musllinux_1_2_i686.whl (74.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yappi-1.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (79.1 kB view details)

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

yappi-1.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (75.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp310-cp310-macosx_10_9_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yappi-1.6.9-cp39-cp39-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

yappi-1.6.9-cp39-cp39-win32.whl (31.8 kB view details)

Uploaded CPython 3.9 Windows x86

yappi-1.6.9-cp39-cp39-musllinux_1_2_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp39-cp39-musllinux_1_2_i686.whl (73.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yappi-1.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (78.0 kB view details)

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

yappi-1.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (74.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp39-cp39-macosx_10_9_x86_64.whl (32.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yappi-1.6.9-cp38-cp38-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

yappi-1.6.9-cp38-cp38-win32.whl (31.8 kB view details)

Uploaded CPython 3.8 Windows x86

yappi-1.6.9-cp38-cp38-musllinux_1_2_x86_64.whl (76.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp38-cp38-musllinux_1_2_i686.whl (74.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yappi-1.6.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (78.4 kB view details)

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

yappi-1.6.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (75.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp38-cp38-macosx_10_9_x86_64.whl (32.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yappi-1.6.9-cp37-cp37m-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

yappi-1.6.9-cp37-cp37m-win32.whl (31.7 kB view details)

Uploaded CPython 3.7m Windows x86

yappi-1.6.9-cp37-cp37m-musllinux_1_2_x86_64.whl (74.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp37-cp37m-musllinux_1_2_i686.whl (72.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

yappi-1.6.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

yappi-1.6.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (73.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp37-cp37m-macosx_10_9_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

yappi-1.6.9-cp36-cp36m-win_amd64.whl (37.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

yappi-1.6.9-cp36-cp36m-win32.whl (33.6 kB view details)

Uploaded CPython 3.6m Windows x86

yappi-1.6.9-cp36-cp36m-musllinux_1_2_x86_64.whl (73.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

yappi-1.6.9-cp36-cp36m-musllinux_1_2_i686.whl (71.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

yappi-1.6.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (75.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

yappi-1.6.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yappi-1.6.9-cp36-cp36m-macosx_10_9_x86_64.whl (32.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 50a3920ae387ba0454a3a81bf0bbb3de85bd25c8f00f031298488f522ba455d8
MD5 3a9843483b802f00b75555aaf98e952c
BLAKE2b-256 9c3d209523ef48569b438abd2510492f9753ebe79d3b122adff360366c81ef38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 59b0cbdb25568ada42fb13be94e018b4cbfb65aa112018ccef0eb5284418dff1
MD5 8626aa1d9b3a47c13c68a12443988e24
BLAKE2b-256 86ba2e58a076b5dc181c880500a64b4c9a99fcb03ae443f04b2576d6cf8c1d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ae06a1f7e645dc9a354100a38c7bc78930a6e01805036723b34d104e4f2131f
MD5 255d8ae5d2c362f68ef3714e9f38ea7d
BLAKE2b-256 7d6bd22aa853ccdadc086dcc795e722d18d43df6f5f6570f7f9443fd6ec00b58

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e65fc1df1a420c01217515d24023040b78cb66046419b436619d8de78a890210
MD5 3e2b8cedfc03922e35163aee9ac61d34
BLAKE2b-256 69feed5431fdccef481c25e44870853f22026b1f85297b21db915d99c090d480

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80eef7a81eb6ecc717aadd362e54150eb9ac2a10bae752e0c3d9ba9149192dcb
MD5 325b28886a16b24a20e268d3b9af4e9b
BLAKE2b-256 5330e99d9f6304ee3bcf9f13a52dd237b9fac46fe7fc8b8c939f880072c716c5

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05db2a3ce0f659701f20d81e65d27cb16a4c85da4c0ede1ac4902e5d1400a39b
MD5 750d0947fb1c20774bfd87e5d8a9aa7b
BLAKE2b-256 631b0d5717ee16cecf453378b5559b2fd278a0547632a7c6fcffa7a56a402851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b8fc0d813557d9a4c24c3b289aa96c43aeedc03008a41b02995472c61be0d0e2
MD5 806f6345d750fd2d49943ab272f1002b
BLAKE2b-256 613cc12fd8de3fa8643bd467b0e64e4d12d9393284b33bdbc7fdf94196328c6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e33b488fb1a2c11e098013942fab7b9bee0cb36a165d131b7ba0972e4636b62f
MD5 e26c5b533a227a447455c7b72c2557ea
BLAKE2b-256 086a136056fe9d2f9a696d103c478eb34f4e84438bbb2c4f1777bb117f8af621

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 777ecc75fa7d6a195ebbddd7e5a3b5436c77a0f45567cedd42b475f78aa42df3
MD5 82fdbc26b5cf667b85920be6934dc518
BLAKE2b-256 f0facdd58b6129dbce57606e0758c498bd0d5ead893e7b89293b19b881326f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af0afe2c1509841aae125729f8bb2725f67873ce254db9fe6b4c7ac62b08d7d4
MD5 a5995944221e80fe250a2c45ee45b4e6
BLAKE2b-256 5371acc859249cd547bc9877bc20736948a3c3cb8bbd607ce29d185256fcd5bb

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 918791b3f3538eec8b610d12b29e2b77400fef18e37b733f74c1a7671d49f332
MD5 3f9af7a8d96f245c83a717a8ceb41574
BLAKE2b-256 1a7e88c03bc7bc1c0189b0a9d2ccb821a2592fab4c05c214b33946ab978d6423

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4dbf26b18683e47f3fdb97b9b6102b5d0b01c00b0017db8af0e07cadfc8c68b
MD5 fa9075e734e5494b132a086053d46e18
BLAKE2b-256 6cefc16e5d47ddf790c50849753ff8e2858c18b25ec49ff3f82b81357325d657

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b15573f0a19a098f28e732941b29ced00585066edb028509cc25a65664cb9295
MD5 0c63126a3b55adc2957beb54b707ceca
BLAKE2b-256 53a6fe9ee01af8fc24e29012ccbf13bd0af0c9191468d118797370a9b4466925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd849e36d5de4b61c8b8b6150dc8509495a3959d087167f5a54df3739e62cc49
MD5 8be5cead7ed248fe59d8ecc79e1c827e
BLAKE2b-256 29b59fe9bd50901041d5f75307b51e9f809f318a674f4ded553e519e1e88e4ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d969ddce352ed8998e53afdc9df382255ac8a803670c76a7b8ce1cb702dfc45
MD5 6e1a751ca6406bdb965a14fe217aebaf
BLAKE2b-256 b6c98d49b9a50c92f7e4183088c139096f69648fd46cb218487b12f5ac6e1d00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6433c658b6a5645c83cdc400f7aae34c45d5384cfbeca367aa07c9f84a3772f9
MD5 c5df907c7acfab3ac1d675011289a163
BLAKE2b-256 7e509b0b4e509d9e43b6ccddf59db0e5e3002c729f3fb386104b051d6a553936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cda59038ba53260350c474569b968da0364cefec2b967ed358eda097a86dbef
MD5 25670117ddd0df4d1c70dd4872a3f49d
BLAKE2b-256 6b831629a85a1dfd04febfb477007f7e93416c89c74505c1d283c1946a7a080e

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1363cdd7d18a714e3f5a8372c484206a47cacbab8b6f7d356a5f1e75a870b13
MD5 5465759615c797bb7d881dd4fc99133f
BLAKE2b-256 a46df035cc99a2fb007bf6223d0029649b2905b333ecc704ca00836a15e1f8dd

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24ec38c119a15c34d7930aa81e980df7b7a19202a85a472db4fd23a43369d56b
MD5 edc5395ecb04d311f1f23c61e422abfe
BLAKE2b-256 753cb9f1833176c4d0f77ee410dfc839b59732ff2c863145eaae42b1f679ad8a

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69a35191fae45e8d3985f4e64ba42b4a3f6a13fa2218f57c17199f7308c1e3e7
MD5 84d9280aeadd5a4bf8722a059f2edbd8
BLAKE2b-256 3f72a9b5d761a8626f8ab473c60b8a91ebb11bfc3a50ddbe0844f76b8d0867e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed6bfbeb3a60f7edf0207e22c30fcb57828a1ba574d4c189b401e3c7a111c7db
MD5 28acfec4dd359258485bd445779adf3a
BLAKE2b-256 2f37496436f99ccd256e5d30ceb9e81f5ac4d59efc4bd005bf7a419d00197d28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23c1ba3615fa0a5b87b84add2de44154fe476566ab1d3303669643ed96474e88
MD5 b2b5322e34acbd744cb2a7c9b4d06f51
BLAKE2b-256 9c307ef3da8fef00b8560faf1f9b5f85a8df49a019fd9e1d44cdb90c9c74e7a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b8e8ede0e4b9033cfd35e837e33ac22a325b924f82510a231592ef3a1099458
MD5 dcdb712fd691f1349ca7f2dfcb8357cc
BLAKE2b-256 2836f78760af4a9c7be57920f439eadc7aa21cadaf077402f504acb8e1171976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cff344665370907ab445eb1795b92d76f6a949b55839f0e3162a7965e70c2ad7
MD5 387be5872206738401d7e2ccaa545b02
BLAKE2b-256 be36fb1ffb8b2ebbe07bb307d635fb3e49ecc6d81a9f3404171c8125ba27d4dc

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0621918dc589befdafd3fe22176dfa8de8813db73b2895b4d98721d35279e2e
MD5 3c5206af69d92b7b74704faf0fbe8fe1
BLAKE2b-256 b1efa40a16a2e055da17f1ed66381fe1ed9f86a34e9d97a15d7fc09e1da83150

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bde45b409d2ebc10886f203a25b78cce1de612450403927abab242f27ee1529
MD5 1f7a56ca8815ee2bc6a4a4e689377745
BLAKE2b-256 1e3248ec608536f00b6a4abccafe88ecb77449756c0744ef251fb2643ed9b0c2

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 795be145a81df5c2ab35627d3d7a324ba25a3cb9c50fc8d7c97cb70be77b63fb
MD5 c06b3a9e6fb6e87efb87b34fbf69a4a8
BLAKE2b-256 fafd0395a7abe076e594dbd57e9ccf62f72cf9e256d3b28449a13abf7a34ed19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0fd0507cddd93c3e78e3b8d76a72ea9ce3a2d703ab0668cfdb2e388359671c6
MD5 950737f79a909fbeea9d59ec32ec8630
BLAKE2b-256 d7eb8c50237f403f8d0926a305a8ef0f189ef0eff1d51e12c920683db87a21fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 62e9e90f57ed5fe16264b4cfd0db9768ad7db5bc7c4b9f6ed3bd1047a8f5b25e
MD5 9c850be8daaf97ab7091a39c62435823
BLAKE2b-256 b4a8ba28f9e593109ad94d4b6a2d9f2b2d406a68840fa4dc8b8f0a8d124817a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d7ebb5ddec57a20e40c94efc4b048c58e532e38eab177c1853e62863ee0f8c62
MD5 1492a689992a9b594d465722a6d9bbd3
BLAKE2b-256 86518be1c141c22327fd244ed2309b258acba4374deea7231ddd3f47cf00eb5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a66596d4450b0074b3b38a4325177c91f6b1715c0684245455abc0ec0d87c4b
MD5 bece65d7cd2dce7d66678f0e7ec369de
BLAKE2b-256 1b10d9bccc39a886187d137b12efdfea605ae14eca56870ffdfa1da141bbd952

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3eac8b9e35ba86af57be1c4d6025634ad799f29550198bda07ee5761afd85dc5
MD5 26abd71671482814a8b8ab2134526b81
BLAKE2b-256 dc0b228a501e7edfb3344a21fe53fe0a79ab3419707a8351572291b4dc35f3a3

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e05f2500bcbb2d46ad01bd11c6c9887655c20736fe6be528b21353afa7bd27e5
MD5 47e6255a0446ac98903181458ba1cf87
BLAKE2b-256 9c66ffb95d5938f3970bba3ca1f2d9d06e55508f5f145b88a762c36c51b50814

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f68db97355532984901040073561a2107605392e3b0fd6bea83d002149833eb1
MD5 df484a707e856cdd7df5d1c4dde15e06
BLAKE2b-256 a884667e16245939cb5a7beecc753238ff538fe7a4a6ad5cee84ba2dbe42f0ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef20f64363717cb4fde7d8b71f31efaf63eabbbef0d6299f9f0aaf0a49af939c
MD5 0de500e9ae42b610f2395f0a7ca6b4f5
BLAKE2b-256 852649dabac5e8bf3e26fb45f814c2537c4782c3510f1e88bcc99e795b5d9ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 05c1683ea81bb868744789291d395cec5bae62c75f0cb238416df9fabeaffa65
MD5 458224067396e7377cd3fa56d3efd611
BLAKE2b-256 19148bd4e1d83985b533c7f12331f5cc72f510e8821c07f07ef990bdd674bfac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yappi-1.6.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 31.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5840ce4f501296033fb364f88bb215a3a17874b8cb3a17dd4310d5955537d9bc
MD5 a4155749480c3e4f3840ef3b4e343c6b
BLAKE2b-256 dab5236e16fb0af35e539c428586fd171f0133beb31db3453b57470dd17bcfcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bc24fd77eef372dcd691d96e32f6c582d0b3134d9ee02584a435e63eacee34a
MD5 26285b1b6dd616a8fc853f7e84ee0e32
BLAKE2b-256 360e4adf0d0b89f47c23831145a10c2ade55aef2315c0016806369f697c3510c

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6aae2af43f1f6f691c974fcd5c63bbc7604968263169f0c22a480867ba9411a
MD5 32a0caec128bcd90666e2c2f84410704
BLAKE2b-256 3dcb8bb0a5b3d93442aff4cb4b240dd4ea990f534f3dd42e9d9c3e90099307e0

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b82b5ceab7034aaac18532786054da3b0e51372e7a38c25334e8f214d1e84ec
MD5 d490f57a8b9f748e9690d0a16bdbef28
BLAKE2b-256 fb3d9909211f194ff53422350c46f22e25d2baa45ef7f67c2954242757f29a3d

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8eedbb9ba1b76aa7f1ff8708d5e8054693a7207a255d086ce7e2417dc69e09b2
MD5 68401b34108cdd63bee1a5aedf30c1f3
BLAKE2b-256 395ccc7b4031308d82d369cc6a56a000fcfc75da83532a98055b1164ace8f6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yappi-1.6.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 510936e44326fa94eb17da0e879997d90c7678d8f354d27a4acca0cd720d442b
MD5 8ebbcf67190f1e1dab0f238f35c0a0d0
BLAKE2b-256 26fe33919f6925efeccfe3f87b1a407a81a86d122b32f31f2996d41936fb17fd

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: yappi-1.6.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e55f676cd38d902c38427d245b11ad72bf2edaaf2a25eb4587fdc2351d7ca502
MD5 e6a80ef49a7af648e402780d06ad4232
BLAKE2b-256 6318b487dc4ea4b16d52408be8aafd3561d4d8ee7ac5b276bf0f4e8dabf8ac48

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-win32.whl.

File metadata

  • Download URL: yappi-1.6.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 31.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b6c5ade0f8767c0c06ee68b536fd71e15db2dfe81691de2540307b23a107ce63
MD5 2516a5180da9e50f98bd2155912e44fe
BLAKE2b-256 6302dde28357969c27156aff332dbe297158396581ca3c5f267fc0ba07c5173f

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f826ae662534189e2d1a3fd2e37a78fc40c92d6f5b91267aeec08f3a9b7e412
MD5 64448f5da03e5a228ec3e168c4961a62
BLAKE2b-256 9435dc06f4e3ab8978b1f4c18b6418d8490f499b7e6f6a18bca25f91c0882f78

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1716fc67049d648748d94e6921681ce8bfab9b9af626a5331f3033d8f2d27a18
MD5 1a6856d41b45c4199e99fc55ccc2dc4a
BLAKE2b-256 31e0e6be5c92b91a8abcf4c9d24769f14742108f143f98a5ff9a4990e36c4797

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2090f09494f89b1f3ed88b6c2ba47adb8b1dc5c8d499db4c21d86c9118a2cb87
MD5 b35ff1a93346dff71a8a72d8e82cc0ec
BLAKE2b-256 25e30b6ddc0081deaba7d8a8334b1a4a3b85dfdc6a0f0839aa42db060235616f

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b97faabea1e06fca9aecd8286506b2f94740b6e6ffb6876a67a96c248364527f
MD5 b3f9ac6364f1c0cf5e3b5f5e3685403f
BLAKE2b-256 0ff1dcf1888b1950fc11904df6fc7a89db0a9bed9c0286b5644af5bedc46df8d

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6900cb45a2ae21aa5acd70fab9f1d7c6e959ab32d717e31b39141207cef3226e
MD5 6647f9f4065ea52750ef5573c452c85e
BLAKE2b-256 5632db25610d95ee1210e777700d4b97d6b6b435cb554f17d715d11a1fed5757

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: yappi-1.6.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 37.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 93f74ffb245e6d70cafcc078ed57c1b85be71e5b2054c4046409455cf13864bd
MD5 4face778789b96a7f84b709a5da9a30c
BLAKE2b-256 7f0e119c4c4244166092d0b62713bb8b8e5bec0a9a4d1be3b8a69bf4366004c5

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-win32.whl.

File metadata

  • Download URL: yappi-1.6.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5be9d7fae8ce11b622ad2602e872c1c477fb0956884fb6d116e4d6e725de5ef8
MD5 9327e045f3c0c95aa2bf7b7b5b565598
BLAKE2b-256 76d47b5c88c7ec11d2958c20df3275986f72534c0e63fac842e792bccb3f3566

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 603ce99206b7a22be27398c4f5fb995c6c7d7327bba5c60291c1e19c57062370
MD5 ec9ddd1870daab5290b99a8d47efc333
BLAKE2b-256 0821ce1cd101871a925c8619f9b42e1dca7f0c4b560e700d2d1fbdb7ec5921d2

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e46d34d8d035822cbf5b874edd7c1bd183d2cbdebb7888d69ae195cf74faea14
MD5 6e531a478c43e24e93b78acb135741cb
BLAKE2b-256 92323f46e39bd5013823d4d6f78576bd6a1c816f83b656f4271b4188b63ce78c

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67d3df2b4dc016cb89cd50cc7dc612fb255dab55b68206458e05c6f524a8ed5f
MD5 1aa133ed3d5fb7c9ce2f603b1dc1973e
BLAKE2b-256 f15e584f91e9a9de0ddee250c01132ecb20c2973a0a0250946572c04b19df17d

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bc5ec2978308f84f6cee667ecd2bbf38e1195370d61834d37f485e0c895fe09
MD5 c0bd69720a6cc0b80ae091af01e9394f
BLAKE2b-256 b6867e1e5178f7efed0370c0f6fd4d6e4e8acca54ee767ce33d9c546af77b527

See more details on using hashes here.

File details

Details for the file yappi-1.6.9-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yappi-1.6.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 416a0652dec8e5a12dfdef18be22650bc14f8f42be4bac20002c3dd57211d153
MD5 ea796d62d9dab8e13cac645c2d7011b4
BLAKE2b-256 ba4607bd78c673a8abf3dce93d18b1d737adf4d12b19aac89cc6c7422b47ef8d

See more details on using hashes here.

Supported by

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