Skip to main content

A python client for the debuginfod server

Project description

pydebuginfod

pydebuginfod is a Python client implementation of the debuginfod spec.

PyPI Build

import pydebuginfod

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

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

pydebuginfod allows you to easily get started with debuginfod.

Configurations

pydebuginfod allows configurations to passed in via:

  • A configuration file
  • ENV variables
  • Member variables

Configurations are set in that order (config file < env vars < direct).

The following items can be configured:

  • URLs: The URLs of the servers you are querying
  • Cache-Path: The cache location to store the downloaded artifacts
  • Verbose: Sets the logging level to verbose
  • Timeout: How long to wait on a connection before giving up
  • Progress: Show download progress via stdout during download?

Configuration File

The configuraton file follows the XDG specification. pydebuginfod will look for a file named pydebuginfo.yml under the XDG_CONFIG_HOME directory.

The structure of the yaml file is as follows

cache-path: /opt/cache
verbose: false
timeout: 90
progress: true
urls:
    - "https://server1.com"
    - "https://server2/com"

Environment Variables

  • DEBUGINFOD_CACHE_PATH
  • DEBUGINFOD_VERBOSE
  • DEBUGINFOD_TIMEOUT
  • DEBUGINFOD_PROGRESS
  • DEBUGINFOD_URLS

Member variables

client = pydebuginfod.Client()
client.cache = "/opt/cache"
client.verbose = False
client.timeout = 90
client.progress = True
client.urls = ["https://server1.com"]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydebuginfod-0.2.0.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

pydebuginfod-0.2.0-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page