Registry / devops / austin-dist

austin-dist

JSON →
library4.0.0pypypiunverified

Austin is a frame stack sampler for CPython, providing accurate CPU profiling with C-level stack traces. Current version 4.0.0. Released regularly.

pip install austin-dist
INSTALL
IMPORT
SIG · AUSTIN-DIST
A
austin-dist
devopspythonv4.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Austin
from austin_dist import Austin
from austin import Austin

Profile a Python script with Austin, printing stack samples.

from austin import Austin import sys async def profile(): async with Austin() as austin: async for sample in austin.collect('python3 -c "import time; time.sleep(2)"', interval=100): print(sample) import asyncio asyncio.run(profile())
Debug
Known issues
breakingAustin 4.0 changed the async API: 'Austin' is now an async context manager. Synchronous usage is removed.
fix
Use async with Austin() and async for sample in austin.collect(...).
affects: >=4.0.0
breakingRemoved support for Python 2 and legacy CPython versions (<3.7).
fix
Ensure Python 3.7+ is used.
affects: >=4.0.0
gotchaThe PyPI package is 'austin-dist', but the import module is 'austin'. Installed as austin-dist.
fix
Use 'import austin' after 'pip install austin-dist'.
affects: all
Upgrade
Version history
4.0.0latest on PyPI · released Nov 1, 2025
Audit
Dependencies

No dependency data recorded yet.

Agent activity
17 hits · last 30 days
node
15
Amazon
1
OpenAI (training)
1
Resources
austin-dist — pip install austin-dist · libregistry