austin-dist


Nameaustin-dist JSON
Version 3.7.0 PyPI version JSON
download
home_pageNone
SummaryAustin - Frame Stack Sampler for CPython
upload_time2024-10-14 19:22:42
maintainerNone
docs_urlNone
authorGabriele N. Tornetta
requires_pythonNone
licenseGPLv3+
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center"><img src="art/austin_die_cut_sticker.png" alt="Austin"></p>

<h3 align="center">A Frame Stack Sampler for CPython</h3>

<p align="center">
  <img src="art/tux.svg"
       height="24px" />
  &nbsp;&nbsp;&nbsp;&nbsp;
  <img src="art/apple.svg" />
  &nbsp;&nbsp;&nbsp;&nbsp;
  <img src="art/win.svg"
       height="24px" />
</p>

<p align="center">
  <a href="https://github.com/P403n1x87/austin/actions?query=workflow%3ATests"><img src="https://github.com/P403n1x87/austin/actions/workflows/tests.yml/badge.svg" alt="GitHub Action Status: Tests" /></a>
  <a href="https://github.com/P403n1x87/austin/actions?query=workflow%3AChecks"><img src="https://github.com/P403n1x87/austin/actions/workflows/checks.yml/badge.svg" alt="GitHub Action Status: Checks" /></a>
  <a href="https://codecov.io/gh/P403n1x87/austin"><img src="https://codecov.io/gh/P403n1x87/austin/branch/master/graph/badge.svg?token=OEDWB2IYBR" alt="Code coverage"/></a>
  <a href="https://github.com/P403n1x87/austin/releases/latest"><img src="http://img.shields.io/github/v/release/p403n1x87/austin" alt="latest release" /></a>
  <a href="https://github.com/P403n1x87/austin/blob/master/LICENSE.md"><img src="https://img.shields.io/badge/license-GPLv3-ff69b4.svg" alt="LICENSE" /></a>

  <br/>
  <a href="https://badge.fury.io/py/austin-dist"><img src="https://badge.fury.io/py/austin-dist.svg" alt="PyPI version"></a>
  <a href="https://chocolatey.org/packages/austin/"><img src="https://img.shields.io/chocolatey/v/austin" alt="Chocolatey Version" /></a>
  <a href="https://anaconda.org/conda-forge/austin"><img src="https://img.shields.io/conda/vn/conda-forge/austin.svg" alt="Conda Version" /></a>
  <!-- <a href="https://packages.debian.org/unstable/austin">
    <img src="https://badges.debian.net/badges/debian/unstable/austin/version.svg"
         alt="Debian package status" />
  </a> -->
  <a href="https://formulae.brew.sh/formula/austin"><img src="https://img.shields.io/homebrew/v/austin" alt="homebrew" /></a>
  <a href="https://snapcraft.io/austin"><img src="https://snapcraft.io/austin/badge.svg" alt="austin Snap Store Build Status" /></a>

</p>

<p align="center">
  <a href="https://snapcraft.io/austin" title="Get it from the Snap Store">
    <img src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg"
         alt="Get it from the Snap Store" />
  </a>
</p>

<p align="center">
  <a href="#synopsis"><b>Synopsis</b></a>&nbsp;&bull;
  <a href="#installation"><b>Installation</b></a>&nbsp;&bull;
  <a href="#usage"><b>Usage</b></a>&nbsp;&bull;
  <a href="#cheat-sheet"><b>Cheat sheet</b></a>&nbsp;&bull;
  <a href="#compatibility"><b>Compatibility</b></a>&nbsp;&bull;
  <a href="#why--austin"><b>Why <img src="art/austin_logo.svg" height="20px" /> Austin</b></a>&nbsp;&bull;
  <a href="#examples"><b>Examples</b></a>&nbsp;&bull;
  <a href="#contribute"><b>Contribute</b></a>
</p>

<p align="center">
  <a href="https://www.buymeacoffee.com/Q9C1Hnm28" target="_blank">
    <img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png"
         alt="Buy Me A Coffee" />
  </a>
</p>

----

<p align="center"><i>This is the nicest profiler I’ve found for Python. It’s
cross-platform, doesn’t need me to change the code that’s being profiled, and
its output can be piped directly into <code>flamegraph.pl</code>. I just used it
to pinpoint a gross misuse of SQLAlchemy at work that’s run in some code at the
end of each day, and now I can go home earlier.</i><br/><br/>-- gthm on <a
href="https://lobste.rs/s/qairy5/austin_python_frame_stack_sampler_for">lobste.rs</a></p>

<p align="center"><i>If people are looking for a profiler, Austin looks pretty
cool. Check it out!</i><br/><br/>-- Michael Kennedy on <a
href="https://www.youtube.com/watch?v=eFgybynhMrs">Python Bytes 180</a></p>

<p align="center"> <a href="https://twitter.com/AustinSampler">Follow <img
src="art/austin_logo.svg" height="20px" /> on <img
src="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Twitter_bird_logo_2012.svg/1024px-Twitter_bird_logo_2012.svg.png"
height="18px" alt="Twitter" /></a>
</p>

----


# Synopsis

Austin is a Python frame stack sampler for CPython written in pure C. Samples
are collected by reading the CPython interpreter virtual memory space to
retrieve information about the currently running threads along with the stack of
the frames that are being executed. Hence, one can use Austin to easily make
powerful statistical profilers that have minimal impact on the target
application and that don't require any instrumentation.


The key features of Austin are:
- Zero instrumentation;
- Minimal impact;
- Fast and lightweight;
- Time and memory profiling;
- Built-in support for multi-process applications (e.g. `mod_wsgi`).

The simplest way to turn Austin into a full-fledged profiler is to use together
with the [VS
Code](https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode)
extension or combine it with [FlameGraph] or [Speedscope]. However, Austin's
simple output format can be piped into any other external or custom tool for
further processing. Look, for instance, at the following Python TUI


<p align="center">
  <img src="art/austin-tui.png"
       style="box-shadow: #111 0px 0px 16px;" />
</p>

