Skip to main content

Call stack profiler for Python. Shows you why your code is slow!

Project description

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!

Installation

pip install pyinstrument

Pyinstrument supports Python 3.7+.

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

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
pre-commit install --install-hooks

To get some sample output:

pyinstrument examples/wikipedia_article_word_count.py

To run the tests:

pytest

To run linting checks locally:

pre-commit run --all-files

Some of the pre-commit 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:

pre-commit run --all-files isort
pre-commit run --all-files black

To diagnose why pyright checks are failing:

pre-commit 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]

Project details


Download files

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

Source Distribution

pyinstrument-4.1.0.tar.gz (368.0 kB view details)

Uploaded Source

Built Distributions

pyinstrument-4.1.0-cp310-cp310-win_amd64.whl (94.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyinstrument-4.1.0-cp310-cp310-win32.whl (93.8 kB view details)

Uploaded CPython 3.10 Windows x86

pyinstrument-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (106.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyinstrument-4.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.4 kB view details)

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

pyinstrument-4.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.7 kB view details)

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

pyinstrument-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyinstrument-4.1.0-cp310-cp310-macosx_10_9_universal2.whl (95.6 kB view details)

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

pyinstrument-4.1.0-cp39-cp39-win_amd64.whl (94.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyinstrument-4.1.0-cp39-cp39-win32.whl (93.8 kB view details)

Uploaded CPython 3.9 Windows x86

pyinstrument-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (106.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyinstrument-4.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.1 kB view details)

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

pyinstrument-4.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.3 kB view details)

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

pyinstrument-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyinstrument-4.1.0-cp39-cp39-macosx_10_9_universal2.whl (95.6 kB view details)

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

pyinstrument-4.1.0-cp38-cp38-win_amd64.whl (94.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyinstrument-4.1.0-cp38-cp38-win32.whl (93.6 kB view details)

Uploaded CPython 3.8 Windows x86

pyinstrument-4.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (105.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyinstrument-4.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.0 kB view details)

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

pyinstrument-4.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.1 kB view details)

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

pyinstrument-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyinstrument-4.1.0-cp38-cp38-macosx_10_9_universal2.whl (95.0 kB view details)

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

