pyinstrument


Namepyinstrument JSON
Version 4.6.2 PyPI version JSON
download
home_pagehttps://github.com/joerick/pyinstrument
SummaryCall stack profiler for Python. Shows you why your code is slow!
upload_time2024-01-26 19:50:52
maintainer
docs_urlNone
authorJoe Rickerby
requires_python>=3.7
license
keywords profiling profile profiler cpu time sampling
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyinstrument
============

[![PyPI version](https://badge.fury.io/py/pyinstrument.svg)](https://badge.fury.io/py/pyinstrument)
[![.github/workflows/test.yml](https://github.com/joerick/pyinstrument/actions/workflows/test.yml/badge.svg)](https://github.com/joerick/pyinstrument/actions/workflows/test.yml)
[![Build wheels](https://github.com/joerick/pyinstrument/actions/workflows/wheels.yml/badge.svg)](https://github.com/joerick/pyinstrument/actions/workflows/wheels.yml)

[Documentation](https://pyinstrument.readthedocs.io/)

<!-- MARK intro start -->

[![Screenshot](docs/img/screenshot.jpg)](https://raw.githubusercontent.com/joerick/pyinstrument/main/docs/img/screenshot.jpg)

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](https://en.wikipedia.org/wiki/Amdahl%27s_law).
Pyinstrument helps you find it!

> ☕️ Not sure where to start? Check out this [video tutorial from calmcode.io](https://calmcode.io/pyinstrument/introduction.html)!

<!-- MARK intro end -->

Installation
------------

<!-- MARK installation start -->

    pip install pyinstrument

Pyinstrument supports Python 3.7+.

<!-- MARK installation end -->

> To run Pyinstrument from a git checkout, there's a build step.
Take a look at [Contributing](#contributing) for more info.

Documentation
-------------

To learn how to use pyinstrument, or to check the reference, head to the
[documentation](https://pyinstrument.readthedocs.io/).

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](https://github.com/joerick/pyinstrument/issues/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](https://github.com/joerick/pyinstrument/issues/109#issuecomment-722276263)

Changelog
---------

### 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](https://pyinstrument.readthedocs.io/en/latest/reference.html#pyinstrument.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`](https://pyinstrument.readthedocs.io/en/latest/reference.html#pyinstrument.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](https://pyinstrument.readthedocs.io/en/latest/guide.html#profile-a-web-request-in-fastapi) 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](https://www.speedscope.app/) 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:

    ```python
    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!

[async profiling documentation]: https://pyinstrument.readthedocs.io/en/latest/how-it-works.html#async-profiling
[Profiler.async_mode]: https://pyinstrument.readthedocs.io/en/latest/reference.html#pyinstrument.Profiler.async_mode
[documentation site]: https://pyinstrument.readthedocs.io

### 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](https://user-images.githubusercontent.com/1244307/50928250-1e50db00-1452-11e9-9164-6050a3c950ed.png) | ![image](https://user-images.githubusercontent.com/1244307/50928326-4c361f80-1452-11e9-91e8-cea735584806.png) |

  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](https://user-images.githubusercontent.com/1244307/50928591-fca42380-1452-11e9-8320-3c851cf5210e.png)

- (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](https://github.com/joerick/pyinstrument/pull/46)
-   [@iddan](https://github.com/iddan) has put together an
    [interactive viewer](https://python-flame-chart.netlify.com/) using the JSON output!

    ![image](https://user-images.githubusercontent.com/1244307/44622790-3ca9a600-a8b8-11e8-8dc2-f33ce433c03d.png)

-   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](https://github.com/joerick/pyinstrument/pull/45#pullrequestreview-143383557)

### v2.0.4

-   Fix crashes due to multi-threaded use of pyinstrument. The fix is in the C extension,
    over at https://github.com/joerick/pyinstrument_cext/pull/3

### 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]

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/joerick/pyinstrument",
    "name": "pyinstrument",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "profiling,profile,profiler,cpu,time,sampling",
    "author": "Joe Rickerby",
    "author_email": "joerick@mac.com",
    "download_url": "https://files.pythonhosted.org/packages/54/b1/3cc18e0b39f3b043c8ceda8c0d52f36fffb8e28e8773ad75cccc4dee0955/pyinstrument-4.6.2.tar.gz",
    "platform": null,
    "description": "pyinstrument\n============\n\n[![PyPI version](https://badge.fury.io/py/pyinstrument.svg)](https://badge.fury.io/py/pyinstrument)\n[![.github/workflows/test.yml](https://github.com/joerick/pyinstrument/actions/workflows/test.yml/badge.svg)](https://github.com/joerick/pyinstrument/actions/workflows/test.yml)\n[![Build wheels](https://github.com/joerick/pyinstrument/actions/workflows/wheels.yml/badge.svg)](https://github.com/joerick/pyinstrument/actions/workflows/wheels.yml)\n\n[Documentation](https://pyinstrument.readthedocs.io/)\n\n<!-- MARK intro start -->\n\n[![Screenshot](docs/img/screenshot.jpg)](https://raw.githubusercontent.com/joerick/pyinstrument/main/docs/img/screenshot.jpg)\n\nPyinstrument is a Python profiler. A profiler is a tool to help you optimize\nyour code - make it faster. To get the biggest speed increase you should\n[focus on the slowest part of your program](https://en.wikipedia.org/wiki/Amdahl%27s_law).\nPyinstrument helps you find it!\n\n> \u2615\ufe0f Not sure where to start? Check out this [video tutorial from calmcode.io](https://calmcode.io/pyinstrument/introduction.html)!\n\n<!-- MARK intro end -->\n\nInstallation\n------------\n\n<!-- MARK installation start -->\n\n    pip install pyinstrument\n\nPyinstrument supports Python 3.7+.\n\n<!-- MARK installation end -->\n\n> To run Pyinstrument from a git checkout, there's a build step.\nTake a look at [Contributing](#contributing) for more info.\n\nDocumentation\n-------------\n\nTo learn how to use pyinstrument, or to check the reference, head to the\n[documentation](https://pyinstrument.readthedocs.io/).\n\nKnown issues\n------------\n\n- Profiling code inside a Docker container can cause some strange results,\n  because the gettimeofday syscall that pyinstrument uses is slow in that\n  environment. See [#83](https://github.com/joerick/pyinstrument/issues/83)\n- When using `pyinstrument script.py` where `script.py` contains a class\n  serialized with `pickle`, you might encounter errors because the\n  serialisation machinery doesn't know where `__main__` is. [See this issue\n  for workarounds](https://github.com/joerick/pyinstrument/issues/109#issuecomment-722276263)\n\nChangelog\n---------\n\n### v4.6.2\n\n_26 January 2024_\n\n-   Fixes a bug with the pstats renderer, where additional frames could be seen in the output. (#287)\n-   Adds `show_all` option to [Profiler.output_html](https://pyinstrument.readthedocs.io/en/latest/reference.html#pyinstrument.Profiler.output_html)\n\n### v4.6.1\n\n_8 November 2023_\n\n-   Fixes a bug with unwanted variable expansion in the IPython magics `%pyinstrument` (#278)\n\n### v4.6.0\n\n_12 October 2023_\n\n-   Adds a feature `-c`, which allows profiling code directly from the command line, like `python -c`. (#271)\n-   Adds a convenience method [`Profiler.write_html`](https://pyinstrument.readthedocs.io/en/latest/reference.html#pyinstrument.Profiler.write_html), for writing HTML output to a file directly. (#266)\n\n### v4.5.3\n\n_7 September 2023_\n\n-   Fix a problem in the packaging process that prevented upload to PyPI\n\n### v4.5.2\n\n_1 September 2023_\n\n-   Show the program name in the header of the HTML output (#260)\n-   Improve program name capture through resilience to other programs modifying sys.argv (#258)\n-   Add support for Python 3.12 (#246)\n\n### v4.5.1\n\n_22 July 2023_\n\n-   Fix a bug that caused `[X frames hidden]` in the output when frames were deleted due to `__tracebackhide__` (#255)\n-   Fix a bug causing built-in code to display the filepath `None` in the console output (#254)\n-   Some docs improvements (#251)\n\n### v4.5.0\n\n_5 June 2023_\n\n-   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)\n-   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)\n-   Fixes a detail of the `--show-all` option - pyinstrument will no longer remove Python-internal frames when this option is supplied. (#239)\n-   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)\n\n### v4.4.0\n\n_5 November 2022_\n\n-   Adds the class name to methods in the console & HTML outputs (#203)\n-   Fix a bug that caused pyinstrument machinery to appear at the start of a profile (#215)\n-   Frames that set a `__traceback_hide__` local variable will now be removed from the output (#217)\n-   Jupyter/IPython magic now supports async/await, if you run with a `--async_mode=enabled` flag. (#212)\n-   Fix a crash when more than one root frame is captured in a thread - this can happen with gevent.\n-   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!\n\n### v4.3.0\n\n_21 August 2022_\n\n-   Adds buttons in the HTML output to switch between absolute and\n    proportional (percentage) time.\n-   Adds a command line flag `--interval` (seconds, default 0.001) to change the interval that\n    pyinstrument samples a program. This is useful for long-running programs,\n    where increasing the interval reduces the memory overhead.\n-   Includes wheels for CPython 3.11.\n\n### v4.2.0\n\n-   Adds a command-line option `-p` `--render-option` that allows arbitrary\n    setting of render options. This lets you set options like\n    `filter_threshold` from the command line, by doing something like\n    `pyinstrument -p processor_options.filter_threshold=0`.\n\n    Here's the help output for the option:\n    ```\n      -p RENDER_OPTION, --render-option=RENDER_OPTION\n                        options to pass to the renderer, in the format\n                        'flag_name' or 'option_name=option_value'. For\n                        example, to set the option 'time', pass '-p\n                        time=percent_of_total'. To pass multiple options, use\n                        the -p option multiple times. You can set processor\n                        options using dot-syntax, like '-p\n                        processor_options.filter_threshold=0'. option_value is\n                        parsed as a JSON value or a string.\n    ```\n-   Adds the ability to view times in the console output as percentages,\n    rather than absolute times. Use the ConsoleRenderer option\n    `time='percent_of_total'`, or on the command line, use `-p`, like\n    `pyinstrument -p time=percent_of_total`.\n-   Adds command line options for loading and saving pyinstrument sessions.\n    You can save the raw data for a pyinstrument session with `-r session`,\n    like `pyinstrument -r session -o session.pyisession myscript.py`. Loading\n    is via `--load`, e.g. `pyinstrument --load session.pyisession`.\n-   Command line output format is inferred from the `-o` output file\n    extension. So if you do `pyinstrument -o profile.html myscript.py`, you\n    don't need to supply `-r html`, pyinstrument will automatically use the\n    HTML renderer. Or if you do\n    `pyinstrument -o profile.pyisession myscript.py`, it will save a raw\n    session object.\n-   Adds [usage examples for FastAPI and pytest](https://pyinstrument.readthedocs.io/en/latest/guide.html#profile-a-web-request-in-fastapi) to the documentation.\n-   Fixes a bug causing NotImplementedError when using `async_mode=strict`.\n-   Adds support for Python 3.11\n\n### v4.1.1\n\n-   Fixed an issue causing PYINSTRUMENT_PROFILE_DIR_RENDERER to output the\n    wrong file extension when used with the speedscope renderer.\n\n### v4.1.0\n\n-   You can now use pyinstrument natively in an IPython notebook! Just use\n    `%load_ext pyinstrument` at the top of your notebook, and then\n    `%%pyinstrument` in the cell you want to profile.\n-   Added support for the [speedscope](https://www.speedscope.app/) format.\n    This provides a way to view interactive flamecharts using pyinstrument. To\n    use, profile with `pyinstrument -r speedscope`, and upload to the\n    speedscope web app.\n-   You can now configure renderers for the Django middleware file output,\n    using the `PYINSTRUMENT_PROFILE_DIR_RENDERER` option.\n-   Added wheels for Linux aarch64 (64-bit ARM).\n\n### v4.0.4\n\n-   Fix a packaging issue where a package called 'test' was installed\n    alongside pyinstrument\n-   Use more modern C APIs to resolve deprecation warnings on Python 3.10.\n-   Minor docs fixes\n\n### v4.0.3\n\n-   CPython 3.10 support\n-   Improve error messages when trying to use Profiler from multiple threads\n-   Fix crash when rendering sessions that contain a module in a FrameGroup\n\n### v4.0.2\n\n-   Fix some packaging issues\n\n### v4.0.0\n\n-   Async support! Pyinstrument now detects when an async task hits an await,\n    and tracks time spent outside of the async context under this await.\n\n    So, for example, here's a simple script with an async task that does a\n    sleep:\n\n    ```python\n    import asyncio\n    from pyinstrument import Profiler\n\n    async def main():\n        p = Profiler(async_mode='disabled')\n\n        with p:\n            print('Hello ...')\n            await asyncio.sleep(1)\n            print('... World!')\n\n        p.print()\n\n    asyncio.run(main())\n    ```\n\n    Before Pyinstrument 4.0.0, we'd see only time spent in the run loop, like\n    this:\n\n    ```\n      _     ._   __/__   _ _  _  _ _/_   Recorded: 18:33:03  Samples:  2\n     /_//_/// /_\\ / //_// / //_'/ //     Duration: 1.006     CPU time: 0.001\n    /   _/                      v3.4.2\n\n    Program: examples/async_example_simple.py\n\n    1.006 _run_once  asyncio/base_events.py:1784\n    \u2514\u2500 1.005 select  selectors.py:553\n          [3 frames hidden]  selectors, <built-in>\n             1.005 kqueue.control  <built-in>:0\n    ```\n\n    Now, with pyinstrument 4.0.0, we get:\n\n          _     ._   __/__   _ _  _  _ _/_   Recorded: 18:30:43  Samples:  2\n         /_//_/// /_\\ / //_// / //_'/ //     Duration: 1.007     CPU time: 0.001\n        /   _/                      v4.0.0\n\n        Program: examples/async_example_simple.py\n\n        1.006 main  async_example_simple.py:4\n        \u2514\u2500 1.005 sleep  asyncio/tasks.py:641\n              [2 frames hidden]  asyncio\n                 1.005 [await]\n\n    For more information, check out the [async profiling documentation] and\n    the [Profiler.async_mode] property.\n\n-   Pyinstrument has a [documentation site], including full Python API docs!\n\n[async profiling documentation]: https://pyinstrument.readthedocs.io/en/latest/how-it-works.html#async-profiling\n[Profiler.async_mode]: https://pyinstrument.readthedocs.io/en/latest/reference.html#pyinstrument.Profiler.async_mode\n[documentation site]: https://pyinstrument.readthedocs.io\n\n### v3.4.2\n\n- Fix a bug that caused `--show`, `--show-regex`, `--show-all` to be ignored\n  on the command line.\n\n### v3.4.1\n\n- Under-the-hood modernisation\n\n### v3.4.0\n\n- Added `timeline` option (boolean) to Profiler methods `output_html()` and\n  `open_in_browser()`.\n\n### v3.3.0\n\n- Fixed issue with `pyinstrument -m module`, where pyinstrument wouldn't find\n  modules in the current directory.\n- Dropped support for Python 2.7 and 3.5. Old versions will remain available\n  on PyPI, and pip should choose the correct one automatically.\n\n### v3.2.0\n\n- Added the ability to track time in C functions. Minor note - Pyinstrument\n  will record time spent C functions as 'leaf' functions, due to a limitation\n  in how Python records frames. `Python -> C -> Python` is recorded as\n  `Python -> Python`, but `Python -> Python -> C` will be attributed correctly.\n  (#103)\n\n### v3.1.2\n\n- Fix `<__array_function__ internals>` frames appearing as app code in reports\n\n### v3.1.1\n\n- Added support for timeline mode on HTML and JSON renderers\n- Released as a tarball as well as a universal wheel\n\n### v3.1.0\n\n- Added PYINSTRUMENT_SHOW_CALLBACK option on the Django middleware to\n  add a condition to showing the profile (could be used to run pyinstrument\n  on a live server!)\n- Fixed bug in the Django middleware where file would not be written because\n  of a unicode error\n\n### v3.0.3\n\n- Fixed bug with the Django middleware on Windows where profiling would fail\n  because we were trying to put an illegal character '?' in the profile path.\n  (#66)\n\n### v3.0.2\n\n- Add `--show` and `--show-regex` options, to mark certain files to be\n  displayed. This helps to profile inside specific modules, while hiding\n  others. For example, `pyinstrument --show '*/sympy/*' script.py`.\n\n### v3.0.1\n\n- Fix #60: pass all arguments after -m module_name to the called module\n- Fix crash during HTML/JSON output when no frames were captured.\n\n### v3.0.0\n\n- 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.\n\n    | Before | After |\n    | --- | ---\n    | ![image](https://user-images.githubusercontent.com/1244307/50928250-1e50db00-1452-11e9-9164-6050a3c950ed.png) | ![image](https://user-images.githubusercontent.com/1244307/50928326-4c361f80-1452-11e9-91e8-cea735584806.png) |\n\n  To go back to the old behaviour, use `--show-all` on the command line.\n\n- 'Entry' frames of hidden groups are shown, so you know which call is the problem\n- Really slow frames in the groups are shown too, e.g. the 'read' call on the socket\n- Application code is highlighted in the console\n- Additional metrics are shown at the top of the trace - timestamp, number of samples, duration, CPU time\n- Hidden code is controlled by the `--hide` or `--hide-regex` options - matching on the path of the code files.\n  ```\n    --hide=EXPR           glob-style pattern matching the file paths whose\n                          frames to hide. Defaults to '*/lib/*'.\n    --hide-regex=REGEX    regex matching the file paths whose frames to hide.\n                          Useful if --hide doesn't give enough control.\n  ```\n\n- Outputting a timeline is supported from the command line.\n\n  ```\n    -t, --timeline        render as a timeline - preserve ordering and don't\n                          condense repeated calls\n  ```\n\n- Because there are a few rendering options now, you can load a previous profiling session using `--load-prev` - pyinstrument keeps the last 10 sessions.\n\n- Hidden groups can also call back into application code, that looks like this:\n\n    ![image](https://user-images.githubusercontent.com/1244307/50928591-fca42380-1452-11e9-8320-3c851cf5210e.png)\n\n- (internal) When recording timelines, frame trees are completely linear now, allowing\n  for the creation of super-accurate frame charts.\n\n- (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.\n\n- (internal) A lot of unit and integration tests added!\n\nYikes! See #49 for the gory details. I hope you like it.\n\n### v2.3.0\n\n-   Big refactor!\n    -   `Recorders` have been removed. The frame recording is now internal to the `Profiler` object.\n        This means the 'frame' objects are more general-purpose, which paves the way for...\n    -   Processors! These are functions that mutate the tree to sculpt the output.\n        They are used by the renderers to filter the output to the correct form. Now, instead of\n        a time-aggregating recorder, the profiler just uses timeline-style recording (this is\n        lower-overhead anyway) and the aggregation is done as a processing step.\n    -   The upshot of this is that it's now way easier to alter the tree to filter stuff out, and\n        do more advanced things like combining frames that we don't care about. More features to\n        come that use this in v3.0!\n-   Importlib frames are removed - you won't see them at all. Their children are retained, so\n    imports are just transparent.\n-   Django profile file name is now limited to a hundred of characters (#50)\n-   Fix bug with --html option (#53)\n-   Add `--version` command line option\n\n### v2.2.1\n\n-   Fix crash when using on the command line.\n\n### v2.2.0\n\n-   Added support for JSON output. Use `pyinstrument --renderer=json scriptfile.py`.\n    [PR](https://github.com/joerick/pyinstrument/pull/46)\n-   [@iddan](https://github.com/iddan) has put together an\n    [interactive viewer](https://python-flame-chart.netlify.com/) using the JSON output!\n\n    ![image](https://user-images.githubusercontent.com/1244307/44622790-3ca9a600-a8b8-11e8-8dc2-f33ce433c03d.png)\n\n-   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.\n\n### v2.1.0\n\n-   Added support for running modules with pyinstrument via the command line. The new syntax\n    is the `-m` flag e.g. `pyinstrument -m module_name`! [PR](https://github.com/joerick/pyinstrument/pull/45#pullrequestreview-143383557)\n\n### v2.0.4\n\n-   Fix crashes due to multi-threaded use of pyinstrument. The fix is in the C extension,\n    over at https://github.com/joerick/pyinstrument_cext/pull/3\n\n### v2.0.3\n\n-   Pyinstrument can now be used in a `with` block.\n\n    For example:\n\n\t\tprofiler = pyinstrument.Profiler()\n\t\twith profiler:\n\t\t    # do some work here...\n\t\tprint(profiler.output_text())\n-   Middleware fix for older versions of Django\n\n### v2.0.2\n\n-   Fix for max recursion error when used to profile programs with a lot of frames on the stack.\n\n### v2.0.1\n\n-   Ensure license is included in the sdist.\n\n### v2.0.0\n\n-   **Pyinstrument uses a new profiling mode**. Rather than using\n    signals, pyintrument uses a new statistical profiler built on\n    PyEval_SetProfile. This means no more main thread restriction, no more\n    IO errors when using Pyinstrument, and no need for a separate more\n    'setprofile' mode!\n\n-   **Renderers**. Users can customize Pyinstrument to use alternative renderers\n    with the `renderer` argument on `Profiler.output()`, or using the `--renderer`\n    argument on the command line.\n\n-   **Recorders**. To support other use cases of Pyinstrument (e.g. flame charts),\n    pyinstrument now has a 'timeline' recorder mode. This mode records captured\n    frames in a linear way, so the program execution can be viewed on a\n    timeline.\n\n### v0.13\n\n-   `pyinstrument` command. You can now profile python scripts from the shell\n    by running `$ pyinstrument script.py`. This is now equivalent to\n    `python -m pyinstrument`. Thanks @asmeurer!\n\n### v0.12\n\n-   Application code is highlighted in HTML traces to make it easier to spot\n\n-   Added `PYINSTRUMENT_PROFILE_DIR` option to the Django interface, which\n    will log profiles of all requests to a file the specified folder. Useful\n    for profiling API calls.\n\n-   Added `PYINSTRUMENT_USE_SIGNAL` option to the Django interface, for use\n    when signal mode presents problems.\n\nContributing\n------------\n\nTo setup a dev environment:\n\n    virtualenv --python=python3 env\n    . env/bin/activate\n    pip install --upgrade pip\n    pip install -r requirements-dev.txt\n    pre-commit install --install-hooks\n\nTo get some sample output:\n\n    pyinstrument examples/wikipedia_article_word_count.py\n\nTo run the tests:\n\n    pytest\n\nTo run linting checks locally:\n\n    pre-commit run --all-files\n\nSome of the pre-commit checks, like `isort` or `black`, will auto-fix\nthe problems they find. So if the above command returns an error, try\nrunning it again, it might succeed the second time :)\n\nRunning all the checks can be slow, so you can also run checks\nindividually, e.g., to format source code that fails `isort` or `black`\nchecks:\n\n    pre-commit run --all-files isort\n    pre-commit run --all-files black\n\nTo diagnose why `pyright` checks are failing:\n\n    pre-commit run --all-files pyright\n\n### The HTML renderer Vue.js app\n\nThe HTML renderer works by embedding a JSON representation of the sample with\na Javascript 'bundle' inside an HTML file that can be viewed in any web\nbrowser.\n\nTo edit the html renderer style, do:\n\n    cd html_renderer\n    npm ci\n    npm run serve\n\nWhen launched without a top-level `window.profileSession` object, it will\nfetch a sample profile so you can work with it.\n\nTo compile the JS app and bundle it back into the pyinstrument python tool:\n\n    bin/build_js_bundle.py [--force]\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Call stack profiler for Python. Shows you why your code is slow!",
    "version": "4.6.2",
    "project_urls": {
        "Homepage": "https://github.com/joerick/pyinstrument"
    },
    "split_keywords": [
        "profiling",
        "profile",
        "profiler",
        "cpu",
        "time",
        "sampling"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "709e87bea84420e87d7b0de9ceb6095844614b66943f91a716a2027a3dcd8367",
                "md5": "ba3bc03fc3a0cf99b849f709afc113f8",
                "sha256": "7a1b1cd768ea7ea9ab6f5490f7e74431321bcc463e9441dbc2f769617252d9e2"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ba3bc03fc3a0cf99b849f709afc113f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 92612,
            "upload_time": "2024-01-26T19:49:25",
            "upload_time_iso_8601": "2024-01-26T19:49:25.942668Z",
            "url": "https://files.pythonhosted.org/packages/70/9e/87bea84420e87d7b0de9ceb6095844614b66943f91a716a2027a3dcd8367/pyinstrument-4.6.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a14bb79f0c2ad417ddd3eb0366e0ac91b5de14463508ad1e903583129c1e9efb",
                "md5": "5026dfc8c41980d4525fcfaf9a37705a",
                "sha256": "8a386b9d09d167451fb2111eaf86aabf6e094fed42c15f62ec51d6980bce7d96"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5026dfc8c41980d4525fcfaf9a37705a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 86866,
            "upload_time": "2024-01-26T19:49:28",
            "upload_time_iso_8601": "2024-01-26T19:49:28.240841Z",
            "url": "https://files.pythonhosted.org/packages/a1/4b/b79f0c2ad417ddd3eb0366e0ac91b5de14463508ad1e903583129c1e9efb/pyinstrument-4.6.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab58d1922f2110f78a18eb84933e804205630130f117f29cdc27b02f2eb96a8",
                "md5": "680a1b9d274b77ccf84791a49c39e011",
                "sha256": "23c3e3ca8553b9aac09bd978c73d21b9032c707ac6d803bae6a20ecc048df4a8"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "680a1b9d274b77ccf84791a49c39e011",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 106950,
            "upload_time": "2024-01-26T19:49:29",
            "upload_time_iso_8601": "2024-01-26T19:49:29.384754Z",
            "url": "https://files.pythonhosted.org/packages/ea/b5/8d1922f2110f78a18eb84933e804205630130f117f29cdc27b02f2eb96a8/pyinstrument-4.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12d47dbd0cde0c4b7eee37486a7f90c516d16b03e9df216da57814a7f54a6fd6",
                "md5": "b1e2c893b7cf20c6ce2f9f926eb529ab",
                "sha256": "5f329f5534ca069420246f5ce57270d975229bcb92a3a3fd6b2ca086527d9764"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b1e2c893b7cf20c6ce2f9f926eb529ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 105911,
            "upload_time": "2024-01-26T19:49:31",
            "upload_time_iso_8601": "2024-01-26T19:49:31.443934Z",
            "url": "https://files.pythonhosted.org/packages/12/d4/7dbd0cde0c4b7eee37486a7f90c516d16b03e9df216da57814a7f54a6fd6/pyinstrument-4.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bb2191b3590874b59055d7481500558b16a4828ab463a479d6c49db633abe82",
                "md5": "372ecfafdffd97cc0586b1af0259b97a",
                "sha256": "d4dcdcc7ba224a0c5edfbd00b0f530f5aed2b26da5aaa2f9af5519d4aa8c7e41"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "372ecfafdffd97cc0586b1af0259b97a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 106867,
            "upload_time": "2024-01-26T19:49:33",
            "upload_time_iso_8601": "2024-01-26T19:49:33.115740Z",
            "url": "https://files.pythonhosted.org/packages/5b/b2/191b3590874b59055d7481500558b16a4828ab463a479d6c49db633abe82/pyinstrument-4.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "413a50362f2cbfeeec3bf954fdf3964d4bc664cfe5acf668e2b4993c05442b8c",
                "md5": "8e763f52a6e2a03a58e76f4bae33b14c",
                "sha256": "73db0c2c99119c65b075feee76e903b4ed82e59440fe8b5724acf5c7cb24721f"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e763f52a6e2a03a58e76f4bae33b14c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 109916,
            "upload_time": "2024-01-26T19:49:34",
            "upload_time_iso_8601": "2024-01-26T19:49:34.294083Z",
            "url": "https://files.pythonhosted.org/packages/41/3a/50362f2cbfeeec3bf954fdf3964d4bc664cfe5acf668e2b4993c05442b8c/pyinstrument-4.6.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6340f75f49d4c13b52089fde6d2c43eef76513a3849c7ad12ad279e639e5413a",
                "md5": "e36681020e8c057a483bcfee32cde535",
                "sha256": "da58f265326f3cf3975366ccb8b39014f1e69ff8327958a089858d71c633d654"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e36681020e8c057a483bcfee32cde535",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 109402,
            "upload_time": "2024-01-26T19:49:36",
            "upload_time_iso_8601": "2024-01-26T19:49:36.194973Z",
            "url": "https://files.pythonhosted.org/packages/63/40/f75f49d4c13b52089fde6d2c43eef76513a3849c7ad12ad279e639e5413a/pyinstrument-4.6.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31fbbbe9c5fd0b5548c8b5aae88b2d05a1d91f8115d9cd02388fd2197e284e64",
                "md5": "4614a5641de8db3b479f9da08c9c3352",
                "sha256": "feebcf860f955401df30d029ec8de7a0c5515d24ea809736430fd1219686fe14"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4614a5641de8db3b479f9da08c9c3352",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 110193,
            "upload_time": "2024-01-26T19:49:37",
            "upload_time_iso_8601": "2024-01-26T19:49:37.923924Z",
            "url": "https://files.pythonhosted.org/packages/31/fb/bbe9c5fd0b5548c8b5aae88b2d05a1d91f8115d9cd02388fd2197e284e64/pyinstrument-4.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78e2f3310f008aa294231bfa4e735678ba3a0804999d3da607a96d5cd6b3f49d",
                "md5": "23dc5688fd3d73c8c3a1c276aed0834d",
                "sha256": "b2b66ff0b16c8ecf1ec22de001cfff46872b2c163c62429055105564eef50b2e"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "23dc5688fd3d73c8c3a1c276aed0834d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 89291,
            "upload_time": "2024-01-26T19:49:39",
            "upload_time_iso_8601": "2024-01-26T19:49:39.153041Z",
            "url": "https://files.pythonhosted.org/packages/78/e2/f3310f008aa294231bfa4e735678ba3a0804999d3da607a96d5cd6b3f49d/pyinstrument-4.6.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6442bf8b69efd07fade8d79ace764e19d3a38b5880fc3dd8dbf9c007c55095e",
                "md5": "5c73acc9602acdbfc42bfcc0c001f468",
                "sha256": "8d104b7a7899d5fa4c5bf1ceb0c1a070615a72c5dc17bc321b612467ad5c5d88"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c73acc9602acdbfc42bfcc0c001f468",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 90055,
            "upload_time": "2024-01-26T19:49:40",
            "upload_time_iso_8601": "2024-01-26T19:49:40.839318Z",
            "url": "https://files.pythonhosted.org/packages/c6/44/2bf8b69efd07fade8d79ace764e19d3a38b5880fc3dd8dbf9c007c55095e/pyinstrument-4.6.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2be269cebd674cc61733141b51d97afe7c7dc90a37bbf2b7ea632bb4a500e888",
                "md5": "89cec10965c030b0cc7c9da800af68e7",
                "sha256": "62f6014d2b928b181a52483e7c7b82f2c27e22c577417d1681153e5518f03317"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "89cec10965c030b0cc7c9da800af68e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 92159,
            "upload_time": "2024-01-26T19:49:41",
            "upload_time_iso_8601": "2024-01-26T19:49:41.904517Z",
            "url": "https://files.pythonhosted.org/packages/2b/e2/69cebd674cc61733141b51d97afe7c7dc90a37bbf2b7ea632bb4a500e888/pyinstrument-4.6.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "887081931097221146d909b0dd8997af59825fb29bff8a0de17bc2e60b0b1322",
                "md5": "659730439f1210048dae49998eb26c13",
                "sha256": "dcb5c8d763c5df55131670ba2a01a8aebd0d490a789904a55eb6a8b8d497f110"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "659730439f1210048dae49998eb26c13",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 86613,
            "upload_time": "2024-01-26T19:49:43",
            "upload_time_iso_8601": "2024-01-26T19:49:43.677072Z",
            "url": "https://files.pythonhosted.org/packages/88/70/81931097221146d909b0dd8997af59825fb29bff8a0de17bc2e60b0b1322/pyinstrument-4.6.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55c1c67c96c8b9838c2720e36ddabeaf89e04de602571dd85c8bcab93bbd8067",
                "md5": "698143480a4df81395079bc64097c9b5",
                "sha256": "6ed4e8c6c84e0e6429ba7008a66e435ede2d8cb027794c20923c55669d9c5633"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "698143480a4df81395079bc64097c9b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 105256,
            "upload_time": "2024-01-26T19:49:44",
            "upload_time_iso_8601": "2024-01-26T19:49:44.750716Z",
            "url": "https://files.pythonhosted.org/packages/55/c1/c67c96c8b9838c2720e36ddabeaf89e04de602571dd85c8bcab93bbd8067/pyinstrument-4.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a544a15a267fa9bec6c775de6be8f6285e80f503515ab4a6a00ccc186be7fc0f",
                "md5": "a2518c6aae805b1e5d8bdaa67c3fffb3",
                "sha256": "6c0f0e1d8f8c70faa90ff57f78ac0dda774b52ea0bfb2d9f0f41ce6f3e7c869e"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a2518c6aae805b1e5d8bdaa67c3fffb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 103928,
            "upload_time": "2024-01-26T19:49:46",
            "upload_time_iso_8601": "2024-01-26T19:49:46.736749Z",
            "url": "https://files.pythonhosted.org/packages/a5/44/a15a267fa9bec6c775de6be8f6285e80f503515ab4a6a00ccc186be7fc0f/pyinstrument-4.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faf1a5834ab1e8fce5b293d9f8603491513488acbc15e008b61339afdf83169e",
                "md5": "a2f24503dc6ec576557f699e07aeb925",
                "sha256": "8b3c44cb037ad0d6e9d9a48c14d856254ada641fbd0ae9de40da045fc2226a2a"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2f24503dc6ec576557f699e07aeb925",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 104871,
            "upload_time": "2024-01-26T19:49:48",
            "upload_time_iso_8601": "2024-01-26T19:49:48.430933Z",
            "url": "https://files.pythonhosted.org/packages/fa/f1/a5834ab1e8fce5b293d9f8603491513488acbc15e008b61339afdf83169e/pyinstrument-4.6.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f146085a27fbe5c7c943c52b941dd15da951877dff3354d6a01275893d9566ba",
                "md5": "3f361b191f79fb083d4067aa4a91c328",
                "sha256": "be9901f17ac2f527c352f2fdca3d717c1d7f2ce8a70bad5a490fc8cc5d2a6007"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f361b191f79fb083d4067aa4a91c328",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 109183,
            "upload_time": "2024-01-26T19:49:49",
            "upload_time_iso_8601": "2024-01-26T19:49:49.982922Z",
            "url": "https://files.pythonhosted.org/packages/f1/46/085a27fbe5c7c943c52b941dd15da951877dff3354d6a01275893d9566ba/pyinstrument-4.6.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc480d836ced594b9b7215a75be5c8c3c6395a63647bb6ab41fcf86b8288a047",
                "md5": "b221d7e611287b62fa9b70ce02efeb15",
                "sha256": "8a9791bf8916c1cf439c202fded32de93354b0f57328f303d71950b0027c7811"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b221d7e611287b62fa9b70ce02efeb15",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 108916,
            "upload_time": "2024-01-26T19:49:51",
            "upload_time_iso_8601": "2024-01-26T19:49:51.130649Z",
            "url": "https://files.pythonhosted.org/packages/cc/48/0d836ced594b9b7215a75be5c8c3c6395a63647bb6ab41fcf86b8288a047/pyinstrument-4.6.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d6d1200f09197410bb48f68eef330618da21c6a870dd087d25b7d2e46528901",
                "md5": "2279057b5773626a3d90ec02a4466b7b",
                "sha256": "d6162615e783c59e36f2d7caf903a7e3ecb6b32d4a4ae8907f2760b2ef395bf6"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2279057b5773626a3d90ec02a4466b7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 109237,
            "upload_time": "2024-01-26T19:49:52",
            "upload_time_iso_8601": "2024-01-26T19:49:52.625240Z",
            "url": "https://files.pythonhosted.org/packages/5d/6d/1200f09197410bb48f68eef330618da21c6a870dd087d25b7d2e46528901/pyinstrument-4.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2de150f200fa4de18da60885161a7a79cfbdd43ea41685223a4f7cffb9751228",
                "md5": "ca6b3a5fd7d2c3e04e796a1f64b2a916",
                "sha256": "28af084aa84bbfd3620ebe71d5f9a0deca4451267f363738ca824f733de55056"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "ca6b3a5fd7d2c3e04e796a1f64b2a916",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 89251,
            "upload_time": "2024-01-26T19:49:54",
            "upload_time_iso_8601": "2024-01-26T19:49:54.411949Z",
            "url": "https://files.pythonhosted.org/packages/2d/e1/50f200fa4de18da60885161a7a79cfbdd43ea41685223a4f7cffb9751228/pyinstrument-4.6.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40924224f99c3a6c679f32a725fc168de6846d9dd533f1a112f75fc1412c64fa",
                "md5": "3f582bb3799fe761e40d7a66f6212865",
                "sha256": "dd6007d3c2e318e09e582435dd8d111cccf30d342af66886b783208813caf3d7"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f582bb3799fe761e40d7a66f6212865",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 89887,
            "upload_time": "2024-01-26T19:49:56",
            "upload_time_iso_8601": "2024-01-26T19:49:56.119129Z",
            "url": "https://files.pythonhosted.org/packages/40/92/4224f99c3a6c679f32a725fc168de6846d9dd533f1a112f75fc1412c64fa/pyinstrument-4.6.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be8f754e1adf12ed6b15faed59fc8b5b16585d567124c48c0edca4bb15ad8aa2",
                "md5": "784e3a5c8ed6d2c50c99b4e7a4f60886",
                "sha256": "e3813c8ecfab9d7d855c5f0f71f11793cf1507f40401aa33575c7fd613577c23"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "784e3a5c8ed6d2c50c99b4e7a4f60886",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 92214,
            "upload_time": "2024-01-26T19:49:57",
            "upload_time_iso_8601": "2024-01-26T19:49:57.142984Z",
            "url": "https://files.pythonhosted.org/packages/be/8f/754e1adf12ed6b15faed59fc8b5b16585d567124c48c0edca4bb15ad8aa2/pyinstrument-4.6.2-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f720805444a829d26989d5dd9cd3c4ee998e045359e70a293d1d73b176d249e6",
                "md5": "7a56ca71b8cf11fa067a1d3a3107a414",
                "sha256": "6c761372945e60fc1396b7a49f30592e8474e70a558f1a87346d27c8c4ce50f7"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a56ca71b8cf11fa067a1d3a3107a414",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 86662,
            "upload_time": "2024-01-26T19:49:58",
            "upload_time_iso_8601": "2024-01-26T19:49:58.834659Z",
            "url": "https://files.pythonhosted.org/packages/f7/20/805444a829d26989d5dd9cd3c4ee998e045359e70a293d1d73b176d249e6/pyinstrument-4.6.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96e8ac7347405255a82e38bdff4630ca716604f17d2067dd11798a2d647ae8ef",
                "md5": "73b3a01da1ab447074a846d5d098fc92",
                "sha256": "4fba3244e94c117bf4d9b30b8852bbdcd510e7329fdd5c7c8b3799e00a9215a8"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73b3a01da1ab447074a846d5d098fc92",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 106699,
            "upload_time": "2024-01-26T19:50:00",
            "upload_time_iso_8601": "2024-01-26T19:50:00.059691Z",
            "url": "https://files.pythonhosted.org/packages/96/e8/ac7347405255a82e38bdff4630ca716604f17d2067dd11798a2d647ae8ef/pyinstrument-4.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0da2bbf5f4daf05a05be3e842018392bfa6765623da0d0b01eb0964845b82a8f",
                "md5": "01a5078aeaa4c3555a8a9edb0ef1bfee",
                "sha256": "803ac64e526473d64283f504df3b0d5c2c203ea9603cab428641538ffdc753a7"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01a5078aeaa4c3555a8a9edb0ef1bfee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 105475,
            "upload_time": "2024-01-26T19:50:01",
            "upload_time_iso_8601": "2024-01-26T19:50:01.638781Z",
            "url": "https://files.pythonhosted.org/packages/0d/a2/bbf5f4daf05a05be3e842018392bfa6765623da0d0b01eb0964845b82a8f/pyinstrument-4.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f0f1e4dde4e90d7fae7f534af4f1edeffc77384d751a1bceeae9eed9df6abcd",
                "md5": "075c018eb47016f57327fdeb3b550c7c",
                "sha256": "e2e554b1bb0df78f5ce8a92df75b664912ca93aa94208386102af454ec31b647"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "075c018eb47016f57327fdeb3b550c7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 106539,
            "upload_time": "2024-01-26T19:50:03",
            "upload_time_iso_8601": "2024-01-26T19:50:03.267933Z",
            "url": "https://files.pythonhosted.org/packages/6f/0f/1e4dde4e90d7fae7f534af4f1edeffc77384d751a1bceeae9eed9df6abcd/pyinstrument-4.6.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad882145abe2e7fed97606ae4457326967263df6bde9dad704cadea676119308",
                "md5": "435ea3a9f52f91bd92c85703a0f52495",
                "sha256": "7c671057fad22ee3ded897a6a361204ea2538e44c1233cad0e8e30f6d27f33db"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "435ea3a9f52f91bd92c85703a0f52495",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 110556,
            "upload_time": "2024-01-26T19:50:04",
            "upload_time_iso_8601": "2024-01-26T19:50:04.613453Z",
            "url": "https://files.pythonhosted.org/packages/ad/88/2145abe2e7fed97606ae4457326967263df6bde9dad704cadea676119308/pyinstrument-4.6.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86bd5a7dec5851572a7957fb56d1670e536333e62073a11869107f0ae9c6e851",
                "md5": "15c818c7ce549f28394545e722d31799",
                "sha256": "d02f31fa13a9e8dc702a113878419deba859563a32474c9f68e04619d43d6f01"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "15c818c7ce549f28394545e722d31799",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 110027,
            "upload_time": "2024-01-26T19:50:05",
            "upload_time_iso_8601": "2024-01-26T19:50:05.865171Z",
            "url": "https://files.pythonhosted.org/packages/86/bd/5a7dec5851572a7957fb56d1670e536333e62073a11869107f0ae9c6e851/pyinstrument-4.6.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f142ec080ada421502f31c934852ad8758f97f72777df6dedac0d51f733b4d64",
                "md5": "2aa90aa96eeb626a7e56459183b0807d",
                "sha256": "b55983a884f083f93f0fc6d12ff8df0acd1e2fb0580d2f4c7bfe6def33a84b58"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2aa90aa96eeb626a7e56459183b0807d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 110916,
            "upload_time": "2024-01-26T19:50:07",
            "upload_time_iso_8601": "2024-01-26T19:50:07.641265Z",
            "url": "https://files.pythonhosted.org/packages/f1/42/ec080ada421502f31c934852ad8758f97f72777df6dedac0d51f733b4d64/pyinstrument-4.6.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdc53733a7402e1153ae93db483a57f938d80f7c1bae714f46b6188592b3835c",
                "md5": "92d009fc7369b2433a463a8226672658",
                "sha256": "fdc0a53b27e5d8e47147489c7dab596ddd1756b1e053217ef5bc6718567099ff"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "92d009fc7369b2433a463a8226672658",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 89364,
            "upload_time": "2024-01-26T19:50:09",
            "upload_time_iso_8601": "2024-01-26T19:50:09.422143Z",
            "url": "https://files.pythonhosted.org/packages/cd/c5/3733a7402e1153ae93db483a57f938d80f7c1bae714f46b6188592b3835c/pyinstrument-4.6.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecd8d056ef645c0ab0799cf0f8db5ebc36f616499572147638245f891e56fdc1",
                "md5": "a479423c9bf00e9eb9f1ceac2f9a9923",
                "sha256": "dd5c53a0159126b5ce7cbc4994433c9c671e057c85297ff32645166a06ad2c50"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a479423c9bf00e9eb9f1ceac2f9a9923",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 89938,
            "upload_time": "2024-01-26T19:50:10",
            "upload_time_iso_8601": "2024-01-26T19:50:10.767819Z",
            "url": "https://files.pythonhosted.org/packages/ec/d8/d056ef645c0ab0799cf0f8db5ebc36f616499572147638245f891e56fdc1/pyinstrument-4.6.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28d74fa9149452a5e4b4cb563a731b582dd619ee64417eb2c940182cc60be5a9",
                "md5": "d9db38a85b2bec565abb3293662ffa2d",
                "sha256": "b082df0bbf71251a7f4880a12ed28421dba84ea7110bb376e0533067a4eaff40"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9db38a85b2bec565abb3293662ffa2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 86439,
            "upload_time": "2024-01-26T19:50:12",
            "upload_time_iso_8601": "2024-01-26T19:50:12.575334Z",
            "url": "https://files.pythonhosted.org/packages/28/d7/4fa9149452a5e4b4cb563a731b582dd619ee64417eb2c940182cc60be5a9/pyinstrument-4.6.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c8454619c7d982fa0407e2603b4f9359c1b8f70d420a88a12a93a2ae3386a74",
                "md5": "1be25bbdd33feca218b67fceb5a3a3a1",
                "sha256": "90350533396071cb2543affe01e40bf534c35cb0d4b8fa9fdb0f052f9ca2cfe3"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1be25bbdd33feca218b67fceb5a3a3a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 104310,
            "upload_time": "2024-01-26T19:50:14",
            "upload_time_iso_8601": "2024-01-26T19:50:14.477246Z",
            "url": "https://files.pythonhosted.org/packages/0c/84/54619c7d982fa0407e2603b4f9359c1b8f70d420a88a12a93a2ae3386a74/pyinstrument-4.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22a7882127316098ecc783cace8042f845e5eeed31b662898d137eaa7139ce99",
                "md5": "49e0ba4ad539d605a258a4ab8c11853c",
                "sha256": "67268bb0d579330cff40fd1c90b8510363ca1a0e7204225840614068658dab77"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "49e0ba4ad539d605a258a4ab8c11853c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 103093,
            "upload_time": "2024-01-26T19:50:15",
            "upload_time_iso_8601": "2024-01-26T19:50:15.587791Z",
            "url": "https://files.pythonhosted.org/packages/22/a7/882127316098ecc783cace8042f845e5eeed31b662898d137eaa7139ce99/pyinstrument-4.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48d8f0561a1e0479d9c42c6ce76e93c4195551074239b4f7859bb215f30813e1",
                "md5": "85e36908a0b992e58cbc65e451155d51",
                "sha256": "20e15b4e1d29ba0b7fc81aac50351e0dc0d7e911e93771ebc3f408e864a2c93b"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85e36908a0b992e58cbc65e451155d51",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 104060,
            "upload_time": "2024-01-26T19:50:16",
            "upload_time_iso_8601": "2024-01-26T19:50:16.740374Z",
            "url": "https://files.pythonhosted.org/packages/48/d8/f0561a1e0479d9c42c6ce76e93c4195551074239b4f7859bb215f30813e1/pyinstrument-4.6.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "974fdc64e05ddcada5b75c12510de412788053554ebbc3b64bbdcf44a798ca92",
                "md5": "45b6345604bd8ecef3acd5463cee600f",
                "sha256": "2e625fc6ffcd4fd420493edd8276179c3f784df207bef4c2192725c1b310534c"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "45b6345604bd8ecef3acd5463cee600f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 108777,
            "upload_time": "2024-01-26T19:50:17",
            "upload_time_iso_8601": "2024-01-26T19:50:17.989687Z",
            "url": "https://files.pythonhosted.org/packages/97/4f/dc64e05ddcada5b75c12510de412788053554ebbc3b64bbdcf44a798ca92/pyinstrument-4.6.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "186946a643b4de165b45304f3e8864b66482acac26541555188258b2806ced4b",
                "md5": "2ed5d5bcad49ff181d03d3a14225f239",
                "sha256": "113d2fc534c9ca7b6b5661d6ada05515bf318f6eb34e8d05860fe49eb7cfe17e"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2ed5d5bcad49ff181d03d3a14225f239",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 108407,
            "upload_time": "2024-01-26T19:50:19",
            "upload_time_iso_8601": "2024-01-26T19:50:19.719205Z",
            "url": "https://files.pythonhosted.org/packages/18/69/46a643b4de165b45304f3e8864b66482acac26541555188258b2806ced4b/pyinstrument-4.6.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "858947a117f3ea38fae5671dbe8201ee588c9db15df1d0887ce3ca020cafa4e6",
                "md5": "fdabbaa0ea7cdcbf1c27f3b0a20485e2",
                "sha256": "3098cd72b71a322a72dafeb4ba5c566465e193d2030adad4c09566bd2f89bf4f"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdabbaa0ea7cdcbf1c27f3b0a20485e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 108861,
            "upload_time": "2024-01-26T19:50:20",
            "upload_time_iso_8601": "2024-01-26T19:50:20.912883Z",
            "url": "https://files.pythonhosted.org/packages/85/89/47a117f3ea38fae5671dbe8201ee588c9db15df1d0887ce3ca020cafa4e6/pyinstrument-4.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "991b8f0bf4f921178299e0611ae7d3b7108e443db3c9a6c8e245e8beb2bfe47e",
                "md5": "c72e8e19962571add7ec3895768f0d99",
                "sha256": "08fdc7f88c989316fa47805234c37a40fafe7b614afd8ae863f0afa9d1707b37"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "c72e8e19962571add7ec3895768f0d99",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 89132,
            "upload_time": "2024-01-26T19:50:22",
            "upload_time_iso_8601": "2024-01-26T19:50:22.781929Z",
            "url": "https://files.pythonhosted.org/packages/99/1b/8f0bf4f921178299e0611ae7d3b7108e443db3c9a6c8e245e8beb2bfe47e/pyinstrument-4.6.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da7866cab020166fb1877d6ce69f28794b82db9726deea48f6e474cb301d7319",
                "md5": "cff244d8c45224861997b3b88f7f8ed5",
                "sha256": "5ebeba952c0056dcc9b9355328c78c4b5c2a33b4b4276a9157a3ab589f3d1bac"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cff244d8c45224861997b3b88f7f8ed5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 89759,
            "upload_time": "2024-01-26T19:50:23",
            "upload_time_iso_8601": "2024-01-26T19:50:23.872799Z",
            "url": "https://files.pythonhosted.org/packages/da/78/66cab020166fb1877d6ce69f28794b82db9726deea48f6e474cb301d7319/pyinstrument-4.6.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "115c0646917e81e6725b71fb8bddec0e4cfa66f354b83e70a82b5a98d5b037b3",
                "md5": "30636bea2487a758eab718dd6eb7ed4c",
                "sha256": "34e59e91c88ec9ad5630c0964eca823949005e97736bfa838beb4789e94912a2"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "30636bea2487a758eab718dd6eb7ed4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 91965,
            "upload_time": "2024-01-26T19:50:25",
            "upload_time_iso_8601": "2024-01-26T19:50:25.352701Z",
            "url": "https://files.pythonhosted.org/packages/11/5c/0646917e81e6725b71fb8bddec0e4cfa66f354b83e70a82b5a98d5b037b3/pyinstrument-4.6.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d19a83129f269926ea32fc9cd94069cc3dd0d92859e9389fa76507cb2e84f0e0",
                "md5": "fd0f2699225c903387a9ab6d12f656ce",
                "sha256": "cd0320c39e99e3c0a3129d1ed010ac41e5a7eb96fb79900d270080a97962e995"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd0f2699225c903387a9ab6d12f656ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 86522,
            "upload_time": "2024-01-26T19:50:26",
            "upload_time_iso_8601": "2024-01-26T19:50:26.505055Z",
            "url": "https://files.pythonhosted.org/packages/d1/9a/83129f269926ea32fc9cd94069cc3dd0d92859e9389fa76507cb2e84f0e0/pyinstrument-4.6.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a912ed77b7c2cf003b441e6697f90fcfc76fd6ef0ca88321405856ecf7442fe8",
                "md5": "4478a8a9232f5ef172730bbc963e8b98",
                "sha256": "46992e855d630575ec635eeca0068a8ddf423d4fd32ea0875a94e9f8688f0b95"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4478a8a9232f5ef172730bbc963e8b98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 105885,
            "upload_time": "2024-01-26T19:50:27",
            "upload_time_iso_8601": "2024-01-26T19:50:27.726100Z",
            "url": "https://files.pythonhosted.org/packages/a9/12/ed77b7c2cf003b441e6697f90fcfc76fd6ef0ca88321405856ecf7442fe8/pyinstrument-4.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92b0d5e53e3c74c4d49c0dc519401baad79c74b325a2ad23af19d6d4b0bba588",
                "md5": "505eb692a5b58ef191813fe9f932e40b",
                "sha256": "1e474c56da636253dfdca7cd1998b240d6b39f7ed34777362db69224fcf053b1"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "505eb692a5b58ef191813fe9f932e40b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 104563,
            "upload_time": "2024-01-26T19:50:28",
            "upload_time_iso_8601": "2024-01-26T19:50:28.915265Z",
            "url": "https://files.pythonhosted.org/packages/92/b0/d5e53e3c74c4d49c0dc519401baad79c74b325a2ad23af19d6d4b0bba588/pyinstrument-4.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3559fc524a5f5fb1ed90e037d9865b084c78dfa06b53a2a71889bb134224404e",
                "md5": "b7b324d91a2cb248e5e9925c9ec7839e",
                "sha256": "d4b559322f30509ad8f082561792352d0805b3edfa508e492a36041fdc009259"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7b324d91a2cb248e5e9925c9ec7839e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 105678,
            "upload_time": "2024-01-26T19:50:30",
            "upload_time_iso_8601": "2024-01-26T19:50:30.857576Z",
            "url": "https://files.pythonhosted.org/packages/35/59/fc524a5f5fb1ed90e037d9865b084c78dfa06b53a2a71889bb134224404e/pyinstrument-4.6.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f12ebf01f0a691e59699f8097f4a517c0ae1fdfb43e8befbdecc0e73398b5ee",
                "md5": "9ab5c69250fb69e1b1c4caae75b86da2",
                "sha256": "06a8578b2943eb1dbbf281e1e59e44246acfefd79e1b06d4950f01b693de12af"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ab5c69250fb69e1b1c4caae75b86da2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 109344,
            "upload_time": "2024-01-26T19:50:32",
            "upload_time_iso_8601": "2024-01-26T19:50:32.639172Z",
            "url": "https://files.pythonhosted.org/packages/8f/12/ebf01f0a691e59699f8097f4a517c0ae1fdfb43e8befbdecc0e73398b5ee/pyinstrument-4.6.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4eb920c97cb0bb34ed2c475b88010c03660b0d2941fa502b568a99d49736828",
                "md5": "61d0fe37f2853a5d7305cf822bd06788",
                "sha256": "7bd3da31c46f1c1cb7ae89031725f6a1d1015c2041d9c753fe23980f5f9fd86c"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "61d0fe37f2853a5d7305cf822bd06788",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 108794,
            "upload_time": "2024-01-26T19:50:34",
            "upload_time_iso_8601": "2024-01-26T19:50:34.073593Z",
            "url": "https://files.pythonhosted.org/packages/c4/eb/920c97cb0bb34ed2c475b88010c03660b0d2941fa502b568a99d49736828/pyinstrument-4.6.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c98e4080625a3ffc0a925e3aebea3f1de48053d300923bb7a2cd19ad3a03d04f",
                "md5": "68daa564117899a0a9dfc3859edbd3b2",
                "sha256": "e63f4916001aa9c625976a50779282e0a5b5e9b17c52a50ef4c651e468ed5b88"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68daa564117899a0a9dfc3859edbd3b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 109541,
            "upload_time": "2024-01-26T19:50:35",
            "upload_time_iso_8601": "2024-01-26T19:50:35.269690Z",
            "url": "https://files.pythonhosted.org/packages/c9/8e/4080625a3ffc0a925e3aebea3f1de48053d300923bb7a2cd19ad3a03d04f/pyinstrument-4.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dba163bf1ae9d6dad4ecb9f801abd88ae2445cff1f8511ffe40beac79c26ffd3",
                "md5": "0542ebbadfab2a712ded1c15bf9193fb",
                "sha256": "32ec8db6896b94af790a530e1e0edad4d0f941a0ab8dd9073e5993e7ea46af7d"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "0542ebbadfab2a712ded1c15bf9193fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 89147,
            "upload_time": "2024-01-26T19:50:36",
            "upload_time_iso_8601": "2024-01-26T19:50:36.477270Z",
            "url": "https://files.pythonhosted.org/packages/db/a1/63bf1ae9d6dad4ecb9f801abd88ae2445cff1f8511ffe40beac79c26ffd3/pyinstrument-4.6.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03880f65031f5f471fea275535ca439f9b08414a0c986895c9d2a4674b578bf7",
                "md5": "779e96538db46f48c547911b2e828c93",
                "sha256": "a59fc4f7db738a094823afe6422509fa5816a7bf74e768ce5a7a2ddd91af40ac"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "779e96538db46f48c547911b2e828c93",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 89798,
            "upload_time": "2024-01-26T19:50:37",
            "upload_time_iso_8601": "2024-01-26T19:50:37.589755Z",
            "url": "https://files.pythonhosted.org/packages/03/88/0f65031f5f471fea275535ca439f9b08414a0c986895c9d2a4674b578bf7/pyinstrument-4.6.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99513fab7658a92766d27496d0ee204fa2e6334f33a23206933366d693383f3e",
                "md5": "43cd0b422a8abe136b99c9e9350d6de7",
                "sha256": "3a165e0d2deb212d4cf439383982a831682009e1b08733c568cac88c89784e62"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "43cd0b422a8abe136b99c9e9350d6de7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 92610,
            "upload_time": "2024-01-26T19:50:38",
            "upload_time_iso_8601": "2024-01-26T19:50:38.888940Z",
            "url": "https://files.pythonhosted.org/packages/99/51/3fab7658a92766d27496d0ee204fa2e6334f33a23206933366d693383f3e/pyinstrument-4.6.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82f86e1f05ef1beff9bd6f6d44ab8c1e527621cb322f1cf62a39827905106200",
                "md5": "d0e50dea2da0c5b44854231e5ae083d1",
                "sha256": "7ba858b3d6f6e5597c641edcc0e7e464f85aba86d71bc3b3592cb89897bf43f6"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0e50dea2da0c5b44854231e5ae083d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 86865,
            "upload_time": "2024-01-26T19:50:40",
            "upload_time_iso_8601": "2024-01-26T19:50:40.227634Z",
            "url": "https://files.pythonhosted.org/packages/82/f8/6e1f05ef1beff9bd6f6d44ab8c1e527621cb322f1cf62a39827905106200/pyinstrument-4.6.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d95f8cc342d69114511e0840fb70dc15869d1126d19e254fbc2b818f996f1e62",
                "md5": "b037c13689facb75776c7a115d02d3ff",
                "sha256": "2fd8e547cf3df5f0ec6e4dffbe2e857f6b28eda51b71c3c0b5a2fc0646527835"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b037c13689facb75776c7a115d02d3ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 106642,
            "upload_time": "2024-01-26T19:50:41",
            "upload_time_iso_8601": "2024-01-26T19:50:41.535399Z",
            "url": "https://files.pythonhosted.org/packages/d9/5f/8cc342d69114511e0840fb70dc15869d1126d19e254fbc2b818f996f1e62/pyinstrument-4.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "485231d41af7d9a21cf4ea5fe299c573120edc795034b999be92b98d9c7645f5",
                "md5": "4fb7f8a62f9bac0dfb4e478c85a6cf26",
                "sha256": "0de2c1714a37a820033b19cf134ead43299a02662f1379140974a9ab733c5f3a"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4fb7f8a62f9bac0dfb4e478c85a6cf26",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 105612,
            "upload_time": "2024-01-26T19:50:42",
            "upload_time_iso_8601": "2024-01-26T19:50:42.899284Z",
            "url": "https://files.pythonhosted.org/packages/48/52/31d41af7d9a21cf4ea5fe299c573120edc795034b999be92b98d9c7645f5/pyinstrument-4.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5692c3b88a4cf63e3ffb070cf2bd7b7aa0b68240391e15c063e106f4f434763a",
                "md5": "7cefdd65c6ac1589f05e916969134898",
                "sha256": "01fc45dedceec3df81668d702bca6d400d956c8b8494abc206638c167c78dfd9"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cefdd65c6ac1589f05e916969134898",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 106524,
            "upload_time": "2024-01-26T19:50:44",
            "upload_time_iso_8601": "2024-01-26T19:50:44.092604Z",
            "url": "https://files.pythonhosted.org/packages/56/92/c3b88a4cf63e3ffb070cf2bd7b7aa0b68240391e15c063e106f4f434763a/pyinstrument-4.6.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74f8b689f89b5803cb8dbe056eacb4376f1636dc8a1a64d2c8f06e5354ec088d",
                "md5": "90fd5374d511ff117fde42aa73b3c813",
                "sha256": "5b6e161ef268d43ee6bbfae7fd2cdd0a52c099ddd21001c126ca1805dc906539"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "90fd5374d511ff117fde42aa73b3c813",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 109608,
            "upload_time": "2024-01-26T19:50:45",
            "upload_time_iso_8601": "2024-01-26T19:50:45.384287Z",
            "url": "https://files.pythonhosted.org/packages/74/f8/b689f89b5803cb8dbe056eacb4376f1636dc8a1a64d2c8f06e5354ec088d/pyinstrument-4.6.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40e513859b3371a1c02dc9a32b37d543e3ee34d8322d2d89147d1f444d209c5e",
                "md5": "ef33c990cfd0a9c2af268c8d08eaba3d",
                "sha256": "6ba8e368d0421f15ba6366dfd60ec131c1b46505d021477e0f865d26cf35a605"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ef33c990cfd0a9c2af268c8d08eaba3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 109060,
            "upload_time": "2024-01-26T19:50:46",
            "upload_time_iso_8601": "2024-01-26T19:50:46.538687Z",
            "url": "https://files.pythonhosted.org/packages/40/e5/13859b3371a1c02dc9a32b37d543e3ee34d8322d2d89147d1f444d209c5e/pyinstrument-4.6.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45d55dda8597f7e22af4664854dab57f31a4fbff958cb69e8cecd165a0bcf3dd",
                "md5": "268be577e25e03fe909b22f98e38e868",
                "sha256": "edca46f04a573ac2fb11a84b937844e6a109f38f80f4b422222fb5be8ecad8cb"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "268be577e25e03fe909b22f98e38e868",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 109837,
            "upload_time": "2024-01-26T19:50:47",
            "upload_time_iso_8601": "2024-01-26T19:50:47.676753Z",
            "url": "https://files.pythonhosted.org/packages/45/d5/5dda8597f7e22af4664854dab57f31a4fbff958cb69e8cecd165a0bcf3dd/pyinstrument-4.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "765080fc9f8a77a1c4bc0e605714d17dec5d65a276770b436560159fac2549bf",
                "md5": "1fd24b0d018a82c2d4c4aafbe389d302",
                "sha256": "baf375953b02fe94d00e716f060e60211ede73f49512b96687335f7071adb153"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "1fd24b0d018a82c2d4c4aafbe389d302",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 89298,
            "upload_time": "2024-01-26T19:50:49",
            "upload_time_iso_8601": "2024-01-26T19:50:49.491151Z",
            "url": "https://files.pythonhosted.org/packages/76/50/80fc9f8a77a1c4bc0e605714d17dec5d65a276770b436560159fac2549bf/pyinstrument-4.6.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7c12abbb1993084ce4cfd01a683ec6e288a70dd673bd78b4c5b341a8f76dd4d",
                "md5": "d7c7f7c3bea3f453ab4db3366f6157bf",
                "sha256": "af1a953bce9fd530040895d01ff3de485e25e1576dccb014f76ba9131376fcad"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7c7f7c3bea3f453ab4db3366f6157bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 90053,
            "upload_time": "2024-01-26T19:50:50",
            "upload_time_iso_8601": "2024-01-26T19:50:50.818724Z",
            "url": "https://files.pythonhosted.org/packages/f7/c1/2abbb1993084ce4cfd01a683ec6e288a70dd673bd78b4c5b341a8f76dd4d/pyinstrument-4.6.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54b13cc18e0b39f3b043c8ceda8c0d52f36fffb8e28e8773ad75cccc4dee0955",
                "md5": "69adc4f40e0be973bd39394ade142d4c",
                "sha256": "0002ee517ed8502bbda6eb2bb1ba8f95a55492fcdf03811ba13d4806e50dd7f6"
            },
            "downloads": -1,
            "filename": "pyinstrument-4.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "69adc4f40e0be973bd39394ade142d4c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 128412,
            "upload_time": "2024-01-26T19:50:52",
            "upload_time_iso_8601": "2024-01-26T19:50:52.107129Z",
            "url": "https://files.pythonhosted.org/packages/54/b1/3cc18e0b39f3b043c8ceda8c0d52f36fffb8e28e8773ad75cccc4dee0955/pyinstrument-4.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-26 19:50:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "joerick",
    "github_project": "pyinstrument",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyinstrument"
}
        
Elapsed time: 0.17920s