Skip to main content

Line-by-line profiler

Project description

Pypi ReadTheDocs Downloads CircleCI GithubActions Codecov

This is the official line_profiler repository. The most recent version of line-profiler on pypi points to this repo. The original line_profiler package by @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.

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.

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:

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.

Changes

See CHANGELOG.

Project details


Download files

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

Source Distribution

line_profiler-4.1.0.tar.gz (77.2 kB view details)

Uploaded Source

Built Distributions

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

line_profiler-4.1.0-cp311-cp311-win_amd64.whl (119.7 kB view details)

Uploaded CPython 3.11Windows x86-64

line_profiler-4.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

line_profiler-4.1.0-cp311-cp311-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

line_profiler-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (749.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

line_profiler-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (728.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

line_profiler-4.1.0-cp311-cp311-macosx_10_9_x86_64.whl (132.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

line_profiler-4.1.0-cp310-cp310-win_amd64.whl (118.4 kB view details)

Uploaded CPython 3.10Windows x86-64

line_profiler-4.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

line_profiler-4.1.0-cp310-cp310-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

line_profiler-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (710.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

line_profiler-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (693.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

line_profiler-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl (132.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

line_profiler-4.1.0-cp39-cp39-win_amd64.whl (118.8 kB view details)

Uploaded CPython 3.9Windows x86-64

line_profiler-4.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

line_profiler-4.1.0-cp39-cp39-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

line_profiler-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

line_profiler-4.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (692.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

line_profiler-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl (132.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

line_profiler-4.1.0-cp38-cp38-win_amd64.whl (119.0 kB view details)

Uploaded CPython 3.8Windows x86-64

line_profiler-4.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

line_profiler-4.1.0-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

line_profiler-4.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (722.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

line_profiler-4.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (704.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

line_profiler-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl (132.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

line_profiler-4.1.0-cp37-cp37m-win_amd64.whl (118.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

line_profiler-4.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

line_profiler-4.1.0-cp37-cp37m-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

line_profiler-4.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

line_profiler-4.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (659.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

line_profiler-4.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (131.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

line_profiler-4.1.0-cp36-cp36m-win_amd64.whl (125.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

line_profiler-4.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

line_profiler-4.1.0-cp36-cp36m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

line_profiler-4.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

line_profiler-4.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (650.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

line_profiler-4.1.0-cp36-cp36m-macosx_10_9_x86_64.whl (128.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: line_profiler-4.1.0.tar.gz
  • Upload date:
  • Size: 77.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for line_profiler-4.1.0.tar.gz
Algorithm Hash digest
SHA256 dd93444373231e624aee354ceaf29ac35889660923cbf912124c9872cf410127
MD5 c2a8d9385c96f4862a00ea5cd5a7f393
BLAKE2b-256 b27b6ef6f4e24a05921b624a740a4a119efc35ee38d8170ffc28e78cc00734b8

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13f7b4cee81393ca6dacaeb3ebbfa104841202d6c6c69c800fae1bbde7244cae
MD5 66a13ee7c89d96cc452dfd792516a6db
BLAKE2b-256 3ba3fba27e2b5d6350dd646e82d1f4c394bfb78085c16da42b96f97602634180

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a736cdccf1f97c210c0c4b932cb8b5895f16a73e974ba32dd200c562c888090b
MD5 3b98d85882ddb8bbc3d80552150dce06
BLAKE2b-256 6633b7beaab030425540115c6c8667f861c93b1cdb5220c85f4f9e4a51f4ea20

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0001c957fa9e164a481cd65e91928f4fbe521e848b283c72b30f3ce22ac2bb84
MD5 e453b11fff88d4b2f48ab10a8b583590
BLAKE2b-256 817c12ad5dcc509f37b5fb530fbf8d7bddbaf77444e6d4b04e728755b2d5b82a

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f79a032554a63181e218cd3eb364afbca4df3dd42abbd876ed4681c99077d2f
MD5 4cce6130077c44ed1730fd799392cd40
BLAKE2b-256 ddea7495dc12db7fac33ae771a6a032c50c3cb6b0eb8ef4a35fbe9da603578ab

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 361823d5b7a00f4384193f499a6052856ffa5ac15a4885f7d96a193659ca7ea1
MD5 b19d7a977279a983e10917fd2a535d5c
BLAKE2b-256 6caf25872e7666659ac481e1bdf9ad458953e0cf204c4ae50b8ccacd4c660e86

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9db0d09f982304f74a0dea273b1a55c9c2c6b429e6e5eb0bbf16f3d0c957a6df
MD5 8cefad4fe7640954f6b481841431d822
BLAKE2b-256 449d2f97f81fbb9f9d7fca7fdb1a02c54a526e1743c3953a5353a9f9817d4297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f220b26e263bacb3c4c39ada33ad6fddeb810e37202b228b8590a993bb558873
MD5 92c5f5e408cdd67a7d28c828a898bbdd
BLAKE2b-256 9d0f3a21ecb175c0a7e08cf8d28df72ad1451e2e0639d0e9924104b43d75b1ce

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3ce9460d5201b28e42d61f2e4c53f50a962674a599a971f16ce00d8c9f158fa6
MD5 bcee49228fec50efe2f16f5f2d43a6f1
BLAKE2b-256 9a2534c043953141eae17a6d983c9160e09d8fdc40a5d4f9ad3317b1ad4fb638

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 558dd5099188320fd5cfd03b446499155f7b08a4752e4bbc1c940754d981b4a4
MD5 0bcd6c1f9bb47542e79f7f52ba601a19
BLAKE2b-256 bf5aed873e1b26a7bb4dea9432b7b742c40d7834025a083ef6a3a440b7723533

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60de42c5a6d02151d86f115aca6647e44ed47bb46cf2de4ea7718096472f62c9
MD5 c1a15af1602cb73bddc1068075a2b0b6
BLAKE2b-256 68c75e79a3af3b4a9d1f114670687ed54e8b02d2c1d2346a5cfba87911d1eaf8

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3fd75a74687c81a82ef70457050546ebdd64f8dabdf31c3497eeeaa13bedf26
MD5 bcf5c1764587d4a20e5d56d4329d1fe9
BLAKE2b-256 13492d4b50adb11bc6ece7e1197af552690806195c34d650b12f771c2431e064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5986f4ae3b84fe3986bb5079df8f0ff7b1212831508b3ea283a66a0bed29ee4
MD5 ca395e58e22f61791707ae543eb0d5fc
BLAKE2b-256 94969d56563c2e386a678998d58302bc0d063e4c1680735930c2c51f73a7f4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a82649c7f50e50c48125386434ca80e718c401bc65080a03ca862ebc4fab0440
MD5 9a828da07d432f21537785defb31415e
BLAKE2b-256 48bd262c9808f605ba445667b0e333fa178cc1a4baeb343e03cc3b8b77be8151

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6ae40c37744ef97731aae8b4c413ce4d6277733aa5614c3f1e2242716c41b2e
MD5 37d5ccfe6791d4d9367f8a98de67d4f9
BLAKE2b-256 2716a4511dd1f096e34bca3a26c08f4cf5c5f3b20f30ede96757b0ed6bf579a8

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 57adfc47a87d109d304e6463b583fd53b1191c5b663a204b7512a27b460e4ac2
MD5 4d09526551695e784bb4c9c6e9ed2ddb
BLAKE2b-256 63795f3e6862b7c838e2641930b63e971408da4f8f1d61555c2d47ecd9a5084a

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43aacb880d3b25bf47a3c1c1870bbee6ff4e533de5382636431f321a4d5dbe66
MD5 df2c4584f7dbb0ca7ba9c6f44c762cfb
BLAKE2b-256 2df594863f6847708d3cb61d65825b826468ef74a98442face84da55e5602c55

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23e1aa55a233cd64eb46b769362aab0e3004feabdebb9bf94eb3acea1a204748
MD5 7c284654b3514036c4f2701c204b37bb
BLAKE2b-256 91ee121d5a124121d45205c0d1185a7884cd257f22631a93e2d470348c73c80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 950fd857238dd019274d1206b2440de749e631fd9f76f8c9ba6b1374cb0da2fc
MD5 0ae5c8b03af23043df88ed76a8aa63c0
BLAKE2b-256 a74cb9d20ceb11024f9d21361a5efd3bffcab4c3b362919e4b3871fcfca8a5c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 34be7a8f305c7d625f6c40ac465010cd77c92383372869e9ba2fa5d85e4a63ae
MD5 48bc0fa0415f6cd6e07f0d50a21734d6
BLAKE2b-256 1a04f592cdf1e2bfd5c744e38e9061962e61d54077978c436157bd7b96a57278

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7debb28f33611aea8c54c86fbb8464ed58cd185bc26c829dc8581cc68b87f276
MD5 5920f99bf87084c8b425e144ddcf898b
BLAKE2b-256 dcba3e23256c7d0f947456159de6e0e8054a1253ddb34668384f76a3265bce25

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4e20e1c0bf3fd899a54ec74786463c754a852542f2aee9c357344279286a147b
MD5 eb422e3644854876e53dcb5f2448403c
BLAKE2b-256 b93ae1537c257d9c8d0fcbde9e99f74e76dcbe1d578d0db45761fda0193cc0b3

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32866bdebbc322a708d29d4b9f90c606f498d56a55132fcd316fb8ed2aba577c
MD5 52a494bf0677995f05f6723f585e0739
BLAKE2b-256 eb683da10a49ffa784847982025ab6bdb5bb25e56caf0079b2acf6b1c15ddbb0

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f553f225aac5443bf5cf32040041d08c74f17f408d0eb654dcb29fe8fb657a32
MD5 188ebff3fafad68dbdde8ad79e5444ab
BLAKE2b-256 a8d2c1e4f067b72436f636c25a2b7394b17740c7282ff01cb55bd8eef8b9c860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18b511dd9bfe457c76bebf7c2f486f2896433e83c97aa6fff7686115be6c1ca9
MD5 a81ecec96b84edabafdc911b5956c8a1
BLAKE2b-256 09f5667020ad9e58a41f0bb02cfa6fc30da02b2ea7d9b7bf4a850d1d70ae87a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b0be243fee8b599f0ce55088cb780050dad58f74dce2f6c2e8776d31f9ca9b1d
MD5 462e57c8659fbc03d708de2cb1f40796
BLAKE2b-256 24f64ecdb893b93c99610aeb437fd322e0f812494571f6c7207277b66a80ac2b

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7a1a2b99fc99bcdeb6e5e8d7dff27fa382f278b2522b610ead27a3d39c94be5
MD5 30a56ea1927a1348a9dd8cc1a594274c
BLAKE2b-256 7e40a901be62e8580fbbced145966cf71d36d5b88043c32f8f00103d8a13d8cf

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 09c71fe28a03c089e64891bb7084a11f58703592fe078b9f565185d25ee28586
MD5 39e3d228586b04e14e76bb65d1b35687
BLAKE2b-256 4edbb69eff4c746e67e72bae7f2b811e60498f9c646a9b7c3986d69007e2a125

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d6629e636ca6c15e6fb3800e5ee7c3ce14f1326c1954bceea7574083f0264d
MD5 592b5a5a486cc88092219119b5093472
BLAKE2b-256 83f3374e8d6627a7db0c3c6ace78860e161a7a76db1af23e3f8ce8cb276aa45c

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b1e02f1bec7752a5e4c33dc2f5c7f2dd09d9c4da86c85f7301ed7a3847409ac
MD5 3ee1f6047d911007eab4d373cb80a051
BLAKE2b-256 3c613d6861eacd0c7f16bad039ceca58ee8268a203a2a48735488c757d850bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc1b53dc4af9b67a9a123592e29176465ad19c1d3d0ec59b684280227bf5f955
MD5 ef45d0c7c063ca7039508f5536010726
BLAKE2b-256 87ebb8836b4af5d0e81e6d61def7cdbec5b0de8387630f7b10ffb3746044f256

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f0194dbb70f63b2d7753d1ba7a5cb96313c4205812a593704f1abea095dd2989
MD5 f92ff4bafe9f8332ef9b982faed32a61
BLAKE2b-256 520b3f8172764a70040c67043272aaa6eeb7ffe0a92a7d1871c3b7d541bb0463

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b9953f0becfdbc11c8f15a314a8d8869a1a475fa94d411d38d42c438b1a5689f
MD5 c8d0e4171d9fed74a856aa8bf59ee656
BLAKE2b-256 f6ce0034e1972e6a1c24147cd2a79dbc61bb932f79838c383c1784b0991482bd

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b2dc1423364f4c9bf7abb8bf1e5c18c35c6c4c514b35754ac7bc2e7a4e3618af
MD5 cad630832e8f765db8d3dd3363f6320a
BLAKE2b-256 ce34c0df01f1ee02bde9a0b96d2a3afe200b8adb53052ba8623967a7b96d5667

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02208c84e534d56e21454d3d9d7f7e1c313e0d134425f2487a76d283e3294a16
MD5 7fd4f00ee438db1a340332b36f0da9d9
BLAKE2b-256 6f37344439fff6d36a6b338197fa583aa6c926dd1b0ddb084a4dccf3fe6d7531

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55bdc109355712d57231a5071592b6c49719914e1d7a9d9153a657508ea17607
MD5 3c64d50d2bcb540843613742ff5ee770
BLAKE2b-256 acd8b26943e3e0bfe7c9670319e370c305550df1ac183e66bad60bb08d4a44f1

See more details on using hashes here.

File details

Details for the file line_profiler-4.1.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for line_profiler-4.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 edfc8df182191757316e407f550269d1f58256911a7e8b5ded6f32aa0195ec66
MD5 a47bb46630c7be733536040f18104b7c
BLAKE2b-256 5ce3d84a3758d1cfa8dfb51605d282ea48943855ddbd02053ff01c5f8cf0c0f1

See more details on using hashes here.

Supported by

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