No Description

dependabot[bot] ce70e75aa7 build(deps-dev): bump pylint from 2.15.2 to 2.15.3 (#40) 1 year ago
.github 2bc42d1270 build(deps): bump actions/setup-python from 3 to 4 1 year ago
dlinfo 88ccd4f62d pylint: merge config files; dev env: upgrade pylint to v2.14.0 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 4e75e94738 drop compatibility with python3.6 (end-of-life since 2021-12-23); relock dev env 2 years ago
LICENSE a0eb865879 add MIT license 4 years ago
Pipfile b8d69da7c8 dev env: re-add typing-extensions to fix pipeline on python<3.10 2 years ago
Pipfile.lock ce70e75aa7 build(deps-dev): bump pylint from 2.15.2 to 2.15.3 (#40) 1 year 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 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'