No Description

Fabian Peter Hammerle c1e304495d Merge pull request #12 from cloudflightio/dependabot/github_actions/actions/setup-python-2.3.0 2 years ago
.github 786c3ccd33 build(deps): bump actions/setup-python from 2.2.2 to 2.3.0 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 c38595aa04 drop compatibility with python3.5 (end-of-life since 2020-09-13) 2 years ago
Pipfile.lock c38595aa04 drop compatibility with python3.5 (end-of-life since 2020-09-13) 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'