Sin descripción

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

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'