Metadata-Version: 2.1
Name: pydebuginfod
Version: 0.0.1
Summary: A python client for the debuginfod server
License: MIT
Author: Matt Schulte
Author-email: schultetwin1@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.25.1,<3.0.0)
Description-Content-Type: text/markdown

# pydebuginfod

pydebuginfod is a Python client implementation of the [debuginfod
spec](https://www.mankier.com/8/debuginfod).

```python
import pydebuginfod

dbginfo = pydebuginfod.get_debuginfo("c0e8c127f1f36dd10e77331f46b6e2dbbbdb219b")
dbginfo
>>> '/home/matt/.cache/debuginfod/buildid/c0e8c127f1f36dd10e77331f46b6e2dbbbdb219b/debuginfo'

executable = debuginfod.get_executable("c0e8c127f1f36dd10e77331f46b6e2dbbbdb219b")
dbginfo
>>> '/home/matt/.cache/debuginfod/buildid/c0e8c127f1f36dd10e77331f46b6e2dbbbdb219b/executable'
```

pydebuginfod allows you to easily get started with debuginfod.
