No Description

dependabot[bot] a996c903f1 build(deps-dev): bump pytest-cov from 4.1.0 to 5.0.0 (#90) 2 days ago
.github 9f2b01a7f7 build(deps): bump actions/setup-python from 4 to 5 (#82) 3 months ago
dlinfo 71c2bfd732 raise RuntimeError instead of Exception when libc's dlinfo function fails (fixes pylint's broad-exception-raised warning) 1 year ago
tests 88ccd4f62d pylint: merge config files; dev env: upgrade pylint to v2.14.0 1 year ago
.coveragerc 4e74f126f8 coverage limit 100% 4 years ago
.gitignore 52e58073f3 added support for mac os x via macholib.dylib.dyld_find() 4 years ago
.pylintrc 88ccd4f62d pylint: merge config files; dev env: upgrade pylint to v2.14.0 1 year ago
CHANGELOG.md 4b7cca305a drop compatibility with python3.7 (reached end of life on 2023-06-27) 6 months ago
LICENSE a0eb865879 add MIT license 4 years ago
Pipfile 856b98b41f relock env with pipenv v2023.10.3 on python v3.11.2 (to remove "sanitized-package" entry, see commit below) 5 months ago
Pipfile.lock a996c903f1 build(deps-dev): bump pytest-cov from 4.1.0 to 5.0.0 (#90) 2 days ago
README.rst 5304140073 readme: fixed code block 4 years ago
conftest.py e93e3e5492 tests: fix platform detection for github actions 2 years ago
setup.py 4b7cca305a drop compatibility with python3.7 (reached end of life on 2023-06-27) 6 months ago

README.rst

python-dlinfo
=============

Python wrapper for libc's dlinfo

Install
-------

.. code:: sh

pip install dlinfo
# or
pipenv install dlinfo

Usage
-----

.. code:: python

>>> from dlinfo import DLInfo
>>> lib = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))
>>> dlinfo = DLInfo(lib)
>>> dlinfo.path
'/lib/x86_64-linux-gnu/libc.so.6'