Registry / devops / dllist

dllist

JSON →
library2.0.0pypypi✓ verified 85d ago

List the shared libraries loaded by the current process. Version 2.0.0 is the latest, which aligns with the upcoming addition to Python 3.14 standard library. Release cadence is low.

pip install dllist
INSTALL
IMPORT
SIG · DLLIST
D
dllist
devopspythonv2.0.0
Install
1.6s avg
Import
52ms
Disk
16MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v2.0.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.050s · 17.8MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 1.6s · import 0.054s · 18MB
16MB installed
● package 16MB
Code
Verified usage

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

dllist
from dllist import dllist
import dllist
Wrong: 'import dllist' gives you the module, not the function. Always import the function directly.

Lists all shared libraries loaded by the current process.

from dllist import dllist libs = dllist() for lib in libs: print(lib)
Debug
Known issues
breakingOn unsupported platforms, dllist() will raise an ImportError because the function is not defined (v2.0.0+). Previously it returned an empty list.
fix
Wrap import in try/except ImportError, or check platform support before calling.
affects: >=2.0.0
breakingIn v2.0.0 and later, if an error occurs in the underlying platform calls, an exception will propagate instead of silently returning an empty list.
fix
Wrap dllist() call in try/except to handle platform errors.
affects: >=2.0.0
deprecateddllist function will be part of Python 3.14 standard library. This package will become unnecessary.
fix
Migrate to stdlib 'dllist' from Python 3.14 standard library once available.
affects: >=2.0.0, <3.14
Errors
Common errors & fixes
ImportError: cannot import name 'dllist' from 'dllist'
If using an unsupported platform, the function is not defined in the module.
fix
Check platform support or use try/except ImportError: from dllist import dllist
ModuleNotFoundError: No module named 'dllist'
Package not installed.
fix
Run 'pip install dllist'
Upgrade
Version history
2.0.0latest on PyPI · released Feb 10, 2025
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
dllist — pip install dllist · libregistry