Aucune description

Fabian Peter Hammerle c4c605b5e9 added readme il y a 5 ans
dlinfo 4e74f126f8 coverage limit 100% il y a 5 ans
tests 3f09439a18 tests: xfail if lib not available il y a 5 ans
.coveragerc 4e74f126f8 coverage limit 100% il y a 5 ans
.gitlab-ci.yml e95be5ccb3 DLInfo: added docstring il y a 5 ans
.pylintrc 3736bec2ae make linter happy il y a 5 ans
Pipfile c7cf16333c implement DLInfo class prototype il y a 5 ans
Pipfile.lock c7cf16333c implement DLInfo class prototype il y a 5 ans
README.md c4c605b5e9 added readme il y a 5 ans
setup.py 8f15338280 setup gitlab-ci il y a 5 ans

README.md

python-dlinfo

Python wrapper for libc's dlinfo

usage

>>> 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'