No Description

dependabot[bot] 7f26484bde build(deps-dev): bump typing-extensions from 4.5.0 to 4.6.2 (#65) 11 months ago
.github 2bc42d1270 build(deps): bump actions/setup-python from 3 to 4 1 year 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 71c2bfd732 raise RuntimeError instead of Exception when libc's dlinfo function fails (fixes pylint's broad-exception-raised warning) 1 year ago
LICENSE a0eb865879 add MIT license 4 years ago
Pipfile 6a5241be5b dev env: manually re-add typing-extensions (after removal by dependabot; fixes pipeline) 1 year ago
Pipfile.lock 7f26484bde build(deps-dev): bump typing-extensions from 4.5.0 to 4.6.2 (#65) 11 months ago
README.rst 5304140073 readme: fixed code block 4 years ago
conftest.py e93e3e5492 tests: fix platform detection for github actions 3 years ago
setup.py 4e75e94738 drop compatibility with python3.6 (end-of-life since 2021-12-23); relock dev env 2 years 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'