Skip to main content

Python wrapper for Austin, the CPython frame stack sampler.

Project description


Austin

Python wrapper for Austin

GitHub Actions: Tests GitHub Actions: Checks Codecov Documentation
PyPI Downloads
LICENSE

Synopsis • Installation • Usage • Compatibility • Documentation • Contribute

Buy Me A Coffee

Synopsis

The austin-python package is a Python wrapper around the Austin binary that provides convenience classes to quickly develop your statistical profiling tools. Whether your code is thread-based or asynchronous, austin-python has you covered. This is, for instance, how you would turn Austin into a Python application:

import asyncio
import sys

from austin.aio import AsyncAustin
from austin.format.collapsed_stack import AustinEventCollapsedStackFormatter

FORMATTER = AustinEventCollapsedStackFormatter()


class CollapsedStackAsyncAustin(AsyncAustin):
    async def on_sample(self, sample):
        print(FORMATTER.format(sample))

    async def on_metadata(self, metadata):
        print(FORMATTER.format(metadata))


if sys.platform == "win32":
    asyncio.set_event_loop(asyncio.ProactorEventLoop())


async def main():
    austin = CollapsedStackAsyncAustin()
    await austin.start(["-i", "10ms", "python", "myscript.py"])
    await austin.wait()


asyncio.run(main())

The austin-python package is at the heart of the Austin TUI and the Austin Web Python applications. Go check them out if you are looking for full-fledged usage examples.

Included with the package come two applications for the conversion of Austin collected output, which is in the form of collapsed stacks, to either the Speedscope JSON format or the Google pprof format. Note, however, that the Speedscope web application supports Austin native format directly.

Installation

This package can be installed from PyPI with

pip install --user austin-python --upgrade

Please note that austin-python requires the Austin binary. The default lookup locations are, in order,

  • current working directory;
  • the AUSTINPATH environment variable which gives the path to the folder that contains the Austin binary;
  • the .austinrc TOML configuration file in the user's home folder, e.g. ~/.austinrc on Linux (see below for a sample .austinrc file);
  • the PATH environment variable.

A sample .austinrc file would look like so

binary = "/path/to/austin"

Usage

A simple example of an echo application was shown above. Other examples using, e.g., threads, can be found in the official documentation. You can also browse through the code of the Austin TUI and the Austin Web Python applications to see how they leverage austin-python.

Format conversion

As it was mentioned before, this package also comes with two scripts for format conversion, namely austin2speedscope and austin2pprof. They both take two mandatory arguments, that is, the input and output file. For example, to convert the Austin profile data file myscript.aprof to the Google pprof data file myscript.pprof, you can run

austin2pprof myscript.aprof myscript.pprof

The package also provide the austin-compress utility to compress the Austin raw samples by aggregation.

Compatibility

The latest austin-python package is tested on Linux, macOS and Windows with Python 3.9-3.13.

Documentation

The official documentation is hosted on readthedocs.io at austin-python.readthedocs.io.

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 before you open a pull request.

You can also contribute to the development by either becoming a Patron on Patreon, by buying me a coffee on BMC or by chipping in a few pennies on PayPal.Me.

Buy Me A Coffee

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

austin_python-2.1.2.tar.gz (203.1 kB view details)

Uploaded Source

Built Distribution

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

austin_python-2.1.2-py3-none-any.whl (76.2 kB view details)

Uploaded Python 3

File details

Details for the file austin_python-2.1.2.tar.gz.

File metadata

  • Download URL: austin_python-2.1.2.tar.gz
  • Upload date:
  • Size: 203.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for austin_python-2.1.2.tar.gz
Algorithm Hash digest
SHA256 6821bfc8918a3bddb7be34f3c913e385333f53edf27e293232e33a5c6346ac59
MD5 133805ce05a1e9794f14a536a2dcc260
BLAKE2b-256 4578148907bd43a874917b380430586d2067d49289e67f903c740481c4a82fc6

See more details on using hashes here.

File details

Details for the file austin_python-2.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for austin_python-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cde022030f531b80d24f67ee583fb88cab983e91af03687f712dad968265acb8
MD5 4f7b5e0ef9705bce0c5915820a6ca0b6
BLAKE2b-256 57d3d79cae008ac02c3ff1104102e6ccbcc886f030231b1d679b49c1c20e9e9b

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