line-profiler


Nameline-profiler JSON
Version 4.1.2 PyPI version JSON
download
home_pagehttps://github.com/pyutils/line_profiler
SummaryLine-by-line profiler
upload_time2023-11-03 00:10:46
maintainer
docs_urlhttps://pythonhosted.org/line-profiler/
authorRobert Kern
requires_python>=3.6
licenseBSD
keywords timing timer profiling profiler line_profiler
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            line_profiler and kernprof
--------------------------

|Pypi| |ReadTheDocs| |Downloads| |CircleCI| |GithubActions| |Codecov|


This is the official ``line_profiler`` repository. The most recent version of
`line-profiler <https://pypi.org/project/line_profiler/>`_ on pypi points to
this repo.
The original `line_profiler <https://github.com/rkern/line_profiler/>`_ package
by `@rkern <https://github.com/rkern/>`_ is unmaintained.
This fork is the official continuation of the project.

+---------------+--------------------------------------------+
| Github        | https://github.com/pyutils/line_profiler   |
+---------------+--------------------------------------------+
| Pypi          | https://pypi.org/project/line_profiler     |
+---------------+--------------------------------------------+
| ReadTheDocs   | https://kernprof.readthedocs.io/en/latest/ |
+---------------+--------------------------------------------+

----


``line_profiler`` is a module for doing line-by-line profiling of functions.
kernprof is a convenient script for running either ``line_profiler`` or the Python
standard library's cProfile or profile modules, depending on what is available.

They are available under a `BSD license`_.

.. _BSD license: https://raw.githubusercontent.com/pyutils/line_profiler/master/LICENSE.txt

.. contents::


Quick Start
===========
To profile a python script:

* Install line_profiler: ``pip install line_profiler``.

* Decorate function(s) you want to profile with @profile. The decorator will be made automatically available on run.

* Run ``kernprof -lv script_to_profile.py``.

Installation
============

Releases of ``line_profiler`` can be installed using pip::

    $ pip install line_profiler

Installation while ensuring a compatible IPython version can also be installed using pip::

    $ pip install line_profiler[ipython]

To check out the development sources, you can use Git_::

    $ git clone https://github.com/pyutils/line_profiler.git

You may also download source tarballs of any snapshot from that URL.

Source releases will require a C compiler in order to build `line_profiler`.
In addition, git checkouts will also require Cython. Source releases
on PyPI should contain the pregenerated C sources, so Cython should not be
required in that case.

``kernprof`` is a single-file pure Python script and does not require
a compiler.  If you wish to use it to run cProfile and not line-by-line
profiling, you may copy it to a directory on your ``PATH`` manually and avoid
trying to build any C extensions.

As of 2021-06-04 Linux (x86_64 and i686), OSX (10_9_x86_64), and Win32 (win32,
and amd64) binaries are available on pypi.

The last version of line profiler to support Python 2.7 was 3.1.0 and the last
version to support Python 3.5 was 3.3.1.

.. _git: http://git-scm.com/
.. _Cython: http://www.cython.org
.. _build and install: http://docs.python.org/install/index.html


line_profiler
=============

The current profiling tools supported in Python only time
function calls. This is a good first step for locating hotspots in one's program
and is frequently all one needs to do to optimize the program. However,
sometimes the cause of the hotspot is actually a single line in the function,
and that line may not be obvious from just reading the source code. These cases
are particularly frequent in scientific computing. Functions tend to be larger
(sometimes because of legitimate algorithmic complexity, sometimes because the
programmer is still trying to write FORTRAN code), and a single statement
without function calls can trigger lots of computation when using libraries like
numpy. cProfile only times explicit function calls, not special methods called
because of syntax. Consequently, a relatively slow numpy operation on large
arrays like this, ::

    a[large_index_array] = some_other_large_array

is a hotspot that never gets broken out by cProfile because there is no explicit
function call in that statement.

LineProfiler can be given functions to profile, and it will time the execution
of each individual line inside those functions. In a typical workflow, one only
cares about line timings of a few functions because wading through the results
of timing every single line of code would be overwhelming. However, LineProfiler
does need to be explicitly told what functions to profile. The easiest way to
get started is to use the ``kernprof`` script. ::

    $ kernprof -l script_to_profile.py

``kernprof`` will create an instance of LineProfiler and insert it into the
``__builtins__`` namespace with the name ``profile``. It has been written to be
used as a decorator, so in your script, you decorate the functions you want
to profile with @profile. ::

    @profile
    def slow_function(a, b, c):
        ...

The default behavior of ``kernprof`` is to put the results into a binary file
script_to_profile.py.lprof . You can tell ``kernprof`` to immediately view the
formatted results at the terminal with the [-v/--view] option. Otherwise, you
can view the results later like so::

    $ python -m line_profiler script_to_profile.py.lprof

For example, here are the results of profiling a single function from
a decorated version of the pystone.py benchmark (the first two lines are output
from ``pystone.py``, not ``kernprof``)::

    Pystone(1.1) time for 50000 passes = 2.48
    This machine benchmarks at 20161.3 pystones/second
    Wrote profile results to pystone.py.lprof
    Timer unit: 1e-06 s

    File: pystone.py
    Function: Proc2 at line 149
    Total time: 0.606656 s

    Line #      Hits         Time  Per Hit   % Time  Line Contents
    ==============================================================
       149                                           @profile
       150                                           def Proc2(IntParIO):
       151     50000        82003      1.6     13.5      IntLoc = IntParIO + 10
       152     50000        63162      1.3     10.4      while 1:
       153     50000        69065      1.4     11.4          if Char1Glob == 'A':
       154     50000        66354      1.3     10.9              IntLoc = IntLoc - 1
       155     50000        67263      1.3     11.1              IntParIO = IntLoc - IntGlob
       156     50000        65494      1.3     10.8              EnumLoc = Ident1
       157     50000        68001      1.4     11.2          if EnumLoc == Ident1:
       158     50000        63739      1.3     10.5              break
       159     50000        61575      1.2     10.1      return IntParIO


The source code of the function is printed with the timing information for each
line. There are six columns of information.

    * Line #: The line number in the file.

    * Hits: The number of times that line was executed.

    * Time: The total amount of time spent executing the line in the timer's
      units. In the header information before the tables, you will see a line
      "Timer unit:" giving the conversion factor to seconds. It may be different
      on different systems.

    * Per Hit: The average amount of time spent executing the line once in the
      timer's units.

    * % Time: The percentage of time spent on that line relative to the total
      amount of recorded time spent in the function.

    * Line Contents: The actual source code. Note that this is always read from
      disk when the formatted results are viewed, *not* when the code was
      executed. If you have edited the file in the meantime, the lines will not
      match up, and the formatter may not even be able to locate the function
      for display.

If you are using IPython, there is an implementation of an %lprun magic command
which will let you specify functions to profile and a statement to execute. It
will also add its LineProfiler instance into the __builtins__, but typically,
you would not use it like that.

For IPython 0.11+, you can install it by editing the IPython configuration file
``~/.ipython/profile_default/ipython_config.py`` to add the ``'line_profiler'``
item to the extensions list::

    c.TerminalIPythonApp.extensions = [
        'line_profiler',
    ]

Or explicitly call::

    %load_ext line_profiler

To get usage help for %lprun, use the standard IPython help mechanism::

    In [1]: %lprun?

These two methods are expected to be the most frequent user-level ways of using
LineProfiler and will usually be the easiest. However, if you are building other
tools with LineProfiler, you will need to use the API. There are two ways to
inform LineProfiler of functions to profile: you can pass them as arguments to
the constructor or use the ``add_function(f)`` method after instantiation. ::

    profile = LineProfiler(f, g)
    profile.add_function(h)

LineProfiler has the same ``run()``, ``runctx()``, and ``runcall()`` methods as
cProfile.Profile as well as ``enable()`` and ``disable()``. It should be noted,
though, that ``enable()`` and ``disable()`` are not entirely safe when nested.
Nesting is common when using LineProfiler as a decorator. In order to support
nesting, use ``enable_by_count()`` and ``disable_by_count()``. These functions will
increment and decrement a counter and only actually enable or disable the
profiler when the count transitions from or to 0.

After profiling, the ``dump_stats(filename)`` method will pickle the results out
to the given file. ``print_stats([stream])`` will print the formatted results to
sys.stdout or whatever stream you specify. ``get_stats()`` will return LineStats
object, which just holds two attributes: a dictionary containing the results and
the timer unit.


kernprof
========

``kernprof`` also works with cProfile, its third-party incarnation lsprof, or the
pure-Python profile module depending on what is available. It has a few main
features:

    * Encapsulation of profiling concerns. You do not have to modify your script
      in order to initiate profiling and save the results. Unless if you want to
      use the advanced __builtins__ features, of course.

    * Robust script execution. Many scripts require things like __name__,
      __file__, and sys.path to be set relative to it. A naive approach at
      encapsulation would just use execfile(), but many scripts which rely on
      that information will fail. kernprof will set those variables correctly
      before executing the script.

    * Easy executable location. If you are profiling an application installed on
      your PATH, you can just give the name of the executable. If kernprof does
      not find the given script in the current directory, it will search your
      PATH for it.

    * Inserting the profiler into __builtins__. Sometimes, you just want to
      profile a small part of your code. With the [-b/--builtin] argument, the
      Profiler will be instantiated and inserted into your __builtins__ with the
      name "profile". Like LineProfiler, it may be used as a decorator, or
      enabled/disabled with ``enable_by_count()`` and ``disable_by_count()``, or
      even as a context manager with the "with profile:" statement.

    * Pre-profiling setup. With the [-s/--setup] option, you can provide
      a script which will be executed without profiling before executing the
      main script. This is typically useful for cases where imports of large
      libraries like wxPython or VTK are interfering with your results. If you
      can modify your source code, the __builtins__ approach may be
      easier.

