This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
fphammerle
/
python-dlinfo
kopia lustrzana
https://github.com/cloudflightio/python-dlinfo
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Brak opisu
17
Commity
5
Gałęzie
4
Wydania
Drzewo:
d3bd8629b7
Gałęzie
Tagi
dependabot/pip/pylint-3.3.6
dependabot/pip/pytest-8.3.5
dependabot/pip/pytest-cov-6.0.0
dependabot/pip/wrapt-1.17.2
master
v1.2.1
v1.2.0
v1.1.0
v1.0.0
python-dlinfo
HTTPS
SSH
ZIP
TAR.GZ
Lukas Bindreiter
d3bd8629b7
Merge branch 'prepare-pypi' into 'master'
5 lat temu
dlinfo
4e74f126f8
coverage limit 100%
5 lat temu
tests
3f09439a18
tests: xfail if lib not available
5 lat temu
.coveragerc
4e74f126f8
coverage limit 100%
5 lat temu
.gitlab-ci.yml
766b994b92
gitlab-ci: added missing python3-wheel
5 lat temu
.pylintrc
3736bec2ae
make linter happy
5 lat temu
CHANGELOG.md
dddafa483b
prepare release v1.1.0
5 lat temu
Pipfile
c7cf16333c
implement DLInfo class prototype
5 lat temu
Pipfile.lock
c7cf16333c
implement DLInfo class prototype
5 lat temu
README.rst
5304140073
readme: fixed code block
5 lat temu
setup.py
1475df2011
setup.py: added metadata for pypi.org; readme markdown->rest
5 lat temu
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'