This website works better with JavaScript
首頁
探索
說明
登入
fphammerle
/
python-dlinfo
镜像来自
https://github.com/cloudflightio/python-dlinfo
關注
1
讚好
0
複刻
0
檔案
問題管理
0
Wiki
暫無描述
155
提交歷史
5
分支列表
4
版本發佈
目錄樹:
4b7cca305a
分支列表
標籤列表
dependabot/pip/pylint-3.3.4
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
Fabian Peter Hammerle
4b7cca305a
drop compatibility with python3.7 (reached end of life on 2023-06-27)
1 年之前
.github
4b7cca305a
drop compatibility with python3.7 (reached end of life on 2023-06-27)
1 年之前
dlinfo
71c2bfd732
raise RuntimeError instead of Exception when libc's dlinfo function fails (fixes pylint's broad-exception-raised warning)
2 年之前
tests
88ccd4f62d
pylint: merge config files; dev env: upgrade pylint to v2.14.0
2 年之前
.coveragerc
4e74f126f8
coverage limit 100%
5 年之前
.gitignore
52e58073f3
added support for mac os x via macholib.dylib.dyld_find()
5 年之前
.pylintrc
88ccd4f62d
pylint: merge config files; dev env: upgrade pylint to v2.14.0
2 年之前
CHANGELOG.md
4b7cca305a
drop compatibility with python3.7 (reached end of life on 2023-06-27)
1 年之前
LICENSE
a0eb865879
add MIT license
5 年之前
Pipfile
4b7cca305a
drop compatibility with python3.7 (reached end of life on 2023-06-27)
1 年之前
Pipfile.lock
4b7cca305a
drop compatibility with python3.7 (reached end of life on 2023-06-27)
1 年之前
README.rst
5304140073
readme: fixed code block
5 年之前
conftest.py
e93e3e5492
tests: fix platform detection for github actions
3 年之前
setup.py
4b7cca305a
drop compatibility with python3.7 (reached end of life on 2023-06-27)
1 年之前
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'