Tidak Ada Deskripsi

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

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'