The results of profile script_to_profile.py will be written to
script_to_profile.py.prof by default. It will be a typical marshalled file that
can be read with pstats.Stats(). They may be interactively viewed with the
command::

    $ python -m pstats script_to_profile.py.prof


Such files may also be viewed with graphical tools. A list of 3rd party tools
built on ``cProfile`` or ``line_profiler`` are as follows:

* `pyprof2calltree <pyprof2calltree_>`_: converts profiling data to a format
  that can be visualized using kcachegrind_ (linux only), wincachegrind_
  (windows only, unmaintained), or  qcachegrind_.

* `Line Profiler GUI <qt_profiler_gui_>`_: Qt GUI for line_profiler.

* `SnakeViz <SnakeViz_>`_: A web viewer for Python profiling data.

* `SnakeRunner <SnakeRunner_>`_: A fork of RunSnakeRun_, ported to Python 3.

* `Pycharm plugin <pycharm_line_profiler_plugin_>`_: A PyCharm plugin for line_profiler.

* `Spyder plugin <spyder_line_profiler_plugin_>`_: A plugin to run line_profiler from within the Spyder IDE.

* `pprof <web_profiler_ui_>`_: A render web report for ``line_profiler``.

.. _qcachegrind: https://sourceforge.net/projects/qcachegrindwin/
.. _kcachegrind: https://kcachegrind.github.io/html/Home.html
.. _wincachegrind: https://github.com/ceefour/wincachegrind
.. _pyprof2calltree: http://pypi.python.org/pypi/pyprof2calltree/
.. _SnakeViz: https://github.com/jiffyclub/snakeviz/
.. _SnakeRunner: https://github.com/venthur/snakerunner
.. _RunSnakeRun: https://pypi.org/project/RunSnakeRun/
.. _qt_profiler_gui: https://github.com/Nodd/lineprofilergui
.. _pycharm_line_profiler_plugin: https://plugins.jetbrains.com/plugin/16536-line-profiler
.. _spyder_line_profiler_plugin: https://github.com/spyder-ide/spyder-line-profiler
.. _web_profiler_ui: https://github.com/mirecl/pprof


Related Work
============

Check out these other Python profilers:

* `Scalene <https://github.com/plasma-umass/scalene>`_: A CPU+GPU+memory sampling based profiler.

* `PyInstrument  <https://github.com/joerick/pyinstrument>`_: A call stack profiler.

* `Yappi <https://github.com/sumerc/yappi>`_: A tracing profiler that is multithreading, asyncio and gevent aware.

* `profile / cProfile <https://docs.python.org/3/library/profile.html>`_: The builtin profile module.

* `timeit <https://docs.python.org/3/library/timeit.html>`_: The builtin timeit module for profiling single statements.

* `timerit <https://github.com/Erotemic/timerit>`_: A multi-statements alternative to the builtin ``timeit`` module.

Frequently Asked Questions
==========================

* Why the name "kernprof"?

    I didn't manage to come up with a meaningful name, so I named it after
    myself.

* The line-by-line timings don't add up when one profiled function calls
  another. What's up with that?

    Let's say you have function F() calling function G(), and you are using
    LineProfiler on both. The total time reported for G() is less than the time
    reported on the line in F() that calls G(). The reason is that I'm being
    reasonably clever (and possibly too clever) in recording the times.
    Basically, I try to prevent recording the time spent inside LineProfiler
    doing all of the bookkeeping for each line. Each time Python's tracing
    facility issues a line event (which happens just before a line actually gets
    executed), LineProfiler will find two timestamps, one at the beginning
    before it does anything (t_begin) and one as close to the end as possible
    (t_end). Almost all of the overhead of LineProfiler's data structures
    happens in between these two times.

    When a line event comes in, LineProfiler finds the function it belongs to.
    If it's the first line in the function, we record the line number and
    *t_end* associated with the function. The next time we see a line event
    belonging to that function, we take t_begin of the new event and subtract
    the old t_end from it to find the amount of time spent in the old line. Then
    we record the new t_end as the active line for this function. This way, we
    are removing most of LineProfiler's overhead from the results. Well almost.
    When one profiled function F calls another profiled function G, the line in
    F that calls G basically records the total time spent executing the line,
    which includes the time spent inside the profiler while inside G.

    The first time this question was asked, the questioner had the G() function
    call as part of a larger expression, and he wanted to try to estimate how
    much time was being spent in the function as opposed to the rest of the
    expression. My response was that, even if I could remove the effect, it
    might still be misleading. G() might be called elsewhere, not just from the
    relevant line in F(). The workaround would be to modify the code to split it
    up into two lines, one which just assigns the result of G() to a temporary
    variable and the other with the rest of the expression.

    I am open to suggestions on how to make this more robust. Or simple
    admonitions against trying to be clever.

* Why do my list comprehensions have so many hits when I use the LineProfiler?

    LineProfiler records the line with the list comprehension once for each
    iteration of the list comprehension.

* Why is kernprof distributed with line_profiler? It works with just cProfile,
  right?

    Partly because kernprof.py is essential to using line_profiler effectively,
    but mostly because I'm lazy and don't want to maintain the overhead of two
    projects for modules as small as these. However, kernprof.py is
    a standalone, pure Python script that can be used to do function profiling
    with just the Python standard library. You may grab it and install it by
    itself without ``line_profiler``.

* Do I need a C compiler to build ``line_profiler``? kernprof.py?

    You do need a C compiler for line_profiler. kernprof.py is a pure Python
    script and can be installed separately, though.

* Do I need Cython to build ``line_profiler``?

    Wheels for supported versions of Python are available on PyPI and support
    linux, osx, and windows for x86-64 architectures. Linux additionally ships
    with i686 wheels for manylinux and musllinux. If you have a different CPU
    architecture, or an unsupported Python version, then you will need to build
    from source.

* What version of Python do I need?

    Both ``line_profiler`` and ``kernprof`` have been tested with Python 3.6-3.11.
    Older versions of ``line_profiler`` support older versions of Python.


To Do
=====

cProfile uses a neat "rotating trees" data structure to minimize the overhead of
looking up and recording entries. LineProfiler uses Python dictionaries and
extension objects thanks to Cython. This mostly started out as a prototype that
I wanted to play with as quickly as possible, so I passed on stealing the
rotating trees for now. As usual, I got it working, and it seems to have
acceptable performance, so I am much less motivated to use a different strategy
now. Maybe later. Contributions accepted!


Bugs and Such
=============

Bugs and pull requested can be submitted on GitHub_.

.. _GitHub: https://github.com/pyutils/line_profiler


Changes
=======

See `CHANGELOG`_.

.. _CHANGELOG: CHANGELOG.rst


.. |CircleCI| image:: https://circleci.com/gh/pyutils/line_profiler.svg?style=svg
    :target: https://circleci.com/gh/pyutils/line_profiler
.. |Travis| image:: https://img.shields.io/travis/pyutils/line_profiler/master.svg?label=Travis%20CI
   :target: https://travis-ci.org/pyutils/line_profiler?branch=master
.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/github/pyutils/line_profiler?branch=master&svg=True
   :target: https://ci.appveyor.com/project/pyutils/line_profiler/branch/master
.. |Codecov| image:: https://codecov.io/github/pyutils/line_profiler/badge.svg?branch=master&service=github
   :target: https://codecov.io/github/pyutils/line_profiler?branch=master
.. |Pypi| image:: https://img.shields.io/pypi/v/line_profiler.svg
   :target: https://pypi.python.org/pypi/line_profiler
.. |Downloads| image:: https://img.shields.io/pypi/dm/line_profiler.svg
   :target: https://pypistats.org/packages/line_profiler
.. |GithubActions| image:: https://github.com/pyutils/line_profiler/actions/workflows/tests.yml/badge.svg?branch=main
   :target: https://github.com/pyutils/line_profiler/actions?query=branch%3Amain