pyinstrument-4.1.0-cp37-cp37m-win_amd64.whl (94.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyinstrument-4.1.0-cp37-cp37m-win32.whl (93.6 kB view details)

Uploaded CPython 3.7m Windows x86

pyinstrument-4.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (104.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyinstrument-4.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (109.5 kB view details)

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

pyinstrument-4.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (108.8 kB view details)

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

pyinstrument-4.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (90.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0.tar.gz
  • Upload date:
  • Size: 368.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0.tar.gz
Algorithm Hash digest
SHA256 9c770bb316fc033e7fa7f837e4f8db1db93d0fd07890e90ea628b570bf415b78
MD5 e4f391fc299f42c438dbae98f87d225c
BLAKE2b-256 34625b101e911f260ae5e69ff299ba046ce22f99305113b3c9782752247a55b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c590a771bc4455f328e51ec7d21a19d3b0c11a39b19c0b36b9c78fdc1161d2d7
MD5 890840773630a08e2ec9cbdc0177bff3
BLAKE2b-256 f347cd043d6137b5cb14e4ad9f6666fbe07371f59f6087e344be18bf6d2fc475

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4594e14102522798a5445d9e1bc4552e0f310ef0edd50a21870cdeddf5150960
MD5 fae3647f2cc0de8d3ff507457388dc2d
BLAKE2b-256 f71df6ee3c8848e1e055fd699ac4dfdfff4e5defee70c880856cb7ffb7784f3d

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f9a40eca85fb156bcd5f71a71b57f58c9fa381cfe588ab89fe6c05a9cb1efbc
MD5 5b035e7f1c20ce8c007340c61a0ca701
BLAKE2b-256 e6914f3dbb17b9b937ff8e3336751dace170ea350c96794d463f7deb80dfafb1

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5bf6875fae8d02892dfe8745143de802c500589189a48a9e5e7725d8f5af761e
MD5 35c38ffc78e79988f14b505be1964dbd
BLAKE2b-256 c6345457e66fda1777a5492125112e26feb460761b9ece52b5f6181f28d202b1

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ce521d91e816c1a1d4df257ee9997db791cfb9422eb49410ad34efd4469e910
MD5 19005b9001e97d23aaa9afc40a925b6a
BLAKE2b-256 034420a056f0e8b419de1d356e39560d910060e1e5b2f1983c36cf4a395b5aa7

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 91.0 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66c53e0c2d4b6842ed22f7292662b78530772576a414ceb39d3d0d23f96fcd72
MD5 fa6f9f31edf257aa6fefac6a5f00b90a
BLAKE2b-256 3b12ea0404a2617b28e4fd3fc19cbfc45ea0ad93c846fab97976d77880781335

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 95.6 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7b8fb2f3bb8441dd435de461bc83d916c4ff662126eaa84a4c1b1b2c43407264
MD5 f55c1f76245a324bed301a482ba0d58f
BLAKE2b-256 fbc8ca5cff5ab22f40a0dc9142ec22927ba1e60be77ee9308b9daf9e7e05aa61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 94.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 49d99dd0ac502b26ca86ea2345b7260dc9c42a369a6d7b1b5f2b37c3e906e7be
MD5 75e4e101bb1ccf7a27714df382f6cc6f
BLAKE2b-256 5bf702cb0e76dd0b64d0bee6bb86fa02340f588d782de1baf3dc148648e8d275

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9e2897c6ed623f748e4116ea822f4ce5d8a3f500e9c510cccec0835b614b179a
MD5 ac5ee563fe53ffb713a72ebd64495326
BLAKE2b-256 ff87a0add3b3cbe6094ea8bdd361e78c778990100ca4ca5a618ae7f160d45987

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 260b780486a315db7799f85a1c0b642de575cf0ed719c9cb9281d86ae1dd5272
MD5 e0a2bd7fdc270678763386a33a956ed3
BLAKE2b-256 57917858ba3978b41df9d2016b7126fbfb879d38ebb6aaf42acaa68e92d41baa

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b8b03040d4f40d972e18184ce894dd5f5af586e0923bff8484cc38b9c24db55
MD5 f161bcce525c4b4a5c8e4dbbf099a97c
BLAKE2b-256 21c2ca7b1efadc4599209a871e012a382a1b169cc8a0288606813f6a12febb12

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 da2c56d0b8ce2934297c3ad7318ef5426cd175fd1dc25c7647f31e88ce7e8a42
MD5 ea4bca01de6a77ba0ec77da4c51894f0
BLAKE2b-256 2cf545e4adce66bd83197899d90e1f2532d5af233e2bc4b478231c14adc8bfd1

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 91.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff1ef0dd93cc611b63416d0086b5fd3dc2a41aeada0da22759ad108f3d6218a8
MD5 b699644e0ab56b510e5fb8f92126c43b
BLAKE2b-256 2445fd47911dd74e04d8619055ba2615a15bdd2953af5096fd69ba21699b1f2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyinstrument-4.1.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 95.6 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d4d0d26b9bb0c025c5001f3e2197c99e1a0fc4c24e874cf6df832f11d22d62c
MD5 44a57de1b21eb19806434938e4414802
BLAKE2b-256 e60adea0b2162d70e8ed9ae6788117f833fc235b985fe5d8fe8ebc8619f4177c

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 94.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d7b40337189ad2e7632ea48d68c4262d1c7eed152a5545d0730b1403432a6466
MD5 c12dfaa69b786299e932ade47ba6adc1
BLAKE2b-256 f424e086f920dfe4687f337f931622e4204caf1c8e1de56266f75f5919a3ac4c

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 93.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a3b053e15a57171108ef58b1849a059329823a1ac3bd7c962fdfadba98ee853e
MD5 0be5c94bcd5ae3f002baf6dae379d89c
BLAKE2b-256 cc9fb6450a52692c80783cf5d287ce08a4b9902af8625890c0a86421a17dde0f

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3423ce4323a41484a1d7025e5fcd961733bf3b0d120111c30a86109845ca8ed3
MD5 a64b63b1c4f0fc4924b159e833562863
BLAKE2b-256 113e759f72d6e3c3b91c0eaa8c216fa46d7eb054095c5ee0968d8afb18857e1c

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa11106a99fbe21b313b9cda97677f5a8c4167f14c4abe68bd9a2a587e8ca4a7
MD5 1ec1b288b89ff4c0f2b66e016922d502
BLAKE2b-256 26b90f99d124256f836f4590ba1073403065da4a195014d06c13fe74f265d5a4

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14c721e0669aa56be3e5fac58409a3f7a7dab099420b351bc2f85568470d1ab1
MD5 d025a962279de577ca2f81a7e42708c4
BLAKE2b-256 e023bc8f75c2362769616861ab674ef64bc8069b812ed99d5b2bcd4a56ef481b

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 90.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae279d7bf941e7ae9a7740326297738944958035ed71a6882106a0396655708a
MD5 0b5ca20db264c8e7989921f3404056f3
BLAKE2b-256 9c9adb67541c61283441105dbf52fca2ed35c74278fb04a5f1b425bffdff4597

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 95.0 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 341c5655217b298c12b0ba2e02056a6dc84567b3329adffcd3f4a26d5b0d66ff
MD5 0a2207bbabb1f7701cb3f8d2ff5d8095
BLAKE2b-256 25c54903a2f997374d97280e461d93bac88656e6bf0196e652559ba247504a10

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 94.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 72e89b20be7803ff056a7a00a6f33124734f3e2c38fe9e098e7ef4a960c9f11c
MD5 a7b860884c469e2207007be66d7a448c
BLAKE2b-256 597ab7e12be5bf0fafa7625c2ddda0a95688e871ab7371447a71813ab38988b3

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 93.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b1916e5b108d5f138f1a56739dc20f830b3efb2038281ad7283cdec19114feae
MD5 98772ccdbb908b1c8aca331cd658b786
BLAKE2b-256 8bc4a886cd0b16f8ea6021ac6b5b16f5d6459063e2a78997327696845b037554

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d165722878dbed3a969452f49868e444f4a9d6e2640210374c619e1b342cc35e
MD5 b05659ef386258bbf8436aac07aca4b2
BLAKE2b-256 64f836c09495d47d378d3de42d532dcbb55b7e0f3e791cc2122bfe0b7b5ac0ae

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4535275947f2d756d75b11af0b20ac0dde46c97a8e44f951d2866af24dca2667
MD5 a771d33f52afa4523b308a12d9bef7f1
BLAKE2b-256 c0458df4719b2f941dad57d0770b071e5fe7b6864568e79ffe1be543bb3de054

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyinstrument-4.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b5855b259d4078ab376021e2f81ccaef8279be4a42c1cae50936000f35828c6
MD5 9814e88dfa0553cf7323af5cea979734
BLAKE2b-256 4cf7240b4de3f9223ea2d8bc2c362e3cbc1f34b08b8a9e15168913c6cfd549c4

See more details on using hashes here.

File details

Details for the file pyinstrument-4.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyinstrument-4.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 90.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for pyinstrument-4.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f727eb157fe7f10c4ee4d94db4aba27c7ac4b1554e68500a36a6a29609132ff4
MD5 6fc932acb637fe6456e56d655b398bd7
BLAKE2b-256 87b2766afe4e8702fcd74d492ef914b20f55089fe16de9aa8f81f20f15c79e72

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