No Description

Fabian Peter Hammerle ea60e04b3c dev env: manually add astroid's dependency `typing_extension` to fix pipelines for python<3.10 2 years ago
.github fed57e6cf2 build(deps): bump actions/setup-python from 2.3.0 to 2.3.1 2 years ago
dlinfo c38595aa04 drop compatibility with python3.5 (end-of-life since 2020-09-13) 2 years ago
tests c38595aa04 drop compatibility with python3.5 (end-of-life since 2020-09-13) 2 years 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 3736bec2ae make linter happy 4 years ago
CHANGELOG.md c38595aa04 drop compatibility with python3.5 (end-of-life since 2020-09-13) 2 years ago
LICENSE a0eb865879 add MIT license 4 years ago
Pipfile ea60e04b3c dev env: manually add astroid's dependency `typing_extension` to fix pipelines for python<3.10 2 years ago
Pipfile.lock ea60e04b3c dev env: manually add astroid's dependency `typing_extension` to fix pipelines for python<3.10 2 years 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 c38595aa04 drop compatibility with python3.5 (end-of-life since 2020-09-13) 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'