Skip to main content

pyinstrument

PyPI version .github/workflows/test.yml Build wheels

Documentation

Screenshot

Pyinstrument is a Python profiler. A profiler is a tool to help you optimize your code - make it faster. To get the biggest speed increase you should focus on the slowest part of your program. Pyinstrument helps you find it!

☕️ Not sure where to start? Check out this video tutorial from calmcode.io!

Installation

pip install pyinstrument

Pyinstrument supports Python 3.8+.

To run Pyinstrument from a git checkout, there's a build step. Take a look at Contributing for more info.

Documentation

To learn how to use pyinstrument, or to check the reference, head to the documentation.

Known issues

  • Profiling code inside a Docker container can cause some strange results, because the gettimeofday syscall that pyinstrument uses is slow in that environment. See #83
  • When using pyinstrument script.py where script.py contains a class serialized with pickle, you might encounter errors because the serialisation machinery doesn't know where __main__ is. See this issue for workarounds

Changelog

v5.1.3

  • Fixed Django middleware so PYINSTRUMENT_SHOW_CALLBACK is respected when PYINSTRUMENT_PROFILE_DIR is configured, allowing profiles to be selectively written to disk (#452).
  • Fixed Jupyter’s %%pyinstrument magic so console-specific render options—including time=percent_of_total, flat, short_mode, color, and Unicode settings—are correctly applied to text output (#446).
  • Fixed long program and command names overflowing the header in HTML reports. Long names now wrap cleanly (#449).
  • Added context-manager type annotations so type checkers correctly infer profile as a Profiler in with Profiler() as profile: blocks (#445).
  • Expanded wheel-building coverage to include CPython prereleases and GraalPy (#442).
  • Replaced the deprecated vendored appdirs implementation with simpler internal platform-specific user-data-directory handling (#451).
  • Updated build tooling and dependencies, including cibuildwheel and GitHub Actions.

v5.1.2

4 January 2026

  • Adds the ability to customize description using CLI option --target-description (#408)
  • You can set the interval for the Django middleware using the PYINSTRUMENT_INTERVAL option (#416)
  • HTMLRenderer can now run preprocessors on the input, to manipulate the call tree before writing to HTML (#403)
  • Fix a bug where mismatched start/stops can produce "call stack without an active session" errors (#406)
  • Limit sample count for the HTML renderer to ensure the browser can load the sample (#407)

v5.1.1

12 August 2025

  • Fix some memory leaks in the low-level C extension (#394)

v5.1.0

10 August 2025

  • Precision of printed durations now adapts to the interval of the profile. This allows you to see more detail when the interval, and hides unnecessary detail when the interval is large. (#390)
  • Adds an option to the Django middleware to customise the filename of saved profile runs using a callback (#393)
  • Adds an aiohttp.web example to the documentation (#389)

v5.0.3

2 July 2025

  • Fix a bug where the HTML renderer would crash when the profile is empty (#377)

v5.0.2

24 May 2025

  • Fix a bug that caused jupyter notebooks to continue to run after a profiled cell was interrupted with Ctrl-C (#373)
  • Fix a type annotation issue when using mypy and import pyinstrument (#373)

v5.0.1

23 January 2025

  • Adds a Django option to customise the filename of saved profile runs (#339)
  • Improve the FastAPI integration docs (#355)
  • Include more options in the IPython magic (#350)

v5.0.0

11 October 2024

Loads of improvements to the HTML renderer!

  • Timeline mode - see and zoom into an interactive linear timeline!

    timeline mode

  • HTML mode now has interactive options, rather than needing to set the upfront.

  • Streamlined the design of the HTML page header.

  • HTML Call stack view supports arrow key navigation.

  • The way ‘library’ code is detected has been changed. Previously, if the string ‘/lib/’ occurred in the file path, that was considered library code (and collapsed by default). Now, pyinstrument captures the paths of the Python install and any active virtualenv/conda env at profile time. Files that are stored there are considered library. That should give fewer false positives.

  • Calls to profiler.start() can now pass a target_description parameter, which is displayed in the profile readout.

Check my blog post for more info on the new features.

v4.7.3

6 September 2024

  • Fix a bug introduced in 4.7.0 which would cause the profiler to crash when profiling code with unusual locals, notably some pytest extensions (#332)
  • Fix a bug that causes pyinstrument to fail to import packages like glom on Python 3.12 or later, which mutate the locals() dict. (#336)
  • Fix a bug that caused a UnicodeDecodeError on some platforms (#330)
  • Fix a DivideByZero error that occurs in some situations
  • The IPython integration takes greater step to ensure a clean profile output, by ensuring internal frames are trimmed before printing. (#321)

v4.7.2

5 August 2024

  • Add CPython 3.13 wheels
  • Fix a bug that caused the HTML output to fail to render in some browser contexts (#328)

v4.7.1

2 August 2024

  • Fix issue with PyPI upload

v4.7.0

1 August 2024

  • Adds a new, convenient API for profiling chunks of Python code! You can now profile simply using a with block, or a function/method decorator. This will profile the code and print a short readout into the terminal. (#327)
  • Adds new, lower overhead timing options. Pyinstrument calls timers on every Python function call, which is fine on systems with fast timing available, but it adds significant overhead on systems that require a syscall for each, such as some Docker environments. Pyinstrument will now detect slow timers present a warning with two choices. You can enable a 'timing thread', which offloads the timing workload from the profiled thread, or, if you're happy with lower resolution, you can opt to use a 'coarse' timer, which is provided on some Linux systems. (#273)
  • Alt-click rows in the HTML output to collapse/expand the whole tree (#325)
  • Adds a flat argument to the console output, to present a flat list of functions (#294)
  • Adds a Litestar example config and docs (#284)
  • Preliminary Python 3.13 support (#322)

v4.6.2

26 January 2024

  • Fixes a bug with the pstats renderer, where additional frames could be seen in the output. (#287)
  • Adds show_all option to Profiler.output_html

v4.6.1

8 November 2023

  • Fixes a bug with unwanted variable expansion in the IPython magics %pyinstrument (#278)

v4.6.0

12 October 2023

  • Adds a feature -c, which allows profiling code directly from the command line, like python -c. (#271)
  • Adds a convenience method Profiler.write_html, for writing HTML output to a file directly. (#266)

v4.5.3

7 September 2023

  • Fix a problem in the packaging process that prevented upload to PyPI

v4.5.2

1 September 2023

  • Show the program name in the header of the HTML output (#260)
  • Improve program name capture through resilience to other programs modifying sys.argv (#258)
  • Add support for Python 3.12 (#246)

v4.5.1

22 July 2023

  • Fix a bug that caused [X frames hidden] in the output when frames were deleted due to __tracebackhide__ (#255)
  • Fix a bug causing built-in code to display the filepath None in the console output (#254)
  • Some docs improvements (#251)

v4.5.0

5 June 2023

  • Adds a flat mode to the console renderer, which can be enabled by passing -p flat on the command line. This mode shows the heaviest frame as measured by self-time, which can be useful in some codebases. (#240)
  • Adds the ability to save pstats files. This is the file format used by cprofile in the stdlib. It's less detailed than pyinstrument profiles, but it's compatible with more tools. (#236)
  • Fixes a detail of the --show-all option - pyinstrument will no longer remove Python-internal frames when this option is supplied. (#239)
  • Internally to the HTML renderer, it now uses Svelte to render the frontend, meaning profile HTML files bundle less javascript and so are smaller. (#222)

v4.4.0

5 November 2022

  • Adds the class name to methods in the console & HTML outputs (#203)
  • Fix a bug that caused pyinstrument machinery to appear at the start of a profile (#215)
  • Frames that set a __traceback_hide__ local variable will now be removed from the output (#217)
  • Jupyter/IPython magic now supports async/await, if you run with a --async_mode=enabled flag. (#212)
  • Fix a crash when more than one root frame is captured in a thread - this can happen with gevent.
  • A big refactor to the backend, allowing more than just static information to be captured. This currently is just powering the class name feature, but more is to come!

v4.3.0

21 August 2022

  • Adds buttons in the HTML output to switch between absolute and proportional (percentage) time.
  • Adds a command line flag --interval (seconds, default 0.001) to change the interval that pyinstrument samples a program. This is useful for long-running programs, where increasing the interval reduces the memory overhead.
  • Includes wheels for CPython 3.11.

v4.2.0

  • Adds a command-line option -p --render-option that allows arbitrary setting of render options. This lets you set options like filter_threshold from the command line, by doing something like pyinstrument -p processor_options.filter_threshold=0.

    Here's the help output for the option:

      -p RENDER_OPTION, --render-option=RENDER_OPTION
                        options to pass to the renderer, in the format
                        'flag_name' or 'option_name=option_value'. For
                        example, to set the option 'time', pass '-p
                        time=percent_of_total'. To pass multiple options, use
                        the -p option multiple times. You can set processor
                        options using dot-syntax, like '-p
                        processor_options.filter_threshold=0'. option_value is
                        parsed as a JSON value or a string.
    
  • Adds the ability to view times in the console output as percentages, rather than absolute times. Use the ConsoleRenderer option time='percent_of_total', or on the command line, use -p, like pyinstrument -p time=percent_of_total.

  • Adds command line options for loading and saving pyinstrument sessions. You can save the raw data for a pyinstrument session with -r session, like pyinstrument -r session -o session.pyisession myscript.py. Loading is via --load, e.g. pyinstrument --load session.pyisession.

  • Command line output format is inferred from the -o output file extension. So if you do pyinstrument -o profile.html myscript.py, you don't need to supply -r html, pyinstrument will automatically use the HTML renderer. Or if you do pyinstrument -o profile.pyisession myscript.py, it will save a raw session object.

  • Adds usage examples for FastAPI and pytest to the documentation.

  • Fixes a bug causing NotImplementedError when using async_mode=strict.

  • Adds support for Python 3.11

v4.1.1

  • Fixed an issue causing PYINSTRUMENT_PROFILE_DIR_RENDERER to output the wrong file extension when used with the speedscope renderer.

v4.1.0

  • You can now use pyinstrument natively in an IPython notebook! Just use %load_ext pyinstrument at the top of your notebook, and then %%pyinstrument in the cell you want to profile.
  • Added support for the speedscope format. This provides a way to view interactive flamecharts using pyinstrument. To use, profile with pyinstrument -r speedscope, and upload to the speedscope web app.
  • You can now configure renderers for the Django middleware file output, using the PYINSTRUMENT_PROFILE_DIR_RENDERER option.
  • Added wheels for Linux aarch64 (64-bit ARM).

v4.0.4

  • Fix a packaging issue where a package called 'test' was installed alongside pyinstrument
  • Use more modern C APIs to resolve deprecation warnings on Python 3.10.
  • Minor docs fixes

v4.0.3

  • CPython 3.10 support
  • Improve error messages when trying to use Profiler from multiple threads
  • Fix crash when rendering sessions that contain a module in a FrameGroup

v4.0.2

  • Fix some packaging issues

v4.0.0

  • Async support! Pyinstrument now detects when an async task hits an await, and tracks time spent outside of the async context under this await.

    So, for example, here's a simple script with an async task that does a sleep:

    import asyncio
    from pyinstrument import Profiler
    
    async def main():
        p = Profiler(async_mode='disabled')
    
        with p:
            print('Hello ...')
            await asyncio.sleep(1)
            print('... World!')
    
        p.print()
    
    asyncio.run(main())
    

    Before Pyinstrument 4.0.0, we'd see only time spent in the run loop, like this:

      _     ._   __/__   _ _  _  _ _/_   Recorded: 18:33:03  Samples:  2
     /_//_/// /_\ / //_// / //_'/ //     Duration: 1.006     CPU time: 0.001
    /   _/                      v3.4.2
    
    Program: examples/async_example_simple.py
    
    1.006 _run_once  asyncio/base_events.py:1784
    └─ 1.005 select  selectors.py:553
          [3 frames hidden]  selectors, <built-in>
             1.005 kqueue.control  <built-in>:0
    

    Now, with pyinstrument 4.0.0, we get:

      _     ._   __/__   _ _  _  _ _/_   Recorded: 18:30:43  Samples:  2
     /_//_/// /_\ / //_// / //_'/ //     Duration: 1.007     CPU time: 0.001
    /   _/                      v4.0.0
    
    Program: examples/async_example_simple.py
    
    1.006 main  async_example_simple.py:4
    └─ 1.005 sleep  asyncio/tasks.py:641
          [2 frames hidden]  asyncio
             1.005 [await]
    

    For more information, check out the async profiling documentation and the Profiler.async_mode property.

  • Pyinstrument has a documentation site, including full Python API docs!

v3.4.2

  • Fix a bug that caused --show, --show-regex, --show-all to be ignored on the command line.

v3.4.1

  • Under-the-hood modernisation

v3.4.0

  • Added timeline option (boolean) to Profiler methods output_html() and open_in_browser().

v3.3.0

  • Fixed issue with pyinstrument -m module, where pyinstrument wouldn't find modules in the current directory.
  • Dropped support for Python 2.7 and 3.5. Old versions will remain available on PyPI, and pip should choose the correct one automatically.

v3.2.0

  • Added the ability to track time in C functions. Minor note - Pyinstrument will record time spent C functions as 'leaf' functions, due to a limitation in how Python records frames. Python -> C -> Python is recorded as Python -> Python, but Python -> Python -> C will be attributed correctly. (#103)

v3.1.2

  • Fix <__array_function__ internals> frames appearing as app code in reports

v3.1.1

  • Added support for timeline mode on HTML and JSON renderers
  • Released as a tarball as well as a universal wheel

v3.1.0

  • Added PYINSTRUMENT_SHOW_CALLBACK option on the Django middleware to add a condition to showing the profile (could be used to run pyinstrument on a live server!)
  • Fixed bug in the Django middleware where file would not be written because of a unicode error

v3.0.3

  • Fixed bug with the Django middleware on Windows where profiling would fail because we were trying to put an illegal character '?' in the profile path. (#66)

v3.0.2

  • Add --show and --show-regex options, to mark certain files to be displayed. This helps to profile inside specific modules, while hiding others. For example, pyinstrument --show '*/sympy/*' script.py.

v3.0.1

  • Fix #60: pass all arguments after -m module_name to the called module
  • Fix crash during HTML/JSON output when no frames were captured.

v3.0.0

  • Pyinstrument will now hide traces through libraries that you're using by default. So instead of showing you loads of frames going through the internals of something external e.g. urllib, it lets you focus on your code.

    Before After
    image image

    To go back to the old behaviour, use --show-all on the command line.

  • 'Entry' frames of hidden groups are shown, so you know which call is the problem

  • Really slow frames in the groups are shown too, e.g. the 'read' call on the socket

  • Application code is highlighted in the console

  • Additional metrics are shown at the top of the trace - timestamp, number of samples, duration, CPU time

  • Hidden code is controlled by the --hide or --hide-regex options - matching on the path of the code files.

      --hide=EXPR           glob-style pattern matching the file paths whose
                            frames to hide. Defaults to '*/lib/*'.
      --hide-regex=REGEX    regex matching the file paths whose frames to hide.
                            Useful if --hide doesn't give enough control.
    
  • Outputting a timeline is supported from the command line.

      -t, --timeline        render as a timeline - preserve ordering and don't
                            condense repeated calls
    
  • Because there are a few rendering options now, you can load a previous profiling session using --load-prev - pyinstrument keeps the last 10 sessions.

  • Hidden groups can also call back into application code, that looks like this:

    image

  • (internal) When recording timelines, frame trees are completely linear now, allowing for the creation of super-accurate frame charts.

  • (internal) The HTML renderer has been rewritten as a Vue.js app. All the console improvements apply to the HTML output too, plus it's interactive.

  • (internal) A lot of unit and integration tests added!

Yikes! See #49 for the gory details. I hope you like it.

v2.3.0

  • Big refactor!
    • Recorders have been removed. The frame recording is now internal to the Profiler object. This means the 'frame' objects are more general-purpose, which paves the way for...
    • Processors! These are functions that mutate the tree to sculpt the output. They are used by the renderers to filter the output to the correct form. Now, instead of a time-aggregating recorder, the profiler just uses timeline-style recording (this is lower-overhead anyway) and the aggregation is done as a processing step.
    • The upshot of this is that it's now way easier to alter the tree to filter stuff out, and do more advanced things like combining frames that we don't care about. More features to come that use this in v3.0!
  • Importlib frames are removed - you won't see them at all. Their children are retained, so imports are just transparent.
  • Django profile file name is now limited to a hundred of characters (#50)
  • Fix bug with --html option (#53)
  • Add --version command line option

v2.2.1

  • Fix crash when using on the command line.

v2.2.0

  • Added support for JSON output. Use pyinstrument --renderer=json scriptfile.py. PR

  • @iddan has put together an interactive viewer using the JSON output!

    image

  • When running pyinstrument --html and you don't pipe the output to a file, pyinstrument will write the console output to a temp file and open that in a browser.

v2.1.0

  • Added support for running modules with pyinstrument via the command line. The new syntax is the -m flag e.g. pyinstrument -m module_name! PR

v2.0.4

v2.0.3

  • Pyinstrument can now be used in a with block.

    For example:

    profiler = pyinstrument.Profiler()
    with profiler:
        # do some work here...
    print(profiler.output_text())
    
  • Middleware fix for older versions of Django

v2.0.2

  • Fix for max recursion error when used to profile programs with a lot of frames on the stack.

v2.0.1

  • Ensure license is included in the sdist.

v2.0.0

  • Pyinstrument uses a new profiling mode. Rather than using signals, pyintrument uses a new statistical profiler built on PyEval_SetProfile. This means no more main thread restriction, no more IO errors when using Pyinstrument, and no need for a separate more 'setprofile' mode!

  • Renderers. Users can customize Pyinstrument to use alternative renderers with the renderer argument on Profiler.output(), or using the --renderer argument on the command line.

  • Recorders. To support other use cases of Pyinstrument (e.g. flame charts), pyinstrument now has a 'timeline' recorder mode. This mode records captured frames in a linear way, so the program execution can be viewed on a timeline.

v0.13

  • pyinstrument command. You can now profile python scripts from the shell by running $ pyinstrument script.py. This is now equivalent to python -m pyinstrument. Thanks @asmeurer!

v0.12

  • Application code is highlighted in HTML traces to make it easier to spot

  • Added PYINSTRUMENT_PROFILE_DIR option to the Django interface, which will log profiles of all requests to a file the specified folder. Useful for profiling API calls.

  • Added PYINSTRUMENT_USE_SIGNAL option to the Django interface, for use when signal mode presents problems.

Contributing

To setup a dev environment:

virtualenv --python=python3 env
. env/bin/activate
pip install --upgrade pip
pip install -r requirements-dev.txt
prek install --install-hooks

To get some sample output:

pyinstrument examples/demo_scripts/wikipedia_article_word_count.py

To run the tests:

pytest

To run linting checks locally:

prek run --all-files

Some of the checks, like isort or black, will auto-fix the problems they find. So if the above command returns an error, try running it again, it might succeed the second time :)

Running all the checks can be slow, so you can also run checks individually, e.g., to format source code that fails isort or black checks:

prek run --all-files isort
prek run --all-files black

To diagnose why pyright checks are failing:

prek run --all-files pyright

The HTML renderer Vue.js app

The HTML renderer works by embedding a JSON representation of the sample with a Javascript 'bundle' inside an HTML file that can be viewed in any web browser.

To edit the html renderer style, do:

cd html_renderer
npm ci
npm run serve

When launched without a top-level window.profileSession object, it will fetch a sample profile so you can work with it.

To compile the JS app and bundle it back into the pyinstrument python tool:

bin/build_js_bundle.py [--force]

Download files

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

Source Distribution

pyinstrument-5.1.3.tar.gz (262.2 kB view details)

Uploaded Source

Built Distributions

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

pyinstrument-5.1.3-graalpy312-graalpy250_312_native-win_amd64.whl (121.8 kB view details)

Uploaded Windows x86-64graalpy312

pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (122.2 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (123.3 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyinstrument-5.1.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (120.8 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

pyinstrument-5.1.3-cp314-cp314t-win_amd64.whl (122.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyinstrument-5.1.3-cp314-cp314t-win32.whl (121.7 kB view details)

Uploaded CPython 3.14tWindows x86

pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (149.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (150.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (150.5 kB view details)

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

pyinstrument-5.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (152.8 kB view details)

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

pyinstrument-5.1.3-cp314-cp314t-macosx_11_0_arm64.whl (120.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyinstrument-5.1.3-cp314-cp314t-macosx_10_15_universal2.whl (127.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

pyinstrument-5.1.3-cp314-cp314-win_amd64.whl (122.2 kB view details)

Uploaded CPython 3.14Windows x86-64

pyinstrument-5.1.3-cp314-cp314-win32.whl (121.4 kB view details)

Uploaded CPython 3.14Windows x86

pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (143.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (143.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (143.7 kB view details)

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

pyinstrument-5.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (145.0 kB view details)

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

pyinstrument-5.1.3-cp314-cp314-macosx_11_0_arm64.whl (119.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyinstrument-5.1.3-cp314-cp314-macosx_10_15_universal2.whl (126.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyinstrument-5.1.3-cp313-cp313-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pyinstrument-5.1.3-cp313-cp313-win32.whl (120.7 kB view details)

Uploaded CPython 3.13Windows x86

pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (143.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (144.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (144.0 kB view details)

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

pyinstrument-5.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (145.2 kB view details)

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

pyinstrument-5.1.3-cp313-cp313-macosx_11_0_arm64.whl (119.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyinstrument-5.1.3-cp313-cp313-macosx_10_13_universal2.whl (126.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyinstrument-5.1.3-cp312-cp312-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyinstrument-5.1.3-cp312-cp312-win32.whl (120.7 kB view details)

Uploaded CPython 3.12Windows x86

pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (143.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (143.9 kB view details)

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

pyinstrument-5.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (145.1 kB view details)

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

pyinstrument-5.1.3-cp312-cp312-macosx_11_0_arm64.whl (119.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyinstrument-5.1.3-cp312-cp312-macosx_10_13_universal2.whl (126.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyinstrument-5.1.3-cp311-cp311-win_amd64.whl (121.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pyinstrument-5.1.3-cp311-cp311-win32.whl (120.6 kB view details)

Uploaded CPython 3.11Windows x86

pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (141.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (142.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (141.9 kB view details)

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

pyinstrument-5.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (143.4 kB view details)

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

pyinstrument-5.1.3-cp311-cp311-macosx_11_0_arm64.whl (119.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyinstrument-5.1.3-cp311-cp311-macosx_10_9_universal2.whl (126.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pyinstrument-5.1.3-cp310-cp310-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyinstrument-5.1.3-cp310-cp310-win32.whl (120.6 kB view details)

Uploaded CPython 3.10Windows x86

pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (143.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (143.3 kB view details)

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

pyinstrument-5.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (144.6 kB view details)

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

pyinstrument-5.1.3-cp310-cp310-macosx_11_0_arm64.whl (120.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyinstrument-5.1.3-cp310-cp310-macosx_10_9_universal2.whl (126.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pyinstrument-5.1.3-cp39-cp39-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pyinstrument-5.1.3-cp39-cp39-win32.whl (120.6 kB view details)

Uploaded CPython 3.9Windows x86

pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (142.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (143.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyinstrument-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (142.9 kB view details)

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

pyinstrument-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (144.2 kB view details)

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

pyinstrument-5.1.3-cp39-cp39-macosx_11_0_arm64.whl (120.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyinstrument-5.1.3-cp39-cp39-macosx_10_9_universal2.whl (126.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pyinstrument-5.1.3.tar.gz.

File metadata

  • Download URL: pyinstrument-5.1.3.tar.gz
  • Upload date:
  • Size: 262.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3.tar.gz
Algorithm Hash digest
SHA256 93dc5576fa90bb267c46d864712329e8e057f51a6b15d0b4f917558d82066ba7
MD5 7c7d2f387f6d2f889588280a8b93e4a1
BLAKE2b-256 a0055b79b16712f9b7c497f2137868908e5d38646a8ef7871d6008801e6e18a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3.tar.gz:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 8f6d68350a2314222f85e32ccc519b69bcd41c82349e7b280ba5ebb473a5633a
MD5 7c34f5d55e44f5174b5e7eb27b7ae78e
BLAKE2b-256 50b2f4708a7e1f7ad1777ed8b559b3ff08f1ed52059205c704d6e12bb941caa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e72d5db0bdc8488eba396a5447bdc7ecff067cbd4d7ca8f1d7b862dae0e9c2f6
MD5 2901070ec4f612d06a07f840f382f74e
BLAKE2b-256 2b47a51976758124654e18d1c11a2dcd6811a7a9c4e03f50d9ee8438e4fe6d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8b8a126894ea5553a7a565f86e26ae3c56a7b0a7c73422fbd382de3a34a1480
MD5 c9b8adf0d4f5ab66e907e4bd602b13fa
BLAKE2b-256 01a543e397d6f1f2eecf8ac82e6c2ccb252493cfd413776bd094e4e770d4f762

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8bae0a0bf1ec2e54bd7a3a456395e1a1e695c53e06252b8e6f43b2c5f344139
MD5 aa35f0b99118b99451f3f036b427cca6
BLAKE2b-256 4d7e94412787ed5320450664baf66bb2f46a0f0fec21742ef9701c8399cbc026

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1d66dd832db458f81ca71fbe5fa97dbeb0bfb930d8bde4ea650523ce61dc7ec9
MD5 c5a1039600261ea4c1a23685312f2b30
BLAKE2b-256 ddcae5b233969e15f600f3f0a03ed8d8e7f02e28d6d66cc9cdd1ce21cdcbba22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 121.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dd4199f016827bda29d571b7c4e7c2ae968b881611da13b4e3c1991882f04445
MD5 e86a40b81d3d3b53ee963b590222fc69
BLAKE2b-256 87b459d67f48adca36a6b2eb9c11cd90adef264c593b4b435c48f62b3241ef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcdc41a648a7c6c420c507998f00134639c2a0c6097904a33b859938a3340031
MD5 7b037e582b423ae780923f409b5a3562
BLAKE2b-256 6de4a9c41f24bb9c3d3db66cdd645fe1178533954491f5c3cc9645c1f987635d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23e3cedb558eacd2422c1258e016a89d057c15db0c21f892c3f6e5fd4a6d12b2
MD5 405167d3a34fdd32b0715363726a294a
BLAKE2b-256 a83b3634f5438cc6cd7bce17b5bf369eb004b196cda89d46ba6168bacfbb385d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec5df769cc2d4dc01c54fb05b28132f17691e914330fc4ba88e29a42b12e73c7
MD5 67fd3723bf41b19b768018afbc584e5e
BLAKE2b-256 68b18181fad7ea01b40c7f75b95802c406a06c0d0a11f8f496f625a471523bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ed0d243579d9f8690deed04d10a2001208fc5775ccf39c52137a4ae9627c750
MD5 8f53c562075329f305d697f72bee1e51
BLAKE2b-256 4d5549c32296eb6730e98736189dbfe369fc45deea1a166e3db4518c74d62f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26a2f33b682bca12fffcefccbfc373d516599c7a437df94a8f5f2d8f44e42415
MD5 1afc1a736860b265d6d40db61e97fc9c
BLAKE2b-256 5551bea43b2667324e56a1f85abd2403663e34cd0fbc0fee7272aa11446eb7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3cbe8e7b3b9306eb5e954a7722f87da9ad0cc396ffde65272aed3a3cf9389db1
MD5 0dc135010dfbb77deafb6c42648167e4
BLAKE2b-256 79ee11f6c8d11b954811f08ed66c814f28b7992d7bdcde6b259a921ef0efc5b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cbfb924a0a9a4762388d16e9ed3dd0fb9db5d94bf433c3099d251707de4b94bd
MD5 6ca30ce32124a6528df006d54c247862
BLAKE2b-256 90c239cd36da0d87b06e23666e5a375dc2918b55007f6bb8039d5bc7fd5cd9f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 121.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f5aca86d05f40f50720ba1edfd3acac23023292b902d50f6f2a3039d7b1f6413
MD5 66cb157a32b60c9b4764be501e25363a
BLAKE2b-256 568ae260494a5dfd31e4628a02e7790b6f631313bbd98ca6bf7c15d9d6f4ae1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 067811d732f731e88c715820f893896d7f1083af23a8813d81b46b8f6754be44
MD5 e603f7233abeb81fd829ed40e42b0237
BLAKE2b-256 550fe19480d1e683c942463790a9f911f0890a014925db2652ab1c9619e136bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24b9e35f8586d68e53f16ff09fc5a932b21be3b3b973c6afd7bb073df6e14028
MD5 58427188086c2769e54645203b1a7e3a
BLAKE2b-256 e1bf870ea051433b7f46c9e6a0e1bbae29564aa945e1c4a61a120066a53c29dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 350c05b72ef6e5158c9414d11225742da767f15669f9f23f674e702b42b9fa76
MD5 0dda957032678ff1ccf51526e2c5382b
BLAKE2b-256 17d1ce37a48a4148c76ee820dacc9c41c14530d618ab569edfe30138715f6116

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bbda7c2ead7fc6eb686239c3c1141e6f99ed7427ba3b9223b3f53c4dd78de22
MD5 89d193d79378a848b0f65f571277dc45
BLAKE2b-256 198779966a8f00ac793562c196736b98eee60b8f3b017ee27b4576a21a2c441f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb60379831d241155f2a271113bbdde1922a75bedbd1b8ad8a7647f84bde905c
MD5 0c2c2f2a31007cfefe7bb4c5651869fd
BLAKE2b-256 db74db134b2591a6e7354b60a6fd725b0dc896a7806978f64f158561e3344af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8c226b6680f20fc73430cbf71dff4be7d8daa926e9a21d563fbd632c8f49d993
MD5 a4423e2b1146703cccadcb053a5f4bf8
BLAKE2b-256 067250f166caf3e4738e5df2dfcd32acf9d8c876c9b1ab2be94bd55d70787350

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4e48616d28606bf3c4b04d4369582c7802b23b38eacc62d7ea88f0145673387
MD5 f316a8e73fe5bdf2dd4f411b69e5ac63
BLAKE2b-256 4158a2ad5dabb859634b60e17ddf3d3ab4c8ecd8d1ce1595392017c9480949aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 120.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6e2b51ac576fdad9e2988636eee827c285de8c890867d305f9ebf7ce95f98bd0
MD5 86955c79c49e58640dfa890de7a80ce1
BLAKE2b-256 2e1a9e969ec59679f786aa9148642231c33324280e91d9ac2803687ea7c3b24b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdef704955e2dbbcf2b3f3dd574847996ff4cf1f2fb3a9c847e7c2e7182b6a19
MD5 f5391b13d409f6a4433d5f8ea19772c9
BLAKE2b-256 01f5b05f1b1754aed92674a25083b8409a043755d49720bdc7e6319261b9fb6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7021c95837d37dee2c05c4aa6ad7cf73ecc9b4c2bf040ce58897a9fcdaa36d8f
MD5 8fee8865f4de56fd01d411c8a0b783ab
BLAKE2b-256 f4c84b17e9e44bf192733e63ba679dcaff936cc5dfb8575ca8f961dcd19609d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4551c8fee6586f3ef01712d4dffcb9c38ae79d1dbc16fe9416e8ec60c88158c
MD5 d0ebfad5f71e8f87d6c198258f9269c6
BLAKE2b-256 10e31bc53c5fe87872fbd446191d115b2860366842f5699f6173ff6a1eddfbf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06c26c65a4cd5699c7c3a7f41f372e9785d511ff0113ec39723c7bf0340e989c
MD5 0ef6267781437ce23bfd98b5ba57a4eb
BLAKE2b-256 45c5bf2ff35d059a0ab2d61659ca7deb085daea41da39bde2c1b93f628ac8628

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7077446b490c73b6c1fbb4324c409f841914c032667ad395b8658c0bf742727b
MD5 3206f2410bb6352df092dd8d57e77252
BLAKE2b-256 54bfb0de56cf307f27d4ab459db8c0a05e1b660acf55b23b1ae810c830d9c235

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4d53b7f120d2643161c1508bcef2789009dca9565360d6e6b06bf598d29b246b
MD5 9b927ff62c1a817a292e51c1c6f39001
BLAKE2b-256 0c375b9b4341a62fcb80206c8d179d8dfc6fe5574eed24c9035c44913430542e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ad617768b3c35acc4db89b5130fc0b98ce763f3a42dde255447bed3bd40d306
MD5 d86d4ee0473e76bcd727ea37ddd1c91d
BLAKE2b-256 c3fd617fc91f97d617db558a0d863aaf9101f12203017ca2a07f11618a7094ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 120.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a5c2d30f255f0a84f9b5cd53e17877e3e73b921d34b395f17a206f85fda2cfc
MD5 617d3af142bb2204a157a73074182765
BLAKE2b-256 1685e6da5dbcb4890f40e06500f55344b3361a54fb6773fc9fc63f3ba30ee47f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c027d490a6caa2f18bf92ceecc46ab8580c8eee772af34b04c61c18fb4adf853
MD5 4041cfcb94db0c21d1149cfb7b9ee67d
BLAKE2b-256 fed61225f67d8da66c93ebdbf97081f9169b52d16c2e4453477f4f7e2de70879

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f16e1501e9d3a423b837aacc0b6ce9fa7c2fbf5e0e73a7afe9847912d805594c
MD5 3966f96301f34d4b4e13bf76b9627171
BLAKE2b-256 6772e471ce7be3332143f4fbf9886c3ed0726792d2d533d4c130682f611bbe90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4db9ebe8242038bf9f60c623bac0811611e54363a2fe33b79448b548b9108bef
MD5 a3b976d4098c511199192c3fe9a731c7
BLAKE2b-256 d76ecd47fa4c2fef0d86a25684f0857df854155dfd2492bbbedd33b6c07f0578

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6cbef7ea81fa11bbca1b0bbf9d1d56bf2da96b3f675b593142c8772f7d0dc35
MD5 f677312586b3b5b4594de77427da3524
BLAKE2b-256 485ced9d97b6c405580e18f304b613f482d1f5c7b52a18c3b4154ad0a1841e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58009e21257ed0e139a666dfc628a6fa6a734fca3ec7bde77d51d43fc4947d7b
MD5 c6c7f597fc50d20c41d0ac3334cb040a
BLAKE2b-256 89bdef19f60fb92c800d5d9c12f09d86e541fdec794d98840fb2996d462d4d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 eef82fd717e38c821b2276f50aa9812825036f03e7b345f2969dd264214cfc60
MD5 3aa03fe051b4e0300f647e73514e4c71
BLAKE2b-256 837acf24adef45bdfa9dc59371713f960c449663ae90cbe0435ce353b38e3c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc46be132af558e9381383bacfe986da5abb9e1129151dc6ac760d8e4e420e0d
MD5 a8d14d037d8ca25c96b595be4de45c62
BLAKE2b-256 80b9cc9a9dc3e055840b477b1b147985f6ae251e5eebeaa257ff43ecd80c1c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 120.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6a4d948fd53df2891986a6c539ad463db729c4528dea4c16a7f995fe719758a2
MD5 006c4fad4cf67bb400d7311717a6d74b
BLAKE2b-256 2cd3d7f48a894f1a2a147263b892ee019b0c5bda38105ded85799a3ae53ca248

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b31be199d1da29b19c522cafeef0e0778f2c8c4be349b56e17ff93b5ca8eff9
MD5 ac5bf5e2ff8d5175b5611cbb6520efac
BLAKE2b-256 6ceaedb64ef7b0d9de1fc2458b4f9c22fda82f33781f93510a3bc8cff591611c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 472a547412c78b7d783f28d7cdca7cdc870d172444a29078652a2e5bca406741
MD5 79b49554e12fb9ec0cf7962222c95f77
BLAKE2b-256 d8ba7766a636c1afa7a844054a077f9dd05aa70c2bcaa2ca4573c079d1f7be56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4bedf32ff7fd56fbd5d5e9ccd771bb27884faab312a990685a2d5e97c83f882
MD5 f462411f19d5ef0ca898df8d712442d2
BLAKE2b-256 e050e77726eac04a5070ebb69ad9456c0a5649c1b3fa9870504f3a49fd3a975d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21b1486d8493b81fdef30e833ba4856785c34a79c9aea29c91bff5003a84e40a
MD5 b95e655cd9dd67289296c1444623958b
BLAKE2b-256 69c7dbb65c0e0c6dc189471607e580af8c44daf007949f99a9563489aaa7363b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd1a74b9dec4fafc4cf4dd1df9cda56a83b7cb3e3826236044edaae2a2d6edbe
MD5 0a42c77c031056b9163314ac7a774f47
BLAKE2b-256 3e75a2ba3a91600191492391f0ba997ae781c0c8791f01fc31ab381cba03318d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 157aa322ceb07c2b990591c48b60a66482cad1026fdd53debd9f9ce7afb9b326
MD5 5ad10b899d962a8af9357ebc65fd1da9
BLAKE2b-256 f973474b513a521b14b5fc58e7f191061bee78192deec4e22c8dc8d6ddeec628

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 49aa1434302880766c509a8b75d44277b9312de78d36a0a2a61f1103617a0f0f
MD5 f846da26e2d616b69cf66b0996550fda
BLAKE2b-256 66e1ab44fb2b6c3ecfea902e25d9fada3df6bb801c874c4a400e754edf2c1094

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 120.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5b62ff755975c6a3a5752fd1d441e6633f4e01179470395afc1f1cb44630f02d
MD5 047a400aa38c2fd30513cfb0f4385c39
BLAKE2b-256 feb98475e6533b3dd862df3ad6b1d4535c69475ff7f789d4d872b3c9499b3c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a70a333780cdcdc6a02c10c3ec46b4755575047d7039b990b1d7cf669cf3d2d
MD5 d9c4aab72368b23328a4ec53357e2de9
BLAKE2b-256 b6d1210c1d33334a6dfd0f6406e151667bf5edd8adb077d041f429e9febc8adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 821318352dfdae169299d4849b8604c49c70ad67f5230d97454a91db4e98d207
MD5 568b5caf1d66bfab37abd8ff5c75f214
BLAKE2b-256 4f17b0317f41e25265a510ca4affe87d440d174f09ff265a1be51c38f97b5268

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c58bfda00a4247d53f1c733d5293aa1aefe75ad9ba0df439f736ee386cd234bd
MD5 c7b445e2017264444b0bed50f1e4d5e4
BLAKE2b-256 fe6e6c5f6cab9209769eede74ce78812f9f015f6a110b780bd0486b962ec509b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7846c30455fc15e2910bdabc273c9a5685b2e5c37b58a960854f66940689de46
MD5 fd48c23c8505446ef26e4a16558e1759
BLAKE2b-256 4ce0ccb0595dc1f03c4099ced23a2509e24c472a9f4b1c993a569fb50b0d8741

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3dfc649702c99256d44f38435986d36f8be6cd14b268c75eccb2e6ce2bd2942
MD5 dda56269256a761784ae5573b3f225fb
BLAKE2b-256 e6cfd69a6e34b8eaf04496c73cc2069ae255849ce4d3919173921da8826ab8d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c8b8e003feab0658b6bb91eb61dd96034dc243a994cb61adadd02ce186c6158b
MD5 13e573a5cb1a9f779d756c2c6a2d4978
BLAKE2b-256 c4cdea6df41d0e69e726fc1873b44380796b753c3b337b823908314f2a907099

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 121.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5f10f9d5960048c7f1817e9187a413da45f3727b8d7f6b6d7a12c051ded5f93
MD5 dfbdcf19738251aeb571f65f96416c1a
BLAKE2b-256 613c527e99a0789f8bada156563a3e3b7bf6d48df65787394713fbdc2f2c8ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyinstrument-5.1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 120.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b6ccbf336d4f248393a3cefa5257f08b6d997b405ce8c74dfe386d46fb72ac98
MD5 3ded28a729970f81de883d43ed014db9
BLAKE2b-256 5d583dccbe3a0040b71ad19116a84b4b0680f3dfc6ae4a3816835050f67d7346

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-win32.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f49d20f92d6527bc04feaa7fec4e4045d9461fd0fae8bc52615cfc01a4ca2314
MD5 6379514d50092ccbc04545cc81d142f2
BLAKE2b-256 5d20fca4f4fe27cbabb7a618bb09c63b293404eb04c40d22c1115f9c071ff420

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c4fe1ffeefc6bd98f8d58cdd99eb8d39e531e98f478790606904d9ef52c8942
MD5 f65e4ef5105d02f979d9ecc1fa5cf593
BLAKE2b-256 bd3e3c4dd187d5beb8d7aa577e62552b8b5ca4fab203c94d795cb17d41306abb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80cd899482b32119c8dbfcb3fc77751a88d2cec9216bf77ea821a6a97a4335ca
MD5 34027c1ad5d93ffa387e8d30daa0a112
BLAKE2b-256 4e0ebfd5806b46435b03dc8a94046e43a0be2c6f415045eb5df0d6976d85e8a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9243f04542b153443131c0bbaa9f8a6b009078436886256f48b9b25060f6d41e
MD5 3fce3e6685e90fba0e03805c88a53fe4
BLAKE2b-256 d67881995e14de688ac1adf4e7021a356655589514dbded54ac8a7a193a76e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdc40bbc1888425466f62c27baca7a19e26fb8020718498b50688072ca662380
MD5 8e28b1b03b1bc86130e7248e3c4971a2
BLAKE2b-256 0aa3d6abe0b50b0dc3b43821911a02a0c9257bf08ffb4d511a0e51735b392dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyinstrument-5.1.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyinstrument-5.1.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f5ea9062b14b8d2b17c98e6f1115211b2a4d74b53bf9447b0faded1c72b143a9
MD5 d15dbdb889bf4f9e230bc24b047d8689
BLAKE2b-256 a107050d9774fea299bd8457570e8b3fdc4e113386833bb50064a750c594b734

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyinstrument-5.1.3-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: wheels.yml on joerick/pyinstrument

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

5.1.3 This release

61 files

5.1.2

65 files

5.1.1

65 files

5.1.0

65 files

5.0.3

49 files

5.0.2

73 files

5.0.1

61 files

5.0.0

61 files

4.7.3

61 files

4.7.2

61 files

4.7.1

51 files

4.6.2

60 files

4.6.1

60 files

4.6.0

60 files

4.5.3

60 files

4.5.1

50 files

4.5.0

50 files

4.4.0

50 files

4.3.0

50 files

4.2.0

40 files

4.1.1

28 files

4.1.0

28 files

4.0.4

24 files

4.0.3

24 files

4.0.2

23 files

4.0.1

1 file

4.0.0

23 files

3.4.2

2 files

3.4.1

2 files

3.3.0

2 files

3.2.0

2 files

3.1.4

2 files

3.1.3

2 files

3.1.2

2 files

3.1.0

2 files

3.0.3

2 files

3.0.2

1 file

3.0.1

2 files

3.0.0

2 files

2.3.0

1 file

2.2.1

1 file

2.1.1

1 file

2.0.3

2 files

2.0.2

1 file

2.0.1

1 file

2.0.0

2 files

0.13.2

1 file

0.13.1

1 file

0.13

1 file

0.12

1 file

0.11

1 file

0.10.1

1 file

Supported by

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