Check out [A Survey of Open-Source Python
Profilers](https://www.usenix.org/system/files/login/articles/login_winter19_12_norton.pdf)
by Peter Norton for a general overview of Austin.

Keep reading for more tool ideas and examples!

---

<p align="center">💜</br><i>Austin is a free and open-source project. A lot of
effort goes into its development to ensure the best performance and that it
stays up-to-date with the latest Python releases. If you find it useful,
consider <a href="https://github.com/sponsors/P403n1x87">sponsoring</a> this
project.</i></br>🙏</p>

---

# Installation

Austin is available to install from [PyPI](pypi) and from the major software
repositories of the most popular platforms. Check out the [latest release] page
for pre-compiled binaries and installation packages.

On all supported platforms and architectures, Austin can be installed from PyPI
with `pip` or `pipx` via the commands

~~~
pip install austin-dist
~~~
or
~~~
pipx install austin-dist
~~~

On Linux, it can be installed using `autotools` or as a snap from the [Snap
Store](https://snapcraft.io/store). The latter will automatically perform the
steps of the `autotools` method with a single command. On distributions derived
from Debian, Austin can be installed from the official repositories with
`apt`. Anaconda users can install Austin from [Conda Forge].

On Windows, Austin can be easily installed from the command line using either
[Chocolatey] or [Scoop]. Alternatively, you can download the installer from the
[latest release] page.

On macOS, Austin can be easily installed from the command line using [Homebrew].
Anaconda users can install Austin from [Conda Forge].

For any other platforms, compiling Austin from sources is as easy as cloning the
repository and running the C compiler. The [Releases][releases] page has many
pre-compiled binaries that are ready to be uncompressed and used.

## With `autotools`

Installing Austin using `autotools` amounts to the usual `./configure`, `make`
and `make install` finger gymnastic. The only dependency is the standard C
library. Before proceeding with the steps below, make sure that the `autotools`
are installed on your system. Refer to your distro's documentation for details
on how to do so.

~~~ console
git clone --depth=1 https://github.com/P403n1x87/austin.git && cd austin
autoreconf --install
./configure
make
make install
~~~

> **NOTE** Some Linux distributions, like Manjaro, might require the execution
> of `automake --add-missing` before `./configure`.

Alternatively, sources can be compiled with just a C compiler (see below).


## From the Snap Store

Austin can be installed on [many major Linux
distributions](https://snapcraft.io/docs/installing-snapd) from the Snap Store
with the following command

~~~ console
sudo snap install austin --classic
~~~


## On Debian and Derivatives

On March 30 2019 Austin was accepted into the official Debian repositories and
can therefore be installed with the `apt` utility.

~~~ console
sudo apt update -y && sudo apt install austin -y
~~~

## On macOS

Austin can be installed on macOS using [Homebrew](https://docs.brew.sh):

~~~ console
brew install austin
~~~


## From Chocolatey

To install [Austin from Chocolatey](https://chocolatey.org/packages/austin), run
the following command from the command line or from PowerShell

~~~ console
choco install austin
~~~

To upgrade run the following command from the command line or from PowerShell:

~~~ console
choco upgrade austin
~~~


## From Scoop

To install Austin using Scoop, run the following command from the command line
or PowerShell

~~~ console
scoop install austin
~~~

To upgrade run the following command from the command line or PowerShell:

~~~ console
scoop update
~~~


## From Conda Forge

Anaconda users on Linux and macOS can install Austin from [Conda Forge] with the
command

~~~ console
conda install -c conda-forge austin
~~~

## From Sources without `autotools`

To install Austin from sources using the GNU C compiler, without `autotools`,
clone the repository with

~~~ console
git clone --depth=1 https://github.com/P403n1x87/austin.git
~~~

On Linux, one can then use the command

~~~ console
gcc -O3 -Os -Wall -pthread src/*.c -o src/austin
~~~

whereas on macOS it is enough to run

~~~ console
gcc -O3 -Os -Wall src/*.c -o src/austin
~~~

On Windows, the `-lpsapi -lntdll` switches are needed

~~~ console
gcc -O3 -Os -Wall -lpsapi -lntdll src/*.c -o src/austin
~~~

Add `-DDEBUG` if you need a more verbose log. This is useful if you encounter a
bug with Austin and you want to report it here.


# Usage

<!-- [[[cog
from subprocess import check_output
print("~~~")
print(check_output(["src/austin", "--help"]).decode().strip())
print("~~~")
]]] -->
~~~
Usage: austin [OPTION...] command [ARG...]
Austin is a frame stack sampler for CPython that is used to extract profiling
data out of a running Python process (and all its children, if required) that
requires no instrumentation and has practically no impact on the tracee.

  -b, --binary               Emit data in the MOJO binary format. See
                             https://github.com/P403n1x87/austin/wiki/The-MOJO-file-format
                             for more details.
  -C, --children             Attach to child processes.
  -f, --full                 Produce the full set of metrics (time +mem -mem).
  -g, --gc                   Sample the garbage collector state.
  -h, --heap=n_mb            Maximum heap size to allocate to increase sampling
                             accuracy, in MB (default is 0).
  -i, --interval=n_us        Sampling interval in microseconds (default is
                             100). Accepted units: s, ms, us.
  -m, --memory               Profile memory usage.
  -o, --output=FILE          Specify an output file for the collected samples.
  -p, --pid=PID              Attach to the process with the given PID.
  -P, --pipe                 Pipe mode. Use when piping Austin output.
  -s, --sleepless            Suppress idle samples to estimate CPU time.
  -t, --timeout=n_ms         Start up wait time in milliseconds (default is
                             100). Accepted units: s, ms.
  -w, --where=PID            Dump the stacks of all the threads within the
                             process with the given PID.
  -x, --exposure=n_sec       Sample for n_sec seconds only.
  -?, --help                 Give this help list
      --usage                Give a short usage message
  -V, --version              Print program version

Mandatory or optional arguments to long options are also mandatory or optional
for any corresponding short options.

Report bugs to <https://github.com/P403n1x87/austin/issues>.
~~~
<!-- [[[end]]] -->

The output is a sequence of frame stack samples, one on each line. The format is
the collapsed one that is recognised by [FlameGraph] so that it can be piped
straight to `flamegraph.pl` for a quick visualisation, or redirected to a file
for some further processing.

By default, each line has the following structure:

~~~
P<pid>;T<iid>:<tid>[;[frame]]* [metric]*
~~~

where the structure of `[frame]` and the number and type of metrics on each line
depend on the mode. The `<pid>`, `<iid>` and `<tid>` component represent the
process ID, the sub-interpreter ID, and the thread ID respectively.


## Environment variables

Some behaviour of Austin can be configured via environment variables.

| Variable            | Effect                                                      |
| ------------------- | ----------------------------------------------------------- |
| `AUSTIN_NO_LOGGING` | Disables all [log messages](#logging) (since Austin 3.4.0). |


## Normal Mode

In normal mode, the `[frame]` part of each emitted sample has the structure

~~~
[frame] := <module>:<function>:<line number>
~~~

Each line then ends with a single `[metric]`, i.e. the sampling time measured in
microseconds.


> **NOTE** This was changed in Austin 3. In previous version, the alternative
> format used to be the default one.


## Binary Mode

The output generated by Austin by default can be quickly visualised by some
existing tools without further processing. However, this comes at the cost of
potentially big raw output files. The binary mode can be used to produce a more
compact binary representation of the collected data, and more efficiently, by
exploiting the performance enhancement of internal caching of frame data.

The `mojo2austin` CLI tool that comes with the [`austin-python`] Python package
can be used to convert a MOJO file back to the standard Austin output. Be aware
that the resulting file might be quite large, well over 4 times the size of the
MOJO file itself.

More details about the [MOJO] binary format can be found in the [Wiki].

*Since Austin 3.4.0*.


## Column-level Location Information

Since Python 3.11, code objects carry finer-grained location information at the
column level. When using the binary MOJO format, Austin can extract this extra
location information when profiling code running with versions of the
interpreter that expose this data.

*Since Austin 3.5.0*.


## Memory and Full Metrics

When profiling in memory mode with the `-m` or `--memory` switch, the metric
value at the end of each line is the memory delta between samples, measured in
bytes. In full mode (`-f` or `--full` switches), each sample ends with a
comma-separated list of three values: the time delta, the idle state (1 for
idle, 0 otherwise) and the RSS memory delta (positive for memory allocations,
negative for deallocations). This way it is possible to estimate wall-clock
time, CPU time and memory pressure, all from a single run.

> **NOTE** The reported memory allocations and deallocations are obtained by
> computing resident memory deltas between samples. Hence these values give an
> idea of how much _physical_ memory is being requested/released.


## Multi-process Applications

Austin can be told to profile multi-process applications with the `-C` or
`--children` switch. This way Austin will look for new children of the parent
process.


## Sub-interpreters

Austin has support for Python applications that make use of sub-interpreters.
This means that Austin will sample all the sub-interpreters that are running
within each process making up the Python application.

*Since Austin 3.6.0*.


## Garbage Collector Sampling

Austin can sample the Python garbage collector state for applications running
with Python 3.7 and later versions. If the `-g`/`--gc` option is passed, Austin
will append `:GC:` at the end of each collected frame stack whenever the garbage
collector is collecting. This gives you a measure of how *busy* the Python GC is
during a run.

*Since Austin 3.1.0*.


## Where?

If you are only interested in what is currently happening inside a Python
process, you can have a quick overview printed on the terminal with the
`-w/--where` option. This takes the PID of the process whose threads you want to
inspect, e.g.

~~~ console
sudo austin -w `pgrep -f my-running-python-app`
~~~

Below is an example of what the output looks like

<p align="center">
  <img src="art/austin-where.png"
       alt="Austin where mode example"
       style="box-shadow: #111 0px 0px 16px;" />
</p>

This works with the `-C/--children` option too. The emojis to the left indicate
whether the thread is active or sleeping and whether the process is a child or
not.

*Since Austin 3.3.0*.


## Sampling Accuracy

Austin tries to keep perturbations to the tracee at a minimum. To do so, the
tracee is never halted. To improve sampling accuracy, Austin can allocate a heap
that is used to get large snapshots of the private VM of the tracee that is
likely to contain frame information in a single attempt. The larger the heap is
allowed the grow, the more accurate the results. The maximum size of the heap
that Austin is allowed to allocate can be controlled with the `-h/--heap`
option, followed by the maximum size in bytes. By default, Austin does not
allocate a heap, which is ideal for systems with limited resources. If you think
your results are not accurate, try setting this parameter.

*Since Austin 3.2.0*.

*Changed in Austin 3.3.0*: the default heap size is 0.


## Native Frame Stack

If you want observability into the native frame stacks, you can use the
`austinp` variant of `austin` which can be obtained by compiling the source
with `-DAUSTINP` on Linux, or from the released binaries.

`austinp` makes use of `ptrace` to halt the application and grab a
snapshot of the call stack with `libunwind`. If you are compiling `austinp` from
sources make sure that you have the development version of the `libunwind`
library available on your system, for example on Ubuntu,

~~~ console
sudo apt install libunwind-dev binutils-dev
~~~

and compile with

~~~ console
gcc -O3 -Os -Wall -pthread src/*.c -DAUSTINP -lunwind-ptrace -lunwind-generic -lbfd -o src/austinp
~~~

then use as per normal. The extra `-k/--kernel` option is available with
`austinp` which allows sampling kernel call stacks as well.

> **WARNING** Since `austinp` uses `ptrace`, the impact on the tracee is no
> longer minimal and it becomes higher at smaller sampling intervals. Therefore
> the use of `austinp` is not recommended in production environments. For this
> reason, the default sampling interval for `austinp` is 10 milliseconds.

The `austinp-resolve` tool from the [`austin-python`] Python package can be used
to resolve the VM addresses to source and line numbers, provided that the
referenced binaries have DWARF debug symbols. Internally, the tool uses
`addr2line(1)` to determine the source name and line number given an address,
when possible.

> Whilst `austinp` comes with a stripped-down implementation of `addr2line`, it
> is only used for the "where" option, as resolving symbols at runtime is
> expensive. This is to minimise the impact of austinp on the tracee, increase
> accuracy and maximise the sampling rate.

The [where](#where) option is also available for the `austinp` variant and will
show both native and Python frames. Highlighting helps tell frames apart. The
`-k` option outputs Linux kernel frames too, as shown in this example

<p align="center">
  <img src="art/austin-where-kernel.png"
       alt="Austin where mode example"
       style="box-shadow: #111 0px 0px 16px;" />
</p>

> **NOTE** If you have installed Austin from the Snap Store, the `austinp`
> executable will be available as `austin.p` from the command line.


## Logging

Austin uses `syslog` on Linux and macOS, and `%TEMP%\austin.log` on Windows
for log messages, so make sure to watch these to get execution details and
statistics. _Bad_ frames are output together with the other frames. In general,
entries for bad frames will not be visible in a flame graph as all tests show
error rates below 1% on average.

Logging can be disabled using [environment variables](#environment-variables).


## Cheat sheet

All the above Austin options and arguments are summarised in a cheat sheet that
you can find in the [doc](https://github.com/P403n1x87/austin/blob/master/doc/)
folder in either the SVG, PDF or PNG format

<p align="center">
  <img src="doc/cheatsheet.png"
       style="box-shadow: #111 0px 0px 16px;" />
</p>

# Compatibility

Austin supports Python 3.8 through 3.13, and has been tested on the following
platforms and architectures

|             | <img src="art/tux.svg" /> | <img src="art/win.svg"/> | <img src="art/apple.svg"/> |
| ----------- | ------------------------- | ------------------------ | -------------------------- |
| **x86_64**  | ✓                         | ✓                        | ✓                          |
| **i686**    | ✓                         |                          | ✓                          |
| **armv7**   | ✓                         |                          |                            |
| **arm64**   | ✓                         |                          | ✓                          |
| **ppc64le** | ✓                         |                          |                            |

> **NOTE** Austin *might* work with other versions of Python on all the
> platforms and architectures above. So it is worth giving it a try even if
> your system is not listed below. If you are looking for support for Python <
> 3.8, you can use Austin 3.5.

Because of platform-specific details, Austin usage may vary slightly. Below are
further compatibility details to be aware of.


## On Linux

Austin requires the `CAP_SYS_PTRACE` capability to attach to an external
process. This means that you will have to either use ``sudo`` when attaching to
a running Python process or grant the CAP_SYS_PTRACE capability to the Austin
binary with, e.g.

~~~ console
sudo setcap cap_sys_ptrace+ep `which austin`
~~~

To use Austin with Docker, the `--cap-add SYS_PTRACE` option needs to be passed
when starting a container.


## On MacOS

Due to the **System Integrity Protection**, introduced in **MacOS** with El
Capitan, and the [Hardened Runtime][hardened runtime], introduced in Mojave,
Austin cannot profile Python processes that use an executable located in the
`/bin` folder, or code-signed, even with `sudo`. This is the case for the
system-provided version of Python, and the one installed with the official
installers from [python.org](https://python.org). Other installation methods,
like [pyenv][pyenv] or [Anaconda][anaconda] or
[Homebrew](https://formulae.brew.sh/formula/austin) are known to work with
Austin, out of the box.

To use Austin with Python from the official installer, you could remove the
signature from the binaries with
~~~ console
codesign --remove-signature /Library/Frameworks/Python.framework/Versions/<M.m>/bin/python3
codesign --remove-signature /Library/Frameworks/Python.framework/Versions/<M.m>/Resources/Python.app/Contents/MacOS/Python
~~~
Alternatively, you could self-sign the Austin binary with the [Debugging Tool
Entitlement][dte], as done for debugging tools like GDB. However, this method
has not been tested.

> Austin requires the use of `sudo` to work on MacOS. To avoid having to type
> the password every time you use Austin, consider adding a rule to the
> `sudoers` file, e.g.
> ~~~
> yourusername  ALL = (root) NOPASSWD: /usr/local/bin/austin
> ~~~


# Why Austin

When there already are similar tools out there, it's normal to wonder why one
should be interested in yet another one. So here is a list of features that
currently distinguish Austin.

- **Written in pure C** Austin is written in pure C code. There are no
  dependencies on third-party libraries except for the standard C library and
  the API provided by the Operating System.

- **Just a sampler** Austin is just a frame stack sampler. It looks into a
  running Python application at regular intervals of time and dumps whatever
  frame stack it finds. The samples can then be analysed at a later time so that
  Austin can sample at rates higher than other non-C alternatives that perform
  some aggregations at run-time.

- **Simple output, powerful tools** Austin uses the collapsed stack format of
  FlameGraph that is easy to parse. You can then go and build your own tool to
  analyse Austin's output. You could even make a _player_ that replays the
  application execution in slow motion, so that you can see what has happened in
  temporal order.

- **Small size** Austin compiles to a single binary executable of just a bunch
of KB.

- **Easy to maintain** Occasionally, the Python C API changes and Austin will
need to be adjusted to new releases. However, given that Austin, like CPython,
is written in C, implementing the new changes is rather straight-forward.


# Examples

The following flame graph has been obtained with the command

~~~ console
austin -i 1ms ./test.py | sed '/^#/d' | ./flamegraph.pl --countname=μs > test.svg
~~~

where the sample `test.py` script has the execute permission and the following
content

~~~ python
#!/usr/bin/env python3

import dis

for i in range(1000):
    dis.dis(dis.dis)
~~~

<object data="art/dis_fg.svg" type="image/svg+xml" width="100%" >
  <img src="art/dis_fg.svg" style="width:100%;"/>
</object>

To profile Apache2 WSGI application, one can attach Austin to the web server
with

~~~ console
austin -Cp `pgrep apache2 | head -n 1`
~~~

Any child processes will be automatically detected as they are created and
Austin will sample them too.


## IDE Extensions

It is easy to write your own extension for your favourite text editor. This, for
example, is a demo of a [Visual Studio Code] extension that highlights the most
hit lines of code straight into the editor

<p align="center">
  <img src="art/vscode-demo.gif"
       style="box-shadow: #111 0px 0px 16px;" />
</p>


## Austin TUI

The [Austin TUI] is a text-based user interface for Austin that gives you a
top-like view of what is currently running inside a Python application. It is
most useful for scripts that have long-running procedures as you can see where
execution is at without tracing instructions in your code. You can also save the
collected data from within the TUI and feed it to Flame Graph for visualisation,
or convert it to the [pprof] format.

If you want to give it a go you can install it using `pip` with

~~~ console
pip install austin-tui --upgrade
~~~

and run it with

~~~ console
austin-tui [OPTION...] command [ARG...]
~~~

with the same command line as Austin. Please note that the `austin` binary
should be available from within the `PATH` environment variable in order for the
TUI to work.

> The TUI is based on `python-curses`. The version included with the standard
> Windows installations of Python is broken so it won't work out of the box. A
> solution is to install the wheel of the port to Windows from
> [this](https://www.lfd.uci.edu/~gohlke/pythonlibs/#curses) page. Wheel files
> can be installed directly with `pip`, as described in the
> [linked](https://pip.pypa.io/en/latest/user_guide/#installing-from-wheels)
> page.

<!-- ![austin-tui thread navigation](art/austin-tui_threads_nav.gif) -->
<p align="center">
  <img src="art/austin-tui.gif"
       style="box-shadow: #111 0px 0px 16px;" />
</p>


## Austin Web

[Austin Web] is a web application that wraps around Austin. At its core, Austin
Web is based on [d3-flame-graph] to display a _live_ flame graph in the browser,
that refreshes every 3 seconds with newly collected samples. Austin Web can also
be used for _remote_ profiling by setting the `--host` and `--port` options.

If you want to give it a go you can install it using `pip` with

~~~ console
pip install austin-web --upgrade
~~~

and run it with

~~~ console
austin-web [OPTION...] command [ARG...]
~~~

with the same command line as Austin. This starts a simple HTTP server that
serves on `localhost` by default. When no explicit port is given, Austin Web
will use an ephemeral one.

Please note that the `austin` binary should be available from within the `PATH`
environment variable in order for Austin Web to work.

<p align="center">
  <img src="art/austin-web.gif"
       style="box-shadow: #111 0px 0px 16px;" />
</p>


## Speedscope

Austin output is now supported by [Speedscope]. However, the [`austin-python`]
library comes with format conversion tools that allow converting the output from
Austin to the Speedscope JSON format.

If you want to give it a go you can install it using `pip` with

~~~ console
pip install austin-python --upgrade
~~~

and run it with

~~~ console
austin2speedscope [-h] [--indent INDENT] [-V] input output
~~~

where `input` is a file containing the output from Austin and `output` is the
name of the JSON file to use to save the result of the conversion, ready to be
used on [Speedscope].

<p align="center">
  <img src="art/speedscope.png"
       style="box-shadow: #111 0px 0px 16px;" />
</p>

## Google pprof

Austin's format can also be converted to the Google pprof format using the
`austin2pprof` utility that comes with [`austin-python`]. If you want to give it
a go you can install it using `pip` with

~~~ console
pip install austin-python --upgrade
~~~

and run it with

~~~ console
austin2pprof [-h] [-V] input output
~~~

where `input` is a file containing the output from Austin and `output` is the
name of the protobuf file to use to save the result of the conversion, ready to
be used with [Google's pprof tools][pprof].


# Contribute

If you like Austin and you find it useful, there are ways for you to contribute.

If you want to help with the development, then have a look at the open issues
and have a look at the [contributing guidelines](CONTRIBUTING.md) before you
open a pull request.

You can also contribute to the development of the Austin by becoming a sponsor
and/or by [buying me a coffee](https://www.buymeacoffee.com/Q9C1Hnm28) on BMC or
by chipping in a few pennies on [PayPal.Me](https://www.paypal.me/gtornetta/1).

<p align="center">
  <a href="https://www.buymeacoffee.com/Q9C1Hnm28"
     target="_blank">
  <img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png"
       alt="Buy Me A Coffee" />
  </a>
</p>


----

<p align="center">
  <a href="https://twitter.com/AustinSampler">
    Follow <img src="art/austin_logo.svg" height="20px" /> on <img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Twitter_bird_logo_2012.svg/1024px-Twitter_bird_logo_2012.svg.png" height="18px" alt="Twitter" />
  </a>
</p>


[anaconda]: https://www.anaconda.com/
[`austin-python`]: https://github.com/P403n1x87/austin-python
[Austin TUI]: https://github.com/P403n1x87/austin-tui
[Austin Web]: https://github.com/P403n1x87/austin-web
[Chocolatey]: https://chocolatey.org/
[Conda Forge]: https://anaconda.org/conda-forge/austin
[d3-flame-graph]: https://github.com/spiermar/d3-flame-graph
[dte]: https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_debugger
[FlameGraph]: https://github.com/brendangregg/FlameGraph
[hardened runtime]: https://developer.apple.com/documentation/security/hardened_runtime
[Homebrew]: https://formulae.brew.sh/formula/austin
[latest release]: https://github.com/P403n1x87/austin/releases/latest
[MOJO]: https://github.com/P403n1x87/austin/wiki/The-MOJO-file-format
[pprof]: https://github.com/google/pprof
[pyenv]: https://github.com/pyenv/pyenv
[pypi]: https://pypi.org/project/austin-dist/
[releases]: https://github.com/P403n1x87/austin/releases
[Scoop]: https://scoop.sh/
[Speedscope]: https://speedscope.app
[Visual Studio Code]: https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode
[Wiki]: https://github.com/P403n1x87/austin/wiki


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "austin-dist",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Gabriele N. Tornetta",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "<p align=\"center\"><img src=\"art/austin_die_cut_sticker.png\" alt=\"Austin\"></p>\n\n<h3 align=\"center\">A Frame Stack Sampler for CPython</h3>\n\n<p align=\"center\">\n  <img src=\"art/tux.svg\"\n       height=\"24px\" />\n  &nbsp;&nbsp;&nbsp;&nbsp;\n  <img src=\"art/apple.svg\" />\n  &nbsp;&nbsp;&nbsp;&nbsp;\n  <img src=\"art/win.svg\"\n       height=\"24px\" />\n</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/P403n1x87/austin/actions?query=workflow%3ATests\"><img src=\"https://github.com/P403n1x87/austin/actions/workflows/tests.yml/badge.svg\" alt=\"GitHub Action Status: Tests\" /></a>\n  <a href=\"https://github.com/P403n1x87/austin/actions?query=workflow%3AChecks\"><img src=\"https://github.com/P403n1x87/austin/actions/workflows/checks.yml/badge.svg\" alt=\"GitHub Action Status: Checks\" /></a>\n  <a href=\"https://codecov.io/gh/P403n1x87/austin\"><img src=\"https://codecov.io/gh/P403n1x87/austin/branch/master/graph/badge.svg?token=OEDWB2IYBR\" alt=\"Code coverage\"/></a>\n  <a href=\"https://github.com/P403n1x87/austin/releases/latest\"><img src=\"http://img.shields.io/github/v/release/p403n1x87/austin\" alt=\"latest release\" /></a>\n  <a href=\"https://github.com/P403n1x87/austin/blob/master/LICENSE.md\"><img src=\"https://img.shields.io/badge/license-GPLv3-ff69b4.svg\" alt=\"LICENSE\" /></a>\n\n  <br/>\n  <a href=\"https://badge.fury.io/py/austin-dist\"><img src=\"https://badge.fury.io/py/austin-dist.svg\" alt=\"PyPI version\"></a>\n  <a href=\"https://chocolatey.org/packages/austin/\"><img src=\"https://img.shields.io/chocolatey/v/austin\" alt=\"Chocolatey Version\" /></a>\n  <a href=\"https://anaconda.org/conda-forge/austin\"><img src=\"https://img.shields.io/conda/vn/conda-forge/austin.svg\" alt=\"Conda Version\" /></a>\n  <!-- <a href=\"https://packages.debian.org/unstable/austin\">\n    <img src=\"https://badges.debian.net/badges/debian/unstable/austin/version.svg\"\n         alt=\"Debian package status\" />\n  </a> -->\n  <a href=\"https://formulae.brew.sh/formula/austin\"><img src=\"https://img.shields.io/homebrew/v/austin\" alt=\"homebrew\" /></a>\n  <a href=\"https://snapcraft.io/austin\"><img src=\"https://snapcraft.io/austin/badge.svg\" alt=\"austin Snap Store Build Status\" /></a>\n\n</p>\n\n<p align=\"center\">\n  <a href=\"https://snapcraft.io/austin\" title=\"Get it from the Snap Store\">\n    <img src=\"https://snapcraft.io/static/images/badges/en/snap-store-black.svg\"\n         alt=\"Get it from the Snap Store\" />\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"#synopsis\"><b>Synopsis</b></a>&nbsp;&bull;\n  <a href=\"#installation\"><b>Installation</b></a>&nbsp;&bull;\n  <a href=\"#usage\"><b>Usage</b></a>&nbsp;&bull;\n  <a href=\"#cheat-sheet\"><b>Cheat sheet</b></a>&nbsp;&bull;\n  <a href=\"#compatibility\"><b>Compatibility</b></a>&nbsp;&bull;\n  <a href=\"#why--austin\"><b>Why <img src=\"art/austin_logo.svg\" height=\"20px\" /> Austin</b></a>&nbsp;&bull;\n  <a href=\"#examples\"><b>Examples</b></a>&nbsp;&bull;\n  <a href=\"#contribute\"><b>Contribute</b></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://www.buymeacoffee.com/Q9C1Hnm28\" target=\"_blank\">\n    <img src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\"\n         alt=\"Buy Me A Coffee\" />\n  </a>\n</p>\n\n----\n\n<p align=\"center\"><i>This is the nicest profiler I\u2019ve found for Python. It\u2019s\ncross-platform, doesn\u2019t need me to change the code that\u2019s being profiled, and\nits output can be piped directly into <code>flamegraph.pl</code>. I just used it\nto pinpoint a gross misuse of SQLAlchemy at work that\u2019s run in some code at the\nend of each day, and now I can go home earlier.</i><br/><br/>-- gthm on <a\nhref=\"https://lobste.rs/s/qairy5/austin_python_frame_stack_sampler_for\">lobste.rs</a></p>\n\n<p align=\"center\"><i>If people are looking for a profiler, Austin looks pretty\ncool. Check it out!</i><br/><br/>-- Michael Kennedy on <a\nhref=\"https://www.youtube.com/watch?v=eFgybynhMrs\">Python Bytes 180</a></p>\n\n<p align=\"center\"> <a href=\"https://twitter.com/AustinSampler\">Follow <img\nsrc=\"art/austin_logo.svg\" height=\"20px\" /> on <img\nsrc=\"https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Twitter_bird_logo_2012.svg/1024px-Twitter_bird_logo_2012.svg.png\"\nheight=\"18px\" alt=\"Twitter\" /></a>\n</p>\n\n----\n\n\n# Synopsis\n\nAustin is a Python frame stack sampler for CPython written in pure C. Samples\nare collected by reading the CPython interpreter virtual memory space to\nretrieve information about the currently running threads along with the stack of\nthe frames that are being executed. Hence, one can use Austin to easily make\npowerful statistical profilers that have minimal impact on the target\napplication and that don't require any instrumentation.\n\n\nThe key features of Austin are:\n- Zero instrumentation;\n- Minimal impact;\n- Fast and lightweight;\n- Time and memory profiling;\n- Built-in support for multi-process applications (e.g. `mod_wsgi`).\n\nThe simplest way to turn Austin into a full-fledged profiler is to use together\nwith the [VS\nCode](https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode)\nextension or combine it with [FlameGraph] or [Speedscope]. However, Austin's\nsimple output format can be piped into any other external or custom tool for\nfurther processing. Look, for instance, at the following Python TUI\n\n\n<p align=\"center\">\n  <img src=\"art/austin-tui.png\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\nCheck out [A Survey of Open-Source Python\nProfilers](https://www.usenix.org/system/files/login/articles/login_winter19_12_norton.pdf)\nby Peter Norton for a general overview of Austin.\n\nKeep reading for more tool ideas and examples!\n\n---\n\n<p align=\"center\">\ud83d\udc9c</br><i>Austin is a free and open-source project. A lot of\neffort goes into its development to ensure the best performance and that it\nstays up-to-date with the latest Python releases. If you find it useful,\nconsider <a href=\"https://github.com/sponsors/P403n1x87\">sponsoring</a> this\nproject.</i></br>\ud83d\ude4f</p>\n\n---\n\n# Installation\n\nAustin is available to install from [PyPI](pypi) and from the major software\nrepositories of the most popular platforms. Check out the [latest release] page\nfor pre-compiled binaries and installation packages.\n\nOn all supported platforms and architectures, Austin can be installed from PyPI\nwith `pip` or `pipx` via the commands\n\n~~~\npip install austin-dist\n~~~\nor\n~~~\npipx install austin-dist\n~~~\n\nOn Linux, it can be installed using `autotools` or as a snap from the [Snap\nStore](https://snapcraft.io/store). The latter will automatically perform the\nsteps of the `autotools` method with a single command. On distributions derived\nfrom Debian, Austin can be installed from the official repositories with\n`apt`. Anaconda users can install Austin from [Conda Forge].\n\nOn Windows, Austin can be easily installed from the command line using either\n[Chocolatey] or [Scoop]. Alternatively, you can download the installer from the\n[latest release] page.\n\nOn macOS, Austin can be easily installed from the command line using [Homebrew].\nAnaconda users can install Austin from [Conda Forge].\n\nFor any other platforms, compiling Austin from sources is as easy as cloning the\nrepository and running the C compiler. The [Releases][releases] page has many\npre-compiled binaries that are ready to be uncompressed and used.\n\n## With `autotools`\n\nInstalling Austin using `autotools` amounts to the usual `./configure`, `make`\nand `make install` finger gymnastic. The only dependency is the standard C\nlibrary. Before proceeding with the steps below, make sure that the `autotools`\nare installed on your system. Refer to your distro's documentation for details\non how to do so.\n\n~~~ console\ngit clone --depth=1 https://github.com/P403n1x87/austin.git && cd austin\nautoreconf --install\n./configure\nmake\nmake install\n~~~\n\n> **NOTE** Some Linux distributions, like Manjaro, might require the execution\n> of `automake --add-missing` before `./configure`.\n\nAlternatively, sources can be compiled with just a C compiler (see below).\n\n\n## From the Snap Store\n\nAustin can be installed on [many major Linux\ndistributions](https://snapcraft.io/docs/installing-snapd) from the Snap Store\nwith the following command\n\n~~~ console\nsudo snap install austin --classic\n~~~\n\n\n## On Debian and Derivatives\n\nOn March 30 2019 Austin was accepted into the official Debian repositories and\ncan therefore be installed with the `apt` utility.\n\n~~~ console\nsudo apt update -y && sudo apt install austin -y\n~~~\n\n## On macOS\n\nAustin can be installed on macOS using [Homebrew](https://docs.brew.sh):\n\n~~~ console\nbrew install austin\n~~~\n\n\n## From Chocolatey\n\nTo install [Austin from Chocolatey](https://chocolatey.org/packages/austin), run\nthe following command from the command line or from PowerShell\n\n~~~ console\nchoco install austin\n~~~\n\nTo upgrade run the following command from the command line or from PowerShell:\n\n~~~ console\nchoco upgrade austin\n~~~\n\n\n## From Scoop\n\nTo install Austin using Scoop, run the following command from the command line\nor PowerShell\n\n~~~ console\nscoop install austin\n~~~\n\nTo upgrade run the following command from the command line or PowerShell:\n\n~~~ console\nscoop update\n~~~\n\n\n## From Conda Forge\n\nAnaconda users on Linux and macOS can install Austin from [Conda Forge] with the\ncommand\n\n~~~ console\nconda install -c conda-forge austin\n~~~\n\n## From Sources without `autotools`\n\nTo install Austin from sources using the GNU C compiler, without `autotools`,\nclone the repository with\n\n~~~ console\ngit clone --depth=1 https://github.com/P403n1x87/austin.git\n~~~\n\nOn Linux, one can then use the command\n\n~~~ console\ngcc -O3 -Os -Wall -pthread src/*.c -o src/austin\n~~~\n\nwhereas on macOS it is enough to run\n\n~~~ console\ngcc -O3 -Os -Wall src/*.c -o src/austin\n~~~\n\nOn Windows, the `-lpsapi -lntdll` switches are needed\n\n~~~ console\ngcc -O3 -Os -Wall -lpsapi -lntdll src/*.c -o src/austin\n~~~\n\nAdd `-DDEBUG` if you need a more verbose log. This is useful if you encounter a\nbug with Austin and you want to report it here.\n\n\n# Usage\n\n<!-- [[[cog\nfrom subprocess import check_output\nprint(\"~~~\")\nprint(check_output([\"src/austin\", \"--help\"]).decode().strip())\nprint(\"~~~\")\n]]] -->\n~~~\nUsage: austin [OPTION...] command [ARG...]\nAustin is a frame stack sampler for CPython that is used to extract profiling\ndata out of a running Python process (and all its children, if required) that\nrequires no instrumentation and has practically no impact on the tracee.\n\n  -b, --binary               Emit data in the MOJO binary format. See\n                             https://github.com/P403n1x87/austin/wiki/The-MOJO-file-format\n                             for more details.\n  -C, --children             Attach to child processes.\n  -f, --full                 Produce the full set of metrics (time +mem -mem).\n  -g, --gc                   Sample the garbage collector state.\n  -h, --heap=n_mb            Maximum heap size to allocate to increase sampling\n                             accuracy, in MB (default is 0).\n  -i, --interval=n_us        Sampling interval in microseconds (default is\n                             100). Accepted units: s, ms, us.\n  -m, --memory               Profile memory usage.\n  -o, --output=FILE          Specify an output file for the collected samples.\n  -p, --pid=PID              Attach to the process with the given PID.\n  -P, --pipe                 Pipe mode. Use when piping Austin output.\n  -s, --sleepless            Suppress idle samples to estimate CPU time.\n  -t, --timeout=n_ms         Start up wait time in milliseconds (default is\n                             100). Accepted units: s, ms.\n  -w, --where=PID            Dump the stacks of all the threads within the\n                             process with the given PID.\n  -x, --exposure=n_sec       Sample for n_sec seconds only.\n  -?, --help                 Give this help list\n      --usage                Give a short usage message\n  -V, --version              Print program version\n\nMandatory or optional arguments to long options are also mandatory or optional\nfor any corresponding short options.\n\nReport bugs to <https://github.com/P403n1x87/austin/issues>.\n~~~\n<!-- [[[end]]] -->\n\nThe output is a sequence of frame stack samples, one on each line. The format is\nthe collapsed one that is recognised by [FlameGraph] so that it can be piped\nstraight to `flamegraph.pl` for a quick visualisation, or redirected to a file\nfor some further processing.\n\nBy default, each line has the following structure:\n\n~~~\nP<pid>;T<iid>:<tid>[;[frame]]* [metric]*\n~~~\n\nwhere the structure of `[frame]` and the number and type of metrics on each line\ndepend on the mode. The `<pid>`, `<iid>` and `<tid>` component represent the\nprocess ID, the sub-interpreter ID, and the thread ID respectively.\n\n\n## Environment variables\n\nSome behaviour of Austin can be configured via environment variables.\n\n| Variable            | Effect                                                      |\n| ------------------- | ----------------------------------------------------------- |\n| `AUSTIN_NO_LOGGING` | Disables all [log messages](#logging) (since Austin 3.4.0). |\n\n\n## Normal Mode\n\nIn normal mode, the `[frame]` part of each emitted sample has the structure\n\n~~~\n[frame] := <module>:<function>:<line number>\n~~~\n\nEach line then ends with a single `[metric]`, i.e. the sampling time measured in\nmicroseconds.\n\n\n> **NOTE** This was changed in Austin 3. In previous version, the alternative\n> format used to be the default one.\n\n\n## Binary Mode\n\nThe output generated by Austin by default can be quickly visualised by some\nexisting tools without further processing. However, this comes at the cost of\npotentially big raw output files. The binary mode can be used to produce a more\ncompact binary representation of the collected data, and more efficiently, by\nexploiting the performance enhancement of internal caching of frame data.\n\nThe `mojo2austin` CLI tool that comes with the [`austin-python`] Python package\ncan be used to convert a MOJO file back to the standard Austin output. Be aware\nthat the resulting file might be quite large, well over 4 times the size of the\nMOJO file itself.\n\nMore details about the [MOJO] binary format can be found in the [Wiki].\n\n*Since Austin 3.4.0*.\n\n\n## Column-level Location Information\n\nSince Python 3.11, code objects carry finer-grained location information at the\ncolumn level. When using the binary MOJO format, Austin can extract this extra\nlocation information when profiling code running with versions of the\ninterpreter that expose this data.\n\n*Since Austin 3.5.0*.\n\n\n## Memory and Full Metrics\n\nWhen profiling in memory mode with the `-m` or `--memory` switch, the metric\nvalue at the end of each line is the memory delta between samples, measured in\nbytes. In full mode (`-f` or `--full` switches), each sample ends with a\ncomma-separated list of three values: the time delta, the idle state (1 for\nidle, 0 otherwise) and the RSS memory delta (positive for memory allocations,\nnegative for deallocations). This way it is possible to estimate wall-clock\ntime, CPU time and memory pressure, all from a single run.\n\n> **NOTE** The reported memory allocations and deallocations are obtained by\n> computing resident memory deltas between samples. Hence these values give an\n> idea of how much _physical_ memory is being requested/released.\n\n\n## Multi-process Applications\n\nAustin can be told to profile multi-process applications with the `-C` or\n`--children` switch. This way Austin will look for new children of the parent\nprocess.\n\n\n## Sub-interpreters\n\nAustin has support for Python applications that make use of sub-interpreters.\nThis means that Austin will sample all the sub-interpreters that are running\nwithin each process making up the Python application.\n\n*Since Austin 3.6.0*.\n\n\n## Garbage Collector Sampling\n\nAustin can sample the Python garbage collector state for applications running\nwith Python 3.7 and later versions. If the `-g`/`--gc` option is passed, Austin\nwill append `:GC:` at the end of each collected frame stack whenever the garbage\ncollector is collecting. This gives you a measure of how *busy* the Python GC is\nduring a run.\n\n*Since Austin 3.1.0*.\n\n\n## Where?\n\nIf you are only interested in what is currently happening inside a Python\nprocess, you can have a quick overview printed on the terminal with the\n`-w/--where` option. This takes the PID of the process whose threads you want to\ninspect, e.g.\n\n~~~ console\nsudo austin -w `pgrep -f my-running-python-app`\n~~~\n\nBelow is an example of what the output looks like\n\n<p align=\"center\">\n  <img src=\"art/austin-where.png\"\n       alt=\"Austin where mode example\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\nThis works with the `-C/--children` option too. The emojis to the left indicate\nwhether the thread is active or sleeping and whether the process is a child or\nnot.\n\n*Since Austin 3.3.0*.\n\n\n## Sampling Accuracy\n\nAustin tries to keep perturbations to the tracee at a minimum. To do so, the\ntracee is never halted. To improve sampling accuracy, Austin can allocate a heap\nthat is used to get large snapshots of the private VM of the tracee that is\nlikely to contain frame information in a single attempt. The larger the heap is\nallowed the grow, the more accurate the results. The maximum size of the heap\nthat Austin is allowed to allocate can be controlled with the `-h/--heap`\noption, followed by the maximum size in bytes. By default, Austin does not\nallocate a heap, which is ideal for systems with limited resources. If you think\nyour results are not accurate, try setting this parameter.\n\n*Since Austin 3.2.0*.\n\n*Changed in Austin 3.3.0*: the default heap size is 0.\n\n\n## Native Frame Stack\n\nIf you want observability into the native frame stacks, you can use the\n`austinp` variant of `austin` which can be obtained by compiling the source\nwith `-DAUSTINP` on Linux, or from the released binaries.\n\n`austinp` makes use of `ptrace` to halt the application and grab a\nsnapshot of the call stack with `libunwind`. If you are compiling `austinp` from\nsources make sure that you have the development version of the `libunwind`\nlibrary available on your system, for example on Ubuntu,\n\n~~~ console\nsudo apt install libunwind-dev binutils-dev\n~~~\n\nand compile with\n\n~~~ console\ngcc -O3 -Os -Wall -pthread src/*.c -DAUSTINP -lunwind-ptrace -lunwind-generic -lbfd -o src/austinp\n~~~\n\nthen use as per normal. The extra `-k/--kernel` option is available with\n`austinp` which allows sampling kernel call stacks as well.\n\n> **WARNING** Since `austinp` uses `ptrace`, the impact on the tracee is no\n> longer minimal and it becomes higher at smaller sampling intervals. Therefore\n> the use of `austinp` is not recommended in production environments. For this\n> reason, the default sampling interval for `austinp` is 10 milliseconds.\n\nThe `austinp-resolve` tool from the [`austin-python`] Python package can be used\nto resolve the VM addresses to source and line numbers, provided that the\nreferenced binaries have DWARF debug symbols. Internally, the tool uses\n`addr2line(1)` to determine the source name and line number given an address,\nwhen possible.\n\n> Whilst `austinp` comes with a stripped-down implementation of `addr2line`, it\n> is only used for the \"where\" option, as resolving symbols at runtime is\n> expensive. This is to minimise the impact of austinp on the tracee, increase\n> accuracy and maximise the sampling rate.\n\nThe [where](#where) option is also available for the `austinp` variant and will\nshow both native and Python frames. Highlighting helps tell frames apart. The\n`-k` option outputs Linux kernel frames too, as shown in this example\n\n<p align=\"center\">\n  <img src=\"art/austin-where-kernel.png\"\n       alt=\"Austin where mode example\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\n> **NOTE** If you have installed Austin from the Snap Store, the `austinp`\n> executable will be available as `austin.p` from the command line.\n\n\n## Logging\n\nAustin uses `syslog` on Linux and macOS, and `%TEMP%\\austin.log` on Windows\nfor log messages, so make sure to watch these to get execution details and\nstatistics. _Bad_ frames are output together with the other frames. In general,\nentries for bad frames will not be visible in a flame graph as all tests show\nerror rates below 1% on average.\n\nLogging can be disabled using [environment variables](#environment-variables).\n\n\n## Cheat sheet\n\nAll the above Austin options and arguments are summarised in a cheat sheet that\nyou can find in the [doc](https://github.com/P403n1x87/austin/blob/master/doc/)\nfolder in either the SVG, PDF or PNG format\n\n<p align=\"center\">\n  <img src=\"doc/cheatsheet.png\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\n# Compatibility\n\nAustin supports Python 3.8 through 3.13, and has been tested on the following\nplatforms and architectures\n\n|             | <img src=\"art/tux.svg\" /> | <img src=\"art/win.svg\"/> | <img src=\"art/apple.svg\"/> |\n| ----------- | ------------------------- | ------------------------ | -------------------------- |\n| **x86_64**  | \u2713                         | \u2713                        | \u2713                          |\n| **i686**    | \u2713                         |                          | \u2713                          |\n| **armv7**   | \u2713                         |                          |                            |\n| **arm64**   | \u2713                         |                          | \u2713                          |\n| **ppc64le** | \u2713                         |                          |                            |\n\n> **NOTE** Austin *might* work with other versions of Python on all the\n> platforms and architectures above. So it is worth giving it a try even if\n> your system is not listed below. If you are looking for support for Python <\n> 3.8, you can use Austin 3.5.\n\nBecause of platform-specific details, Austin usage may vary slightly. Below are\nfurther compatibility details to be aware of.\n\n\n## On Linux\n\nAustin requires the `CAP_SYS_PTRACE` capability to attach to an external\nprocess. This means that you will have to either use ``sudo`` when attaching to\na running Python process or grant the CAP_SYS_PTRACE capability to the Austin\nbinary with, e.g.\n\n~~~ console\nsudo setcap cap_sys_ptrace+ep `which austin`\n~~~\n\nTo use Austin with Docker, the `--cap-add SYS_PTRACE` option needs to be passed\nwhen starting a container.\n\n\n## On MacOS\n\nDue to the **System Integrity Protection**, introduced in **MacOS** with El\nCapitan, and the [Hardened Runtime][hardened runtime], introduced in Mojave,\nAustin cannot profile Python processes that use an executable located in the\n`/bin` folder, or code-signed, even with `sudo`. This is the case for the\nsystem-provided version of Python, and the one installed with the official\ninstallers from [python.org](https://python.org). Other installation methods,\nlike [pyenv][pyenv] or [Anaconda][anaconda] or\n[Homebrew](https://formulae.brew.sh/formula/austin) are known to work with\nAustin, out of the box.\n\nTo use Austin with Python from the official installer, you could remove the\nsignature from the binaries with\n~~~ console\ncodesign --remove-signature /Library/Frameworks/Python.framework/Versions/<M.m>/bin/python3\ncodesign --remove-signature /Library/Frameworks/Python.framework/Versions/<M.m>/Resources/Python.app/Contents/MacOS/Python\n~~~\nAlternatively, you could self-sign the Austin binary with the [Debugging Tool\nEntitlement][dte], as done for debugging tools like GDB. However, this method\nhas not been tested.\n\n> Austin requires the use of `sudo` to work on MacOS. To avoid having to type\n> the password every time you use Austin, consider adding a rule to the\n> `sudoers` file, e.g.\n> ~~~\n> yourusername  ALL = (root) NOPASSWD: /usr/local/bin/austin\n> ~~~\n\n\n# Why Austin\n\nWhen there already are similar tools out there, it's normal to wonder why one\nshould be interested in yet another one. So here is a list of features that\ncurrently distinguish Austin.\n\n- **Written in pure C** Austin is written in pure C code. There are no\n  dependencies on third-party libraries except for the standard C library and\n  the API provided by the Operating System.\n\n- **Just a sampler** Austin is just a frame stack sampler. It looks into a\n  running Python application at regular intervals of time and dumps whatever\n  frame stack it finds. The samples can then be analysed at a later time so that\n  Austin can sample at rates higher than other non-C alternatives that perform\n  some aggregations at run-time.\n\n- **Simple output, powerful tools** Austin uses the collapsed stack format of\n  FlameGraph that is easy to parse. You can then go and build your own tool to\n  analyse Austin's output. You could even make a _player_ that replays the\n  application execution in slow motion, so that you can see what has happened in\n  temporal order.\n\n- **Small size** Austin compiles to a single binary executable of just a bunch\nof KB.\n\n- **Easy to maintain** Occasionally, the Python C API changes and Austin will\nneed to be adjusted to new releases. However, given that Austin, like CPython,\nis written in C, implementing the new changes is rather straight-forward.\n\n\n# Examples\n\nThe following flame graph has been obtained with the command\n\n~~~ console\naustin -i 1ms ./test.py | sed '/^#/d' | ./flamegraph.pl --countname=\u03bcs > test.svg\n~~~\n\nwhere the sample `test.py` script has the execute permission and the following\ncontent\n\n~~~ python\n#!/usr/bin/env python3\n\nimport dis\n\nfor i in range(1000):\n    dis.dis(dis.dis)\n~~~\n\n<object data=\"art/dis_fg.svg\" type=\"image/svg+xml\" width=\"100%\" >\n  <img src=\"art/dis_fg.svg\" style=\"width:100%;\"/>\n</object>\n\nTo profile Apache2 WSGI application, one can attach Austin to the web server\nwith\n\n~~~ console\naustin -Cp `pgrep apache2 | head -n 1`\n~~~\n\nAny child processes will be automatically detected as they are created and\nAustin will sample them too.\n\n\n## IDE Extensions\n\nIt is easy to write your own extension for your favourite text editor. This, for\nexample, is a demo of a [Visual Studio Code] extension that highlights the most\nhit lines of code straight into the editor\n\n<p align=\"center\">\n  <img src=\"art/vscode-demo.gif\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\n\n## Austin TUI\n\nThe [Austin TUI] is a text-based user interface for Austin that gives you a\ntop-like view of what is currently running inside a Python application. It is\nmost useful for scripts that have long-running procedures as you can see where\nexecution is at without tracing instructions in your code. You can also save the\ncollected data from within the TUI and feed it to Flame Graph for visualisation,\nor convert it to the [pprof] format.\n\nIf you want to give it a go you can install it using `pip` with\n\n~~~ console\npip install austin-tui --upgrade\n~~~\n\nand run it with\n\n~~~ console\naustin-tui [OPTION...] command [ARG...]\n~~~\n\nwith the same command line as Austin. Please note that the `austin` binary\nshould be available from within the `PATH` environment variable in order for the\nTUI to work.\n\n> The TUI is based on `python-curses`. The version included with the standard\n> Windows installations of Python is broken so it won't work out of the box. A\n> solution is to install the wheel of the port to Windows from\n> [this](https://www.lfd.uci.edu/~gohlke/pythonlibs/#curses) page. Wheel files\n> can be installed directly with `pip`, as described in the\n> [linked](https://pip.pypa.io/en/latest/user_guide/#installing-from-wheels)\n> page.\n\n<!-- ![austin-tui thread navigation](art/austin-tui_threads_nav.gif) -->\n<p align=\"center\">\n  <img src=\"art/austin-tui.gif\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\n\n## Austin Web\n\n[Austin Web] is a web application that wraps around Austin. At its core, Austin\nWeb is based on [d3-flame-graph] to display a _live_ flame graph in the browser,\nthat refreshes every 3 seconds with newly collected samples. Austin Web can also\nbe used for _remote_ profiling by setting the `--host` and `--port` options.\n\nIf you want to give it a go you can install it using `pip` with\n\n~~~ console\npip install austin-web --upgrade\n~~~\n\nand run it with\n\n~~~ console\naustin-web [OPTION...] command [ARG...]\n~~~\n\nwith the same command line as Austin. This starts a simple HTTP server that\nserves on `localhost` by default. When no explicit port is given, Austin Web\nwill use an ephemeral one.\n\nPlease note that the `austin` binary should be available from within the `PATH`\nenvironment variable in order for Austin Web to work.\n\n<p align=\"center\">\n  <img src=\"art/austin-web.gif\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\n\n## Speedscope\n\nAustin output is now supported by [Speedscope]. However, the [`austin-python`]\nlibrary comes with format conversion tools that allow converting the output from\nAustin to the Speedscope JSON format.\n\nIf you want to give it a go you can install it using `pip` with\n\n~~~ console\npip install austin-python --upgrade\n~~~\n\nand run it with\n\n~~~ console\naustin2speedscope [-h] [--indent INDENT] [-V] input output\n~~~\n\nwhere `input` is a file containing the output from Austin and `output` is the\nname of the JSON file to use to save the result of the conversion, ready to be\nused on [Speedscope].\n\n<p align=\"center\">\n  <img src=\"art/speedscope.png\"\n       style=\"box-shadow: #111 0px 0px 16px;\" />\n</p>\n\n## Google pprof\n\nAustin's format can also be converted to the Google pprof format using the\n`austin2pprof` utility that comes with [`austin-python`]. If you want to give it\na go you can install it using `pip` with\n\n~~~ console\npip install austin-python --upgrade\n~~~\n\nand run it with\n\n~~~ console\naustin2pprof [-h] [-V] input output\n~~~\n\nwhere `input` is a file containing the output from Austin and `output` is the\nname of the protobuf file to use to save the result of the conversion, ready to\nbe used with [Google's pprof tools][pprof].\n\n\n# Contribute\n\nIf you like Austin and you find it useful, there are ways for you to contribute.\n\nIf you want to help with the development, then have a look at the open issues\nand have a look at the [contributing guidelines](CONTRIBUTING.md) before you\nopen a pull request.\n\nYou can also contribute to the development of the Austin by becoming a sponsor\nand/or by [buying me a coffee](https://www.buymeacoffee.com/Q9C1Hnm28) on BMC or\nby chipping in a few pennies on [PayPal.Me](https://www.paypal.me/gtornetta/1).\n\n<p align=\"center\">\n  <a href=\"https://www.buymeacoffee.com/Q9C1Hnm28\"\n     target=\"_blank\">\n  <img src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\"\n       alt=\"Buy Me A Coffee\" />\n  </a>\n</p>\n\n\n----\n\n<p align=\"center\">\n  <a href=\"https://twitter.com/AustinSampler\">\n    Follow <img src=\"art/austin_logo.svg\" height=\"20px\" /> on <img src=\"https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Twitter_bird_logo_2012.svg/1024px-Twitter_bird_logo_2012.svg.png\" height=\"18px\" alt=\"Twitter\" />\n  </a>\n</p>\n\n\n[anaconda]: https://www.anaconda.com/\n[`austin-python`]: https://github.com/P403n1x87/austin-python\n[Austin TUI]: https://github.com/P403n1x87/austin-tui\n[Austin Web]: https://github.com/P403n1x87/austin-web\n[Chocolatey]: https://chocolatey.org/\n[Conda Forge]: https://anaconda.org/conda-forge/austin\n[d3-flame-graph]: https://github.com/spiermar/d3-flame-graph\n[dte]: https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_debugger\n[FlameGraph]: https://github.com/brendangregg/FlameGraph\n[hardened runtime]: https://developer.apple.com/documentation/security/hardened_runtime\n[Homebrew]: https://formulae.brew.sh/formula/austin\n[latest release]: https://github.com/P403n1x87/austin/releases/latest\n[MOJO]: https://github.com/P403n1x87/austin/wiki/The-MOJO-file-format\n[pprof]: https://github.com/google/pprof\n[pyenv]: https://github.com/pyenv/pyenv\n[pypi]: https://pypi.org/project/austin-dist/\n[releases]: https://github.com/P403n1x87/austin/releases\n[Scoop]: https://scoop.sh/\n[Speedscope]: https://speedscope.app\n[Visual Studio Code]: https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode\n[Wiki]: https://github.com/P403n1x87/austin/wiki\n\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "Austin - Frame Stack Sampler for CPython",
    "version": "3.7.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/P403n1x87/austin/issues",
        "Changelog": "https://github.com/P403n1x87/austin/blob/master/ChangeLog",
        "Documentation": "https://github.com/P403n1x87/austin/blob/master/README.md",
        "Funding": "https://github.com/sponsors/P403n1x87",
        "Homepage": "https://github.com/P403n1x87/austin",
        "Release Notes": "https://github.com/P403n1x87/austin/releases",
        "Source Code": "https://github.com/P403n1x87/austin"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f2cbc25aeaf7ad41450eea1f293b008508f5dfa9ef724690603b22b2c32987f",
                "md5": "47e8bd355e49d94102af61eeac6dc0bd",
                "sha256": "72ac1883dfc7e750a25434d72722bca5faf45c95d0a84c22ea8d97152c51a1e7"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "47e8bd355e49d94102af61eeac6dc0bd",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 40880,
            "upload_time": "2024-10-14T19:22:42",
            "upload_time_iso_8601": "2024-10-14T19:22:42.920111Z",
            "url": "https://files.pythonhosted.org/packages/9f/2c/bc25aeaf7ad41450eea1f293b008508f5dfa9ef724690603b22b2c32987f/austin_dist-3.7.0-py2.py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66a9ac086a7e24c5f74e8fe85cc805a715ef7794eb41e716739e8c9cabea11b5",
                "md5": "1d0f6bf9c1c0ae348ea1df7f84b379f1",
                "sha256": "61d16d9a8e81dccc31e1cae2137885d0d7257ecad673b77b0e69de16cda7a2f0"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d0f6bf9c1c0ae348ea1df7f84b379f1",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 43094,
            "upload_time": "2024-10-14T19:22:44",
            "upload_time_iso_8601": "2024-10-14T19:22:44.597240Z",
            "url": "https://files.pythonhosted.org/packages/66/a9/ac086a7e24c5f74e8fe85cc805a715ef7794eb41e716739e8c9cabea11b5/austin_dist-3.7.0-py2.py3-none-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3baf63d9cc839352e43d302f972b0d94365cd9f709d6830e19e89d47f7b5d284",
                "md5": "705833afd6b854fe0bce68112a90cf98",
                "sha256": "e73d3cad0b5c8d51e5b2130dd61cfa0ea8f9c01013ab6f536fb5199a17547b96"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "705833afd6b854fe0bce68112a90cf98",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 677235,
            "upload_time": "2024-10-14T19:23:07",
            "upload_time_iso_8601": "2024-10-14T19:23:07.751604Z",
            "url": "https://files.pythonhosted.org/packages/3b/af/63d9cc839352e43d302f972b0d94365cd9f709d6830e19e89d47f7b5d284/austin_dist-3.7.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f3061f454aad245f4160481dab9f4f261646263b8201cd97f6ae88eef6cc8dd",
                "md5": "aac886b53029672a25f4b48a73afbc55",
                "sha256": "1cd9a7f7f22cc9a9f961ff11f27a18ac5c03a35fc564b1de68a84eb8191d559d"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aac886b53029672a25f4b48a73afbc55",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 639062,
            "upload_time": "2024-10-14T19:26:11",
            "upload_time_iso_8601": "2024-10-14T19:26:11.214773Z",
            "url": "https://files.pythonhosted.org/packages/1f/30/61f454aad245f4160481dab9f4f261646263b8201cd97f6ae88eef6cc8dd/austin_dist-3.7.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa657645d493335888b67e86b2fb90c65d49a19c8be3b95fda98d36cf8b00b61",
                "md5": "e796cf5f17ebd760ca9093d18cfc8359",
                "sha256": "9ea01bdc2b3ffcee67da9a4514cc2b40a526c2cc3a753516010e99acb0744f30"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e796cf5f17ebd760ca9093d18cfc8359",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 501296,
            "upload_time": "2024-10-14T19:25:54",
            "upload_time_iso_8601": "2024-10-14T19:25:54.600120Z",
            "url": "https://files.pythonhosted.org/packages/fa/65/7645d493335888b67e86b2fb90c65d49a19c8be3b95fda98d36cf8b00b61/austin_dist-3.7.0-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22b1619878c340c2145e257c6aaac49a60e70a22e8c3b6e67ee82cd07ec05637",
                "md5": "8cbdd832f10647e19a6b7cff7d6dcbcc",
                "sha256": "402ab2ea7ce8f2f431102d37b5ea0289c9c6868eb1a8ba3b0f09fd1df3280add"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8cbdd832f10647e19a6b7cff7d6dcbcc",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 841296,
            "upload_time": "2024-10-14T19:26:30",
            "upload_time_iso_8601": "2024-10-14T19:26:30.346934Z",
            "url": "https://files.pythonhosted.org/packages/22/b1/619878c340c2145e257c6aaac49a60e70a22e8c3b6e67ee82cd07ec05637/austin_dist-3.7.0-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95b5c20a8ae4d970a58d7ef7cefc903b4b4ab817659767d400a85db975336e0e",
                "md5": "24f301a775f24cd2f93a129723305408",
                "sha256": "a125130171389b0b7baab7168787893bce0972db88b8b5e9811b41b774bea5e2"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "24f301a775f24cd2f93a129723305408",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 40419,
            "upload_time": "2024-10-14T19:26:12",
            "upload_time_iso_8601": "2024-10-14T19:26:12.849250Z",
            "url": "https://files.pythonhosted.org/packages/95/b5/c20a8ae4d970a58d7ef7cefc903b4b4ab817659767d400a85db975336e0e/austin_dist-3.7.0-py2.py3-none-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9d9a0ef743ba0bc62b36921caba8a0bb2f0e672196e0c73f6afd0911dcb23dd",
                "md5": "887be7792291405154e0b7481b2ace0c",
                "sha256": "a853294017a480cf92226382077a0e90e3719ffe6aa4c76b1d9a3a6d3346ae7d"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "887be7792291405154e0b7481b2ace0c",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 37750,
            "upload_time": "2024-10-14T19:25:56",
            "upload_time_iso_8601": "2024-10-14T19:25:56.328188Z",
            "url": "https://files.pythonhosted.org/packages/d9/d9/a0ef743ba0bc62b36921caba8a0bb2f0e672196e0c73f6afd0911dcb23dd/austin_dist-3.7.0-py2.py3-none-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac69017c54941434e9b8304b5a89f11b6047c56756401bb2223b2fabd154711c",
                "md5": "d697616e02f6295a2a0cdbc8db7b76fe",
                "sha256": "26a816a6df008ea652dca67e9fba3d91ed27d0d65d813eabe7bfec9becf540c4"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d697616e02f6295a2a0cdbc8db7b76fe",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 41864,
            "upload_time": "2024-10-14T19:26:31",
            "upload_time_iso_8601": "2024-10-14T19:26:31.787385Z",
            "url": "https://files.pythonhosted.org/packages/ac/69/017c54941434e9b8304b5a89f11b6047c56756401bb2223b2fabd154711c/austin_dist-3.7.0-py2.py3-none-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "024e75ab56f3fe82141396c2563336c7165da529fb705ecb8abb10e4683ee79f",
                "md5": "250f8458cabc66dcc6061159ef51a9d4",
                "sha256": "2ef2976d4f188fa6fa316c710bb64a79feb7ff5662154b893face916bf0a9c81"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "250f8458cabc66dcc6061159ef51a9d4",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 40645,
            "upload_time": "2024-10-14T19:23:10",
            "upload_time_iso_8601": "2024-10-14T19:23:10.459501Z",
            "url": "https://files.pythonhosted.org/packages/02/4e/75ab56f3fe82141396c2563336c7165da529fb705ecb8abb10e4683ee79f/austin_dist-3.7.0-py2.py3-none-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86d0b8cc79892a7f40d7bf82f092f334099646d526d4ff2f11c6291cbe5ded5b",
                "md5": "771ed3010b2709d34bf4ca8ede779a1b",
                "sha256": "760dabaff27022d238091c1d9de9234c881359d0f98295ae8c0428ffc33868c8"
            },
            "downloads": -1,
            "filename": "austin_dist-3.7.0-py2.py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "771ed3010b2709d34bf4ca8ede779a1b",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 54901,
            "upload_time": "2024-10-14T19:24:04",
            "upload_time_iso_8601": "2024-10-14T19:24:04.272078Z",
            "url": "https://files.pythonhosted.org/packages/86/d0/b8cc79892a7f40d7bf82f092f334099646d526d4ff2f11c6291cbe5ded5b/austin_dist-3.7.0-py2.py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-14 19:22:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "P403n1x87",
    "github_project": "austin",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "austin-dist"
}
        
Elapsed time: 0.43054s