This website works better with JavaScript
首頁
探索
說明
登入
fphammerle
/
python-dlinfo
镜像来自
https://github.com/cloudflightio/python-dlinfo
關注
1
讚好
0
複刻
0
檔案
問題管理
0
Wiki
暫無描述
97
提交歷史
5
分支列表
4
版本發佈
目錄樹:
4be8bddfd9
分支列表
標籤列表
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
dependabot[bot]
4be8bddfd9
build(deps-dev): bump pylint from 2.13.8 to 2.13.9
2 年之前
.github
a222c1cb34
build(deps): bump actions/checkout from 2.4.0 to 3
3 年之前
dlinfo
c38595aa04
drop compatibility with python3.5 (end-of-life since 2020-09-13)
3 年之前
tests
c38595aa04
drop compatibility with python3.5 (end-of-life since 2020-09-13)
3 年之前
.coveragerc
4e74f126f8
coverage limit 100%
5 年之前
.gitignore
52e58073f3
added support for mac os x via macholib.dylib.dyld_find()
5 年之前
.pylintrc
3736bec2ae
make linter happy
5 年之前
CHANGELOG.md
4e75e94738
drop compatibility with python3.6 (end-of-life since 2021-12-23); relock dev env
3 年之前
LICENSE
a0eb865879
add MIT license
5 年之前
Pipfile
b8d69da7c8
dev env: re-add typing-extensions to fix pipeline on python<3.10
3 年之前
Pipfile.lock
4be8bddfd9
build(deps-dev): bump pylint from 2.13.8 to 2.13.9
2 年之前
README.rst
5304140073
readme: fixed code block
5 年之前
conftest.py
e93e3e5492
tests: fix platform detection for github actions
3 年之前
setup.py
4e75e94738
drop compatibility with python3.6 (end-of-life since 2021-12-23); relock dev env
3 年之前
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'