.. |ReadTheDocs| image:: https://readthedocs.org/projects/kernprof/badge/?version=latest
    :target: http://kernprof.readthedocs.io/en/latest/



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyutils/line_profiler",
    "name": "line-profiler",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/line-profiler/",
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "timing,timer,profiling,profiler,line_profiler",
    "author": "Robert Kern",
    "author_email": "robert.kern@enthought.com",
    "download_url": "https://files.pythonhosted.org/packages/1c/e8/14bb2ee9af4ecae4c456c5faaab74436ea2b9da55b436341dd1f7c2927f2/line_profiler-4.1.2.tar.gz",
    "platform": null,
    "description": "line_profiler and kernprof\n--------------------------\n\n|Pypi| |ReadTheDocs| |Downloads| |CircleCI| |GithubActions| |Codecov|\n\n\nThis is the official ``line_profiler`` repository. The most recent version of\n`line-profiler <https://pypi.org/project/line_profiler/>`_ on pypi points to\nthis repo.\nThe original `line_profiler <https://github.com/rkern/line_profiler/>`_ package\nby `@rkern <https://github.com/rkern/>`_ is unmaintained.\nThis fork is the official continuation of the project.\n\n+---------------+--------------------------------------------+\n| Github        | https://github.com/pyutils/line_profiler   |\n+---------------+--------------------------------------------+\n| Pypi          | https://pypi.org/project/line_profiler     |\n+---------------+--------------------------------------------+\n| ReadTheDocs   | https://kernprof.readthedocs.io/en/latest/ |\n+---------------+--------------------------------------------+\n\n----\n\n\n``line_profiler`` is a module for doing line-by-line profiling of functions.\nkernprof is a convenient script for running either ``line_profiler`` or the Python\nstandard library's cProfile or profile modules, depending on what is available.\n\nThey are available under a `BSD license`_.\n\n.. _BSD license: https://raw.githubusercontent.com/pyutils/line_profiler/master/LICENSE.txt\n\n.. contents::\n\n\nQuick Start\n===========\nTo profile a python script:\n\n* Install line_profiler: ``pip install line_profiler``.\n\n* Decorate function(s) you want to profile with @profile. The decorator will be made automatically available on run.\n\n* Run ``kernprof -lv script_to_profile.py``.\n\nInstallation\n============\n\nReleases of ``line_profiler`` can be installed using pip::\n\n    $ pip install line_profiler\n\nInstallation while ensuring a compatible IPython version can also be installed using pip::\n\n    $ pip install line_profiler[ipython]\n\nTo check out the development sources, you can use Git_::\n\n    $ git clone https://github.com/pyutils/line_profiler.git\n\nYou may also download source tarballs of any snapshot from that URL.\n\nSource releases will require a C compiler in order to build `line_profiler`.\nIn addition, git checkouts will also require Cython. Source releases\non PyPI should contain the pregenerated C sources, so Cython should not be\nrequired in that case.\n\n``kernprof`` is a single-file pure Python script and does not require\na compiler.  If you wish to use it to run cProfile and not line-by-line\nprofiling, you may copy it to a directory on your ``PATH`` manually and avoid\ntrying to build any C extensions.\n\nAs of 2021-06-04 Linux (x86_64 and i686), OSX (10_9_x86_64), and Win32 (win32,\nand amd64) binaries are available on pypi.\n\nThe last version of line profiler to support Python 2.7 was 3.1.0 and the last\nversion to support Python 3.5 was 3.3.1.\n\n.. _git: http://git-scm.com/\n.. _Cython: http://www.cython.org\n.. _build and install: http://docs.python.org/install/index.html\n\n\nline_profiler\n=============\n\nThe current profiling tools supported in Python only time\nfunction calls. This is a good first step for locating hotspots in one's program\nand is frequently all one needs to do to optimize the program. However,\nsometimes the cause of the hotspot is actually a single line in the function,\nand that line may not be obvious from just reading the source code. These cases\nare particularly frequent in scientific computing. Functions tend to be larger\n(sometimes because of legitimate algorithmic complexity, sometimes because the\nprogrammer is still trying to write FORTRAN code), and a single statement\nwithout function calls can trigger lots of computation when using libraries like\nnumpy. cProfile only times explicit function calls, not special methods called\nbecause of syntax. Consequently, a relatively slow numpy operation on large\narrays like this, ::\n\n    a[large_index_array] = some_other_large_array\n\nis a hotspot that never gets broken out by cProfile because there is no explicit\nfunction call in that statement.\n\nLineProfiler can be given functions to profile, and it will time the execution\nof each individual line inside those functions. In a typical workflow, one only\ncares about line timings of a few functions because wading through the results\nof timing every single line of code would be overwhelming. However, LineProfiler\ndoes need to be explicitly told what functions to profile. The easiest way to\nget started is to use the ``kernprof`` script. ::\n\n    $ kernprof -l script_to_profile.py\n\n``kernprof`` will create an instance of LineProfiler and insert it into the\n``__builtins__`` namespace with the name ``profile``. It has been written to be\nused as a decorator, so in your script, you decorate the functions you want\nto profile with @profile. ::\n\n    @profile\n    def slow_function(a, b, c):\n        ...\n\nThe default behavior of ``kernprof`` is to put the results into a binary file\nscript_to_profile.py.lprof . You can tell ``kernprof`` to immediately view the\nformatted results at the terminal with the [-v/--view] option. Otherwise, you\ncan view the results later like so::\n\n    $ python -m line_profiler script_to_profile.py.lprof\n\nFor example, here are the results of profiling a single function from\na decorated version of the pystone.py benchmark (the first two lines are output\nfrom ``pystone.py``, not ``kernprof``)::\n\n    Pystone(1.1) time for 50000 passes = 2.48\n    This machine benchmarks at 20161.3 pystones/second\n    Wrote profile results to pystone.py.lprof\n    Timer unit: 1e-06 s\n\n    File: pystone.py\n    Function: Proc2 at line 149\n    Total time: 0.606656 s\n\n    Line #      Hits         Time  Per Hit   % Time  Line Contents\n    ==============================================================\n       149                                           @profile\n       150                                           def Proc2(IntParIO):\n       151     50000        82003      1.6     13.5      IntLoc = IntParIO + 10\n       152     50000        63162      1.3     10.4      while 1:\n       153     50000        69065      1.4     11.4          if Char1Glob == 'A':\n       154     50000        66354      1.3     10.9              IntLoc = IntLoc - 1\n       155     50000        67263      1.3     11.1              IntParIO = IntLoc - IntGlob\n       156     50000        65494      1.3     10.8              EnumLoc = Ident1\n       157     50000        68001      1.4     11.2          if EnumLoc == Ident1:\n       158     50000        63739      1.3     10.5              break\n       159     50000        61575      1.2     10.1      return IntParIO\n\n\nThe source code of the function is printed with the timing information for each\nline. There are six columns of information.\n\n    * Line #: The line number in the file.\n\n    * Hits: The number of times that line was executed.\n\n    * Time: The total amount of time spent executing the line in the timer's\n      units. In the header information before the tables, you will see a line\n      \"Timer unit:\" giving the conversion factor to seconds. It may be different\n      on different systems.\n\n    * Per Hit: The average amount of time spent executing the line once in the\n      timer's units.\n\n    * % Time: The percentage of time spent on that line relative to the total\n      amount of recorded time spent in the function.\n\n    * Line Contents: The actual source code. Note that this is always read from\n      disk when the formatted results are viewed, *not* when the code was\n      executed. If you have edited the file in the meantime, the lines will not\n      match up, and the formatter may not even be able to locate the function\n      for display.\n\nIf you are using IPython, there is an implementation of an %lprun magic command\nwhich will let you specify functions to profile and a statement to execute. It\nwill also add its LineProfiler instance into the __builtins__, but typically,\nyou would not use it like that.\n\nFor IPython 0.11+, you can install it by editing the IPython configuration file\n``~/.ipython/profile_default/ipython_config.py`` to add the ``'line_profiler'``\nitem to the extensions list::\n\n    c.TerminalIPythonApp.extensions = [\n        'line_profiler',\n    ]\n\nOr explicitly call::\n\n    %load_ext line_profiler\n\nTo get usage help for %lprun, use the standard IPython help mechanism::\n\n    In [1]: %lprun?\n\nThese two methods are expected to be the most frequent user-level ways of using\nLineProfiler and will usually be the easiest. However, if you are building other\ntools with LineProfiler, you will need to use the API. There are two ways to\ninform LineProfiler of functions to profile: you can pass them as arguments to\nthe constructor or use the ``add_function(f)`` method after instantiation. ::\n\n    profile = LineProfiler(f, g)\n    profile.add_function(h)\n\nLineProfiler has the same ``run()``, ``runctx()``, and ``runcall()`` methods as\ncProfile.Profile as well as ``enable()`` and ``disable()``. It should be noted,\nthough, that ``enable()`` and ``disable()`` are not entirely safe when nested.\nNesting is common when using LineProfiler as a decorator. In order to support\nnesting, use ``enable_by_count()`` and ``disable_by_count()``. These functions will\nincrement and decrement a counter and only actually enable or disable the\nprofiler when the count transitions from or to 0.\n\nAfter profiling, the ``dump_stats(filename)`` method will pickle the results out\nto the given file. ``print_stats([stream])`` will print the formatted results to\nsys.stdout or whatever stream you specify. ``get_stats()`` will return LineStats\nobject, which just holds two attributes: a dictionary containing the results and\nthe timer unit.\n\n\nkernprof\n========\n\n``kernprof`` also works with cProfile, its third-party incarnation lsprof, or the\npure-Python profile module depending on what is available. It has a few main\nfeatures:\n\n    * Encapsulation of profiling concerns. You do not have to modify your script\n      in order to initiate profiling and save the results. Unless if you want to\n      use the advanced __builtins__ features, of course.\n\n    * Robust script execution. Many scripts require things like __name__,\n      __file__, and sys.path to be set relative to it. A naive approach at\n      encapsulation would just use execfile(), but many scripts which rely on\n      that information will fail. kernprof will set those variables correctly\n      before executing the script.\n\n    * Easy executable location. If you are profiling an application installed on\n      your PATH, you can just give the name of the executable. If kernprof does\n      not find the given script in the current directory, it will search your\n      PATH for it.\n\n    * Inserting the profiler into __builtins__. Sometimes, you just want to\n      profile a small part of your code. With the [-b/--builtin] argument, the\n      Profiler will be instantiated and inserted into your __builtins__ with the\n      name \"profile\". Like LineProfiler, it may be used as a decorator, or\n      enabled/disabled with ``enable_by_count()`` and ``disable_by_count()``, or\n      even as a context manager with the \"with profile:\" statement.\n\n    * Pre-profiling setup. With the [-s/--setup] option, you can provide\n      a script which will be executed without profiling before executing the\n      main script. This is typically useful for cases where imports of large\n      libraries like wxPython or VTK are interfering with your results. If you\n      can modify your source code, the __builtins__ approach may be\n      easier.\n\nThe results of profile script_to_profile.py will be written to\nscript_to_profile.py.prof by default. It will be a typical marshalled file that\ncan be read with pstats.Stats(). They may be interactively viewed with the\ncommand::\n\n    $ python -m pstats script_to_profile.py.prof\n\n\nSuch files may also be viewed with graphical tools. A list of 3rd party tools\nbuilt on ``cProfile`` or ``line_profiler`` are as follows:\n\n* `pyprof2calltree <pyprof2calltree_>`_: converts profiling data to a format\n  that can be visualized using kcachegrind_ (linux only), wincachegrind_\n  (windows only, unmaintained), or  qcachegrind_.\n\n* `Line Profiler GUI <qt_profiler_gui_>`_: Qt GUI for line_profiler.\n\n* `SnakeViz <SnakeViz_>`_: A web viewer for Python profiling data.\n\n* `SnakeRunner <SnakeRunner_>`_: A fork of RunSnakeRun_, ported to Python 3.\n\n* `Pycharm plugin <pycharm_line_profiler_plugin_>`_: A PyCharm plugin for line_profiler.\n\n* `Spyder plugin <spyder_line_profiler_plugin_>`_: A plugin to run line_profiler from within the Spyder IDE.\n\n* `pprof <web_profiler_ui_>`_: A render web report for ``line_profiler``.\n\n.. _qcachegrind: https://sourceforge.net/projects/qcachegrindwin/\n.. _kcachegrind: https://kcachegrind.github.io/html/Home.html\n.. _wincachegrind: https://github.com/ceefour/wincachegrind\n.. _pyprof2calltree: http://pypi.python.org/pypi/pyprof2calltree/\n.. _SnakeViz: https://github.com/jiffyclub/snakeviz/\n.. _SnakeRunner: https://github.com/venthur/snakerunner\n.. _RunSnakeRun: https://pypi.org/project/RunSnakeRun/\n.. _qt_profiler_gui: https://github.com/Nodd/lineprofilergui\n.. _pycharm_line_profiler_plugin: https://plugins.jetbrains.com/plugin/16536-line-profiler\n.. _spyder_line_profiler_plugin: https://github.com/spyder-ide/spyder-line-profiler\n.. _web_profiler_ui: https://github.com/mirecl/pprof\n\n\nRelated Work\n============\n\nCheck out these other Python profilers:\n\n* `Scalene <https://github.com/plasma-umass/scalene>`_: A CPU+GPU+memory sampling based profiler.\n\n* `PyInstrument  <https://github.com/joerick/pyinstrument>`_: A call stack profiler.\n\n* `Yappi <https://github.com/sumerc/yappi>`_: A tracing profiler that is multithreading, asyncio and gevent aware.\n\n* `profile / cProfile <https://docs.python.org/3/library/profile.html>`_: The builtin profile module.\n\n* `timeit <https://docs.python.org/3/library/timeit.html>`_: The builtin timeit module for profiling single statements.\n\n* `timerit <https://github.com/Erotemic/timerit>`_: A multi-statements alternative to the builtin ``timeit`` module.\n\nFrequently Asked Questions\n==========================\n\n* Why the name \"kernprof\"?\n\n    I didn't manage to come up with a meaningful name, so I named it after\n    myself.\n\n* The line-by-line timings don't add up when one profiled function calls\n  another. What's up with that?\n\n    Let's say you have function F() calling function G(), and you are using\n    LineProfiler on both. The total time reported for G() is less than the time\n    reported on the line in F() that calls G(). The reason is that I'm being\n    reasonably clever (and possibly too clever) in recording the times.\n    Basically, I try to prevent recording the time spent inside LineProfiler\n    doing all of the bookkeeping for each line. Each time Python's tracing\n    facility issues a line event (which happens just before a line actually gets\n    executed), LineProfiler will find two timestamps, one at the beginning\n    before it does anything (t_begin) and one as close to the end as possible\n    (t_end). Almost all of the overhead of LineProfiler's data structures\n    happens in between these two times.\n\n    When a line event comes in, LineProfiler finds the function it belongs to.\n    If it's the first line in the function, we record the line number and\n    *t_end* associated with the function. The next time we see a line event\n    belonging to that function, we take t_begin of the new event and subtract\n    the old t_end from it to find the amount of time spent in the old line. Then\n    we record the new t_end as the active line for this function. This way, we\n    are removing most of LineProfiler's overhead from the results. Well almost.\n    When one profiled function F calls another profiled function G, the line in\n    F that calls G basically records the total time spent executing the line,\n    which includes the time spent inside the profiler while inside G.\n\n    The first time this question was asked, the questioner had the G() function\n    call as part of a larger expression, and he wanted to try to estimate how\n    much time was being spent in the function as opposed to the rest of the\n    expression. My response was that, even if I could remove the effect, it\n    might still be misleading. G() might be called elsewhere, not just from the\n    relevant line in F(). The workaround would be to modify the code to split it\n    up into two lines, one which just assigns the result of G() to a temporary\n    variable and the other with the rest of the expression.\n\n    I am open to suggestions on how to make this more robust. Or simple\n    admonitions against trying to be clever.\n\n* Why do my list comprehensions have so many hits when I use the LineProfiler?\n\n    LineProfiler records the line with the list comprehension once for each\n    iteration of the list comprehension.\n\n* Why is kernprof distributed with line_profiler? It works with just cProfile,\n  right?\n\n    Partly because kernprof.py is essential to using line_profiler effectively,\n    but mostly because I'm lazy and don't want to maintain the overhead of two\n    projects for modules as small as these. However, kernprof.py is\n    a standalone, pure Python script that can be used to do function profiling\n    with just the Python standard library. You may grab it and install it by\n    itself without ``line_profiler``.\n\n* Do I need a C compiler to build ``line_profiler``? kernprof.py?\n\n    You do need a C compiler for line_profiler. kernprof.py is a pure Python\n    script and can be installed separately, though.\n\n* Do I need Cython to build ``line_profiler``?\n\n    Wheels for supported versions of Python are available on PyPI and support\n    linux, osx, and windows for x86-64 architectures. Linux additionally ships\n    with i686 wheels for manylinux and musllinux. If you have a different CPU\n    architecture, or an unsupported Python version, then you will need to build\n    from source.\n\n* What version of Python do I need?\n\n    Both ``line_profiler`` and ``kernprof`` have been tested with Python 3.6-3.11.\n    Older versions of ``line_profiler`` support older versions of Python.\n\n\nTo Do\n=====\n\ncProfile uses a neat \"rotating trees\" data structure to minimize the overhead of\nlooking up and recording entries. LineProfiler uses Python dictionaries and\nextension objects thanks to Cython. This mostly started out as a prototype that\nI wanted to play with as quickly as possible, so I passed on stealing the\nrotating trees for now. As usual, I got it working, and it seems to have\nacceptable performance, so I am much less motivated to use a different strategy\nnow. Maybe later. Contributions accepted!\n\n\nBugs and Such\n=============\n\nBugs and pull requested can be submitted on GitHub_.\n\n.. _GitHub: https://github.com/pyutils/line_profiler\n\n\nChanges\n=======\n\nSee `CHANGELOG`_.\n\n.. _CHANGELOG: CHANGELOG.rst\n\n\n.. |CircleCI| image:: https://circleci.com/gh/pyutils/line_profiler.svg?style=svg\n    :target: https://circleci.com/gh/pyutils/line_profiler\n.. |Travis| image:: https://img.shields.io/travis/pyutils/line_profiler/master.svg?label=Travis%20CI\n   :target: https://travis-ci.org/pyutils/line_profiler?branch=master\n.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/github/pyutils/line_profiler?branch=master&svg=True\n   :target: https://ci.appveyor.com/project/pyutils/line_profiler/branch/master\n.. |Codecov| image:: https://codecov.io/github/pyutils/line_profiler/badge.svg?branch=master&service=github\n   :target: https://codecov.io/github/pyutils/line_profiler?branch=master\n.. |Pypi| image:: https://img.shields.io/pypi/v/line_profiler.svg\n   :target: https://pypi.python.org/pypi/line_profiler\n.. |Downloads| image:: https://img.shields.io/pypi/dm/line_profiler.svg\n   :target: https://pypistats.org/packages/line_profiler\n.. |GithubActions| image:: https://github.com/pyutils/line_profiler/actions/workflows/tests.yml/badge.svg?branch=main\n   :target: https://github.com/pyutils/line_profiler/actions?query=branch%3Amain\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/kernprof/badge/?version=latest\n    :target: http://kernprof.readthedocs.io/en/latest/\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Line-by-line profiler",
    "version": "4.1.2",
    "project_urls": {
        "Homepage": "https://github.com/pyutils/line_profiler"
    },
    "split_keywords": [
        "timing",
        "timer",
        "profiling",
        "profiler",
        "line_profiler"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fca7d5d9ad8790800fd08ec90dc47c74c80a8ae764c126ac696b4b76d2d55e34",
                "md5": "0f7b9b0d727cbceb8ad6654f5742e234",
                "sha256": "4344c1504ad1a57029a8ab30812d967a0917cad7b654077e8787e4a7d7ea3469"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0f7b9b0d727cbceb8ad6654f5742e234",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 209004,
            "upload_time": "2023-11-03T00:10:48",
            "upload_time_iso_8601": "2023-11-03T00:10:48.290460Z",
            "url": "https://files.pythonhosted.org/packages/fc/a7/d5d9ad8790800fd08ec90dc47c74c80a8ae764c126ac696b4b76d2d55e34/line_profiler-4.1.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f9bf28dd9ff10f00973f5a462713a458f639f611bc610d8b1efad57bfc647a8",
                "md5": "21241e9d5f45800f395e9d447b621b0e",
                "sha256": "0720b356db3e9ca297c3260f280c5be3bb4b230eda61ce73b4df5e553418d37a"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21241e9d5f45800f395e9d447b621b0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 131691,
            "upload_time": "2023-11-03T00:10:50",
            "upload_time_iso_8601": "2023-11-03T00:10:50.362295Z",
            "url": "https://files.pythonhosted.org/packages/5f/9b/f28dd9ff10f00973f5a462713a458f639f611bc610d8b1efad57bfc647a8/line_profiler-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ba859fc2d1fa560d16fa29629c58564ef007d05221d4f523c822aaa53943564",
                "md5": "81bd593d16098cfe26c029bd06a99488",
                "sha256": "09f742af37166768f92495bd3d3a71da1ba41d3004307a66c108f29ed947d6e1"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "81bd593d16098cfe26c029bd06a99488",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 127146,
            "upload_time": "2023-11-03T00:10:52",
            "upload_time_iso_8601": "2023-11-03T00:10:52.248621Z",
            "url": "https://files.pythonhosted.org/packages/3b/a8/59fc2d1fa560d16fa29629c58564ef007d05221d4f523c822aaa53943564/line_profiler-4.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8d12ae319217a8e62969029547b4703440cd6dc5d7ac5dbae58e77e8928639e",
                "md5": "811c21c90e33f59f52f655ade336071e",
                "sha256": "443a5df10eb7910df694340c8a81c1668a88bb59ca44149a3291f7b2ae960891"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "811c21c90e33f59f52f655ade336071e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 695975,
            "upload_time": "2023-11-03T00:10:54",
            "upload_time_iso_8601": "2023-11-03T00:10:54.211788Z",
            "url": "https://files.pythonhosted.org/packages/b8/d1/2ae319217a8e62969029547b4703440cd6dc5d7ac5dbae58e77e8928639e/line_profiler-4.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f43dac85a34a722bcbed959d5b256195c0f4b4750d79b0d738e4308f87dd5de",
                "md5": "662dfae6fa7202f66fe1ae83a16be390",
                "sha256": "a906f9d1687eea7e5b22e3bd367d4b63706fcea1906baaad76b1cc4c1142553d"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "662dfae6fa7202f66fe1ae83a16be390",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 714750,
            "upload_time": "2023-11-03T00:10:56",
            "upload_time_iso_8601": "2023-11-03T00:10:56.330584Z",
            "url": "https://files.pythonhosted.org/packages/5f/43/dac85a34a722bcbed959d5b256195c0f4b4750d79b0d738e4308f87dd5de/line_profiler-4.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0754421de19463fd3c0701cdf5a534d186d2f13f4b83555c1fc3bf7818f19c43",
                "md5": "09c442cc6929c3e3f6bfbf2e98316713",
                "sha256": "e3b2c8cc34a776c5cfaa4a4a09a51541efcc9082dce15b19e494000e82576ced"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "09c442cc6929c3e3f6bfbf2e98316713",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1296405,
            "upload_time": "2023-11-03T00:10:58",
            "upload_time_iso_8601": "2023-11-03T00:10:58.282310Z",
            "url": "https://files.pythonhosted.org/packages/07/54/421de19463fd3c0701cdf5a534d186d2f13f4b83555c1fc3bf7818f19c43/line_profiler-4.1.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5a9a23accdd7f0e713b1fec8f2f127acba4ff3a9ec383406dbafa7c3754138a",
                "md5": "4737b94ab89493324dbb885f58e6a667",
                "sha256": "55ca0a78eb8d52515486c374ec53fa9e65e3c4128e8bbc909d8bfce267a91fdd"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4737b94ab89493324dbb885f58e6a667",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1255597,
            "upload_time": "2023-11-03T00:11:00",
            "upload_time_iso_8601": "2023-11-03T00:11:00.791916Z",
            "url": "https://files.pythonhosted.org/packages/e5/a9/a23accdd7f0e713b1fec8f2f127acba4ff3a9ec383406dbafa7c3754138a/line_profiler-4.1.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "064d45538756208f546482814d7aa16c67ddc61113e305cace708c7c979a2bce",
                "md5": "871ef447201d889b9490be3e37275e8c",
                "sha256": "f4a11389f06831d7984b63be0743fbbbae1ffb56fad04b4e538d3e6933b5c265"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "871ef447201d889b9490be3e37275e8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 122623,
            "upload_time": "2023-11-03T00:11:03",
            "upload_time_iso_8601": "2023-11-03T00:11:03.118702Z",
            "url": "https://files.pythonhosted.org/packages/06/4d/45538756208f546482814d7aa16c67ddc61113e305cace708c7c979a2bce/line_profiler-4.1.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f37321fc041531dc1024eab41fe26c3a09a770583c6798ba0c893f0442ccb341",
                "md5": "03feca72c67b60ace9ee968bd486368c",
                "sha256": "32fa07f6fecfd209329559e4ae945dc7bdc0703355c8924bbf19101495b2373f"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "03feca72c67b60ace9ee968bd486368c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 209021,
            "upload_time": "2023-11-03T00:11:04",
            "upload_time_iso_8601": "2023-11-03T00:11:04.772533Z",
            "url": "https://files.pythonhosted.org/packages/f3/73/21fc041531dc1024eab41fe26c3a09a770583c6798ba0c893f0442ccb341/line_profiler-4.1.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b331119db9050ff97cf7a8b99275929b17c9895f345daf9a21b57d8ac7fbe8a0",
                "md5": "0df8b7d803290b000931dd9ec47db6bc",
                "sha256": "6f8e9e8af6660629f214e424613c56a6622cf36d9c638c569c926b21374d7029"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0df8b7d803290b000931dd9ec47db6bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 131848,
            "upload_time": "2023-11-03T00:11:06",
            "upload_time_iso_8601": "2023-11-03T00:11:06.607789Z",
            "url": "https://files.pythonhosted.org/packages/b3/31/119db9050ff97cf7a8b99275929b17c9895f345daf9a21b57d8ac7fbe8a0/line_profiler-4.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4310c5a364fc0d7c8134bfbad45815872a98d4e9a37de43dbb812bcca9fafd9e",
                "md5": "d464b5e9244f7f2a646106a8a230c28c",
                "sha256": "4753113c4e2c30a547937dbc456900d7f3a1b99bc8bc81a640a89306cd729c0f"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d464b5e9244f7f2a646106a8a230c28c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 126998,
            "upload_time": "2023-11-03T00:11:08",
            "upload_time_iso_8601": "2023-11-03T00:11:08.764583Z",
            "url": "https://files.pythonhosted.org/packages/43/10/c5a364fc0d7c8134bfbad45815872a98d4e9a37de43dbb812bcca9fafd9e/line_profiler-4.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "467ef8e205dfb59cdc1b8a85d82a9127f9af2c252eedc98b289aebfc50aa8909",
                "md5": "14934beb74558f391191cfce82b6397e",
                "sha256": "7f0989302404850a2a041ba60afe6c7240aea10fdd9432d5c1d464aca39a0369"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "14934beb74558f391191cfce82b6397e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 724604,
            "upload_time": "2023-11-03T00:11:10",
            "upload_time_iso_8601": "2023-11-03T00:11:10.498272Z",
            "url": "https://files.pythonhosted.org/packages/46/7e/f8e205dfb59cdc1b8a85d82a9127f9af2c252eedc98b289aebfc50aa8909/line_profiler-4.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73cfc56f16ddd8ce89f5905d848eec734a1486eb58cb5dd0ee4dd75212807692",
                "md5": "7fe5adea0b2101f5cb9e324b1938f445",
                "sha256": "9f4b25ee412b0cd624614edd16c4c0af02dbeb73db2a08a49a14b120005a5630"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7fe5adea0b2101f5cb9e324b1938f445",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 745313,
            "upload_time": "2023-11-03T00:11:13",
            "upload_time_iso_8601": "2023-11-03T00:11:13.358354Z",
            "url": "https://files.pythonhosted.org/packages/73/cf/c56f16ddd8ce89f5905d848eec734a1486eb58cb5dd0ee4dd75212807692/line_profiler-4.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd09e204449d07fdb2a2fb260f58b0294b1a9a45ba83f98c280dd615dc099144",
                "md5": "c2ce9c85a9d6352849f8fa11e01093f4",
                "sha256": "93c6a49009ee75dcd8ff644c5fd39eeb8bb672d5a41bacdd239db14ae1ba3098"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c2ce9c85a9d6352849f8fa11e01093f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1320881,
            "upload_time": "2023-11-03T00:11:16",
            "upload_time_iso_8601": "2023-11-03T00:11:16.139877Z",
            "url": "https://files.pythonhosted.org/packages/bd/09/e204449d07fdb2a2fb260f58b0294b1a9a45ba83f98c280dd615dc099144/line_profiler-4.1.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aba19435cb59befd3b9c39f7378f0ab42e1abe7e6e566966054c862b5cd890b",
                "md5": "baed75089c970539432ac01bf902a986",
                "sha256": "b96964cdb306741a01b95d210d634cc79ed70d2904336cbd8f69a9b5f284426d"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baed75089c970539432ac01bf902a986",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1286371,
            "upload_time": "2023-11-03T00:11:18",
            "upload_time_iso_8601": "2023-11-03T00:11:18.559132Z",
            "url": "https://files.pythonhosted.org/packages/7a/ba/19435cb59befd3b9c39f7378f0ab42e1abe7e6e566966054c862b5cd890b/line_profiler-4.1.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e039e56cc08992d8a18647c3297edde089783795c7a3f8e534b755b034bd4c3",
                "md5": "4a28385103162a1134ba418a79435d7d",
                "sha256": "46a8cad2cb4b6a1229ddccf06694b1d01fd5acd1cf8c502caf937765a7c877de"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a28385103162a1134ba418a79435d7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 123616,
            "upload_time": "2023-11-03T00:11:21",
            "upload_time_iso_8601": "2023-11-03T00:11:21.489820Z",
            "url": "https://files.pythonhosted.org/packages/9e/03/9e56cc08992d8a18647c3297edde089783795c7a3f8e534b755b034bd4c3/line_profiler-4.1.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "158e01555e1c1dde7ac320660cab9294d6fccf31f97b95b28f52796bbe7c3fbc",
                "md5": "8ae9945092103179bafbf42ebabed465",
                "sha256": "a102fd8e13abd367379e39fd9426fd60e1e3a39fcd80fa25641618969464c022"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8ae9945092103179bafbf42ebabed465",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 209573,
            "upload_time": "2023-11-03T00:11:24",
            "upload_time_iso_8601": "2023-11-03T00:11:24.210879Z",
            "url": "https://files.pythonhosted.org/packages/15/8e/01555e1c1dde7ac320660cab9294d6fccf31f97b95b28f52796bbe7c3fbc/line_profiler-4.1.2-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c435c3412d0767a4ea760a0d48cb3e19b94009f2d346d42ee7eaaaa7652d0fb",
                "md5": "f25fbac56b751ae5ab757abb7c382cd5",
                "sha256": "44ee51bce974d6b2269492299d4abae6db1b06ae7617760c7436c597dbdbd032"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f25fbac56b751ae5ab757abb7c382cd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 132271,
            "upload_time": "2023-11-03T00:11:26",
            "upload_time_iso_8601": "2023-11-03T00:11:26.320273Z",
            "url": "https://files.pythonhosted.org/packages/7c/43/5c3412d0767a4ea760a0d48cb3e19b94009f2d346d42ee7eaaaa7652d0fb/line_profiler-4.1.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e4a91ad8d5a7ceb3e4a3b2e6b766d2d8c477d280c9c93b02d73d02bfcba199f",
                "md5": "efbf3cebd79d70dd7530f7cd5ab0da5d",
                "sha256": "0e4cafd9a1effe1b9646f6a86716dbd291684fde1f8a297930d845d8a9340299"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "efbf3cebd79d70dd7530f7cd5ab0da5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 127052,
            "upload_time": "2023-11-03T00:11:29",
            "upload_time_iso_8601": "2023-11-03T00:11:29.826076Z",
            "url": "https://files.pythonhosted.org/packages/3e/4a/91ad8d5a7ceb3e4a3b2e6b766d2d8c477d280c9c93b02d73d02bfcba199f/line_profiler-4.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f62f4107ee547b7e5b3778c5159557acdd5c8586b5d057e92a68f790c5c271d2",
                "md5": "eaea0800045706049475d30feed379ac",
                "sha256": "b433a2918e522d6dd0e6bdcf1216cede15c4f201f7eeb0d816114fbac5031cd7"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eaea0800045706049475d30feed379ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 689586,
            "upload_time": "2023-11-03T00:11:32",
            "upload_time_iso_8601": "2023-11-03T00:11:32.406109Z",
            "url": "https://files.pythonhosted.org/packages/f6/2f/4107ee547b7e5b3778c5159557acdd5c8586b5d057e92a68f790c5c271d2/line_profiler-4.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09d5cb2e3246015b113b165f6699b65adc27ce4c5807954ba526cb3c2be7811e",
                "md5": "c5222afdb33501385ae839b9e25c7e99",
                "sha256": "fad96accb1f5cdedfe2e6607f9be86d28196d3f743229e2b67bd28a40f76f133"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5222afdb33501385ae839b9e25c7e99",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 717675,
            "upload_time": "2023-11-03T00:11:34",
            "upload_time_iso_8601": "2023-11-03T00:11:34.774858Z",
            "url": "https://files.pythonhosted.org/packages/09/d5/cb2e3246015b113b165f6699b65adc27ce4c5807954ba526cb3c2be7811e/line_profiler-4.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06bd123b95f03b3a59c4eb383c53cb3eef936df0f2bffc5801c3660872e12e3f",
                "md5": "05810850d2a865131dcb6bbe3d688c2a",
                "sha256": "4eb9df035861f7c2e9852773dff72a3324e2e5aebc0b8c7c2ba22437387ef5e7"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "05810850d2a865131dcb6bbe3d688c2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1285889,
            "upload_time": "2023-11-03T00:11:37",
            "upload_time_iso_8601": "2023-11-03T00:11:37.044340Z",
            "url": "https://files.pythonhosted.org/packages/06/bd/123b95f03b3a59c4eb383c53cb3eef936df0f2bffc5801c3660872e12e3f/line_profiler-4.1.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d61c42d134df45fa4360394d3e1f52d606c4bd741ad650888ad31f77a5d79d66",
                "md5": "03c7d5942697ee1f25885cd16c6b97db",
                "sha256": "e733c0e6626d0e9f1b434da40b93ed1c00ea503f3ced04f5a58c22d1163fe1c1"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03c7d5942697ee1f25885cd16c6b97db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1255605,
            "upload_time": "2023-11-03T00:11:40",
            "upload_time_iso_8601": "2023-11-03T00:11:40.540786Z",
            "url": "https://files.pythonhosted.org/packages/d6/1c/42d134df45fa4360394d3e1f52d606c4bd741ad650888ad31f77a5d79d66/line_profiler-4.1.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "139dbd9a044d4e8aaa2ef086670a2058abc2435ffc628c251d657772712e1ec8",
                "md5": "fa2342ed49094ca2aa8e491a5216b261",
                "sha256": "8cc0c24384e29e99da5627669dbf312a23d11138de0169aa58d4ea5187522ba0"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa2342ed49094ca2aa8e491a5216b261",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 123491,
            "upload_time": "2023-11-03T00:11:43",
            "upload_time_iso_8601": "2023-11-03T00:11:43.742660Z",
            "url": "https://files.pythonhosted.org/packages/13/9d/bd9a044d4e8aaa2ef086670a2058abc2435ffc628c251d657772712e1ec8/line_profiler-4.1.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04cf0535699eef4a186e85a4935ee072b10ab969896454eef0c9ddaa36173d86",
                "md5": "eb9d0a2c27764167a82ccd6bc563af7b",
                "sha256": "900ad7be6d609fb1442200c7757de3534b381d6eeac22fa0135c5d0a900b5787"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb9d0a2c27764167a82ccd6bc563af7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 129275,
            "upload_time": "2023-11-03T00:11:46",
            "upload_time_iso_8601": "2023-11-03T00:11:46.646484Z",
            "url": "https://files.pythonhosted.org/packages/04/cf/0535699eef4a186e85a4935ee072b10ab969896454eef0c9ddaa36173d86/line_profiler-4.1.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78dd66291dc3c2fdee96fe7bc5d49230d20bac956fc7b418596ca313f280580f",
                "md5": "dbf7d911920b9b73eddad568c049b34c",
                "sha256": "49c6c6e19c3c0d7cc8f1641ece9e52fec5e99c56472e26156c16473b7568d374"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dbf7d911920b9b73eddad568c049b34c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 651623,
            "upload_time": "2023-11-03T00:11:49",
            "upload_time_iso_8601": "2023-11-03T00:11:49.070890Z",
            "url": "https://files.pythonhosted.org/packages/78/dd/66291dc3c2fdee96fe7bc5d49230d20bac956fc7b418596ca313f280580f/line_profiler-4.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bd62276bd49cb5d1fe14fd46534025fbd21e319c66f46835a677d6c8e9d3837",
                "md5": "bfd28841a90c80a0cdd9d393cb678840",
                "sha256": "d7ed1edd85f9a005a3e1316b3962a5fc42a159257cf2dfd13d10fcbefaece8ce"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfd28841a90c80a0cdd9d393cb678840",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 669341,
            "upload_time": "2023-11-03T00:11:52",
            "upload_time_iso_8601": "2023-11-03T00:11:52.004892Z",
            "url": "https://files.pythonhosted.org/packages/1b/d6/2276bd49cb5d1fe14fd46534025fbd21e319c66f46835a677d6c8e9d3837/line_profiler-4.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76ce0bad2d6675b4af465a287c80384384eed1e4f334abe83fdc80f9adf1729f",
                "md5": "213e524a38a73b4a3a5e0db2fbfa43cf",
                "sha256": "2ed7027f7d1b3ae9a379a2f407f512b84ccf82d6a3a7b53a90bb17ada61928a9"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "213e524a38a73b4a3a5e0db2fbfa43cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1255227,
            "upload_time": "2023-11-03T00:11:54",
            "upload_time_iso_8601": "2023-11-03T00:11:54.020670Z",
            "url": "https://files.pythonhosted.org/packages/76/ce/0bad2d6675b4af465a287c80384384eed1e4f334abe83fdc80f9adf1729f/line_profiler-4.1.2-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19dbeadff89ca725f2c796e607b155c2a8d4fda8a88510adbd8bd4cf9ce85f5f",
                "md5": "130036e9b37dd25f14c005a885757fed",
                "sha256": "e8537be16b46133ab86d6e805ca83b012b17ef36a7445dd5c89c45ba70b97aad"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "130036e9b37dd25f14c005a885757fed",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1213315,
            "upload_time": "2023-11-03T00:11:55",
            "upload_time_iso_8601": "2023-11-03T00:11:55.838172Z",
            "url": "https://files.pythonhosted.org/packages/19/db/eadff89ca725f2c796e607b155c2a8d4fda8a88510adbd8bd4cf9ce85f5f/line_profiler-4.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "623925828080d634ef9d0c5f9c5ea24caf0e49c5de716712f9f81f17a2b8482a",
                "md5": "9cfdd8901513f5b10d49c291e7f151a8",
                "sha256": "934870b5e451c938f149c5475cc0286133d8718ba99ff4ec04fb1a87f7bfb985"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9cfdd8901513f5b10d49c291e7f151a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 129822,
            "upload_time": "2023-11-03T00:11:57",
            "upload_time_iso_8601": "2023-11-03T00:11:57.883885Z",
            "url": "https://files.pythonhosted.org/packages/62/39/25828080d634ef9d0c5f9c5ea24caf0e49c5de716712f9f81f17a2b8482a/line_profiler-4.1.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82636f8d3237aab0bce5f557c69dee5bb71da8850331f3d4990849df95156756",
                "md5": "3c28c64a9be0c8b03d56a0c709d06e0e",
                "sha256": "dbda8e0bb98b1790ba8819d0a72ee3e11e669c79fc703eaf0e5ed747cac2d441"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c28c64a9be0c8b03d56a0c709d06e0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 130887,
            "upload_time": "2023-11-03T00:11:59",
            "upload_time_iso_8601": "2023-11-03T00:11:59.822058Z",
            "url": "https://files.pythonhosted.org/packages/82/63/6f8d3237aab0bce5f557c69dee5bb71da8850331f3d4990849df95156756/line_profiler-4.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e6e1a291b238ef9c2e86267e4387bddd3c2017c6b62bfb831a4bdb09cd22c23",
                "md5": "4560629be9114224b12ad1473844cff7",
                "sha256": "78cfd263c79927f74f174e32b83e4692e26ada2fefcdfef0c1dae5cfabb37a37"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4560629be9114224b12ad1473844cff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 664543,
            "upload_time": "2023-11-03T00:12:01",
            "upload_time_iso_8601": "2023-11-03T00:12:01.743211Z",
            "url": "https://files.pythonhosted.org/packages/5e/6e/1a291b238ef9c2e86267e4387bddd3c2017c6b62bfb831a4bdb09cd22c23/line_profiler-4.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6646518c227744423cc9cf1bff956d2824ffe64e978cd6b9209317cf2a40c5f3",
                "md5": "2bff67b50ec74773439b188688704651",
                "sha256": "390f5e5dc047a62ffb7dbd236b4d44c6175d4f66aabe654f4b35df9b9aa79d02"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bff67b50ec74773439b188688704651",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 681165,
            "upload_time": "2023-11-03T00:12:04",
            "upload_time_iso_8601": "2023-11-03T00:12:04.100331Z",
            "url": "https://files.pythonhosted.org/packages/66/46/518c227744423cc9cf1bff956d2824ffe64e978cd6b9209317cf2a40c5f3/line_profiler-4.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee343379bc5ac2cc2f14ed0e5f01e0a5eee65c0b9217a2051e6865bdfb0f67dd",
                "md5": "45009498d4a699887fdf4e5ee1a54726",
                "sha256": "dce014572ee599b2d571cf45fbd0c7d5f1a1e822dabe82581e18dd0229b16799"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "45009498d4a699887fdf4e5ee1a54726",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1265858,
            "upload_time": "2023-11-03T00:12:05",
            "upload_time_iso_8601": "2023-11-03T00:12:05.948002Z",
            "url": "https://files.pythonhosted.org/packages/ee/34/3379bc5ac2cc2f14ed0e5f01e0a5eee65c0b9217a2051e6865bdfb0f67dd/line_profiler-4.1.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70e4b446f6fe7252a8538790e71c796a03c3fe49df3fd77fc2168b74cb9427fe",
                "md5": "03539a2062f60c34e66c2b879bef0444",
                "sha256": "4fe92a239d8097a3a0cacb280e0a2455be6633da3c844b784ba011043d090b36"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03539a2062f60c34e66c2b879bef0444",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1224838,
            "upload_time": "2023-11-03T00:12:07",
            "upload_time_iso_8601": "2023-11-03T00:12:07.964941Z",
            "url": "https://files.pythonhosted.org/packages/70/e4/b446f6fe7252a8538790e71c796a03c3fe49df3fd77fc2168b74cb9427fe/line_profiler-4.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3d08010fbbf2dd145fb110796a6c0ee5cbed73f25df10ab7536e6dc4c6fe0b5",
                "md5": "3e22a85e89d2e607ba1ce9d6cd742147",
                "sha256": "3df9b30cdd8b3652e658acb38a9533bac47f2b8f5c320c5a03dbdd378ac11b35"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3e22a85e89d2e607ba1ce9d6cd742147",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 122320,
            "upload_time": "2023-11-03T00:12:10",
            "upload_time_iso_8601": "2023-11-03T00:12:10.223074Z",
            "url": "https://files.pythonhosted.org/packages/a3/d0/8010fbbf2dd145fb110796a6c0ee5cbed73f25df10ab7536e6dc4c6fe0b5/line_profiler-4.1.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c93b7e65298f03ff260901e4baa242242c0dfd504739aef1fbd2b1a836620f49",
                "md5": "402086fd7f5ae45f63532b82a9421983",
                "sha256": "5643cb19c89f6749039452913803a8cfb554c07676f6c00bc96e0632a054abb6"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "402086fd7f5ae45f63532b82a9421983",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 210033,
            "upload_time": "2023-11-03T00:12:11",
            "upload_time_iso_8601": "2023-11-03T00:12:11.881048Z",
            "url": "https://files.pythonhosted.org/packages/c9/3b/7e65298f03ff260901e4baa242242c0dfd504739aef1fbd2b1a836620f49/line_profiler-4.1.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25c103a1b56125ce4d32784af8e95fc6d42b5aaf779a5ec40a4b997908d254a3",
                "md5": "99a0cfc5e8941026475728da3b1280a0",
                "sha256": "163d26586511b68551735052a1bcca173c9d8366573ab4a91c470c7f7bd89967"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99a0cfc5e8941026475728da3b1280a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 132234,
            "upload_time": "2023-11-03T00:12:13",
            "upload_time_iso_8601": "2023-11-03T00:12:13.656054Z",
            "url": "https://files.pythonhosted.org/packages/25/c1/03a1b56125ce4d32784af8e95fc6d42b5aaf779a5ec40a4b997908d254a3/line_profiler-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c132a2a2b6326cea269764bb2308ac639ede6208f7490d3ee5cac09de9c1fcff",
                "md5": "661e494adce13790e8667fef661b8df5",
                "sha256": "8fa3128e93e49ad8b5216e40dc9d2bc2e354e896c1512feead3d6db1668ce649"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "661e494adce13790e8667fef661b8df5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 127619,
            "upload_time": "2023-11-03T00:12:15",
            "upload_time_iso_8601": "2023-11-03T00:12:15.390241Z",
            "url": "https://files.pythonhosted.org/packages/c1/32/a2a2b6326cea269764bb2308ac639ede6208f7490d3ee5cac09de9c1fcff/line_profiler-4.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f17db0e79f28a3338613139cd08c9e6c64b3f98a882f922bf97e20cb244135c",
                "md5": "3247459e279b69df14928af531946f6e",
                "sha256": "1a1eb88cec273300377b364eee9ceffce2e639906bf210e7d7233c88dc87e62f"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3247459e279b69df14928af531946f6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 707754,
            "upload_time": "2023-11-03T00:12:17",
            "upload_time_iso_8601": "2023-11-03T00:12:17.088745Z",
            "url": "https://files.pythonhosted.org/packages/7f/17/db0e79f28a3338613139cd08c9e6c64b3f98a882f922bf97e20cb244135c/line_profiler-4.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98a436438e3410b5e21544d0092fe7eb83422f587d84f85d1a6416befe3a046f",
                "md5": "cd8b504710f3a754ce9045789cc014c1",
                "sha256": "c7f213eeb846c9bc950fd210dfcd0fa93b1d2991f218b8788c0759f06bd00557"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd8b504710f3a754ce9045789cc014c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 725186,
            "upload_time": "2023-11-03T00:12:19",
            "upload_time_iso_8601": "2023-11-03T00:12:19.173359Z",
            "url": "https://files.pythonhosted.org/packages/98/a4/36438e3410b5e21544d0092fe7eb83422f587d84f85d1a6416befe3a046f/line_profiler-4.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9480e6c3f9fe85a4b0dafa4bdbfe2e0fe7eda2af50c6b84095a64e224cbac693",
                "md5": "b50fdad1460857e640a411181c4b14ae",
                "sha256": "ec6f137dbbdc0af6b88a1053c1430681c07a3b2d1719dc1f59be70d464851a23"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b50fdad1460857e640a411181c4b14ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1321598,
            "upload_time": "2023-11-03T00:12:20",
            "upload_time_iso_8601": "2023-11-03T00:12:20.953292Z",
            "url": "https://files.pythonhosted.org/packages/94/80/e6c3f9fe85a4b0dafa4bdbfe2e0fe7eda2af50c6b84095a64e224cbac693/line_profiler-4.1.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bd5b51f81f4b2b41b92a8cc92a656e7da281cca07650490d3f7b22a4f2bdcff",
                "md5": "a1f872c09b6a7ded0e9dddf2be49b43d",
                "sha256": "3af457b2dfad6e2019f7e5bbe9eabac9b2c34824fb2ea574aee7b17998c48c98"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1f872c09b6a7ded0e9dddf2be49b43d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1287908,
            "upload_time": "2023-11-03T00:12:23",
            "upload_time_iso_8601": "2023-11-03T00:12:23.055773Z",
            "url": "https://files.pythonhosted.org/packages/0b/d5/b51f81f4b2b41b92a8cc92a656e7da281cca07650490d3f7b22a4f2bdcff/line_profiler-4.1.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e60ca1079fed955218e924ba9a75688a4ccd50a6de00a9d89a6234efa58076c",
                "md5": "988d8a99d4e791281990e0114e235939",
                "sha256": "9dd72adc753019788ff0498dd686068c4d8e65d38c0eca1b4b58b5719c14fa7d"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "988d8a99d4e791281990e0114e235939",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 123409,
            "upload_time": "2023-11-03T00:12:25",
            "upload_time_iso_8601": "2023-11-03T00:12:25.342766Z",
            "url": "https://files.pythonhosted.org/packages/0e/60/ca1079fed955218e924ba9a75688a4ccd50a6de00a9d89a6234efa58076c/line_profiler-4.1.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a210b21ed547fe08dffed9ad95489c59803063a10195144af82d328d0e858336",
                "md5": "f8110027212fa0e051225c24cb497445",
                "sha256": "62776d67dfc6c358de5c19d606eccbd95e6feb75928064850be0232e9276f751"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f8110027212fa0e051225c24cb497445",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 209836,
            "upload_time": "2023-11-03T00:12:27",
            "upload_time_iso_8601": "2023-11-03T00:12:27.473343Z",
            "url": "https://files.pythonhosted.org/packages/a2/10/b21ed547fe08dffed9ad95489c59803063a10195144af82d328d0e858336/line_profiler-4.1.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92ccd228123d2cf66db83545c2627de86dd2209a2364dac1e00da4fb4568e12d",
                "md5": "33815ab5ca0f7b728ce35239636385a3",
                "sha256": "060d71ba11ff5476d7c10774a34955566bab545ab5ff39231306b4d84081725d"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33815ab5ca0f7b728ce35239636385a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 132080,
            "upload_time": "2023-11-03T00:12:29",
            "upload_time_iso_8601": "2023-11-03T00:12:29.404907Z",
            "url": "https://files.pythonhosted.org/packages/92/cc/d228123d2cf66db83545c2627de86dd2209a2364dac1e00da4fb4568e12d/line_profiler-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ade3e202b53a37ba25ad4775fbefaec615f67850f287df07a484e227ce5fda5",
                "md5": "c55b2a72dff8c49248ad31fc6dfa77f3",
                "sha256": "ad13e1d5a174336508bbf275202822c8898cd1f014881059103b748310d5bc84"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c55b2a72dff8c49248ad31fc6dfa77f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 127602,
            "upload_time": "2023-11-03T00:12:31",
            "upload_time_iso_8601": "2023-11-03T00:12:31.101625Z",
            "url": "https://files.pythonhosted.org/packages/8a/de/3e202b53a37ba25ad4775fbefaec615f67850f287df07a484e227ce5fda5/line_profiler-4.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbfe4d917f366d05e9da2854ee1f666f6a214785824733266f2d4d363c3a86ce",
                "md5": "ea4b3e40d6cc60dc60a185c43381a562",
                "sha256": "d77824dfc1f58dc7fe62fb053aa54586979ef60fea221dcdbba2022608c1314f"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ea4b3e40d6cc60dc60a185c43381a562",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 695721,
            "upload_time": "2023-11-03T00:12:33",
            "upload_time_iso_8601": "2023-11-03T00:12:33.108795Z",
            "url": "https://files.pythonhosted.org/packages/fb/fe/4d917f366d05e9da2854ee1f666f6a214785824733266f2d4d363c3a86ce/line_profiler-4.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a256c434704141bf48223fc86c55d5800c46b999c47fffc5811dab1bb87e0fac",
                "md5": "af17832b621f0b394212bc769f8607aa",
                "sha256": "9c8ffc44a030789f7bc6594de581b39e8da0591fc6c598dd4243cf140b200528"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af17832b621f0b394212bc769f8607aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 715171,
            "upload_time": "2023-11-03T00:12:35",
            "upload_time_iso_8601": "2023-11-03T00:12:35.300134Z",
            "url": "https://files.pythonhosted.org/packages/a2/56/c434704141bf48223fc86c55d5800c46b999c47fffc5811dab1bb87e0fac/line_profiler-4.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa61b9d66054f394a9da6201d41ed8173035ba5097f4174e5c6ffd50751806b7",
                "md5": "5575d252403e0e548ed11774c6b6e563",
                "sha256": "4729820d8da3ed92f14e30dbd28a851eeefe2ba70b8b897f2d9c886ade8007c1"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5575d252403e0e548ed11774c6b6e563",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1294639,
            "upload_time": "2023-11-03T00:12:37",
            "upload_time_iso_8601": "2023-11-03T00:12:37.319560Z",
            "url": "https://files.pythonhosted.org/packages/fa/61/b9d66054f394a9da6201d41ed8173035ba5097f4174e5c6ffd50751806b7/line_profiler-4.1.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fd79a8fdaf9672a3774520c84fdffd9fd81e4f2380e09f06a15e8f4ec5499a1",
                "md5": "1ad05cd9b4d173ae5a9e810ecc7668d1",
                "sha256": "0bce5c04d0daf6dd19348540012b0a6d69206ae40db096de222e6d5f824922e8"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ad05cd9b4d173ae5a9e810ecc7668d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1254509,
            "upload_time": "2023-11-03T00:12:39",
            "upload_time_iso_8601": "2023-11-03T00:12:39.280345Z",
            "url": "https://files.pythonhosted.org/packages/1f/d7/9a8fdaf9672a3774520c84fdffd9fd81e4f2380e09f06a15e8f4ec5499a1/line_profiler-4.1.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08d0fa5fe64401cba09e6d4cbd473063ef83c8d58425673b7a8935b70ab40960",
                "md5": "a02df11ab335308ac4a4a884b3938214",
                "sha256": "a65b70d6ecef4f2e61cf504a5c77085718f1dae9508b21c9058ad483ae7e16ee"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a02df11ab335308ac4a4a884b3938214",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 123156,
            "upload_time": "2023-11-03T00:12:41",
            "upload_time_iso_8601": "2023-11-03T00:12:41.224765Z",
            "url": "https://files.pythonhosted.org/packages/08/d0/fa5fe64401cba09e6d4cbd473063ef83c8d58425673b7a8935b70ab40960/line_profiler-4.1.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ce814bb2ee9af4ecae4c456c5faaab74436ea2b9da55b436341dd1f7c2927f2",
                "md5": "02e6c55ef338d79649cc826f08666b7d",
                "sha256": "aa56578b0ff5a756fe180b3fda7bd67c27bbd478b3d0124612d8cf00e4a21df2"
            },
            "downloads": -1,
            "filename": "line_profiler-4.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "02e6c55ef338d79649cc826f08666b7d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 78149,
            "upload_time": "2023-11-03T00:10:46",
            "upload_time_iso_8601": "2023-11-03T00:10:46.174940Z",
            "url": "https://files.pythonhosted.org/packages/1c/e8/14bb2ee9af4ecae4c456c5faaab74436ea2b9da55b436341dd1f7c2927f2/line_profiler-4.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-03 00:10:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyutils",
    "github_project": "line_profiler",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "requirements": [],
    "lcname": "line-profiler"
}
        
Elapsed time: 0.23366s