Skip to main content

Python library to parse makedeb-styled SRCINFO files

Project description

makedeb-srcinfo

PyPI

makedeb-srcinfo is a Python library to aid in the parsing of makedeb-styled SRCINFO files.

Installation

Install the makedeb-srcinfo package from PyPI:

pip install makedeb-srcinfo

Usage

from makedeb_srcinfo import SrcinfoParser

with open(".SRCINFO", "r") as file:
    data = file.read()

# Parse a SRCINFO file.
srcinfo = SrcinfoParser(data)

# Get all references of a variable (returned in a tuple).
pkgname = srcinfo.get_variable("pkgname")
arch = srcinfo.get_variable("arch")

# Get all references of a variable plus it's extensions (i.e. 'depends' and 'focal_depends').
# Results are returned in a dict with a tuple of (distro, arch) for the key name:
#   {
#      ("focal", None): ("gimp", "krita"),
#      ("focal", "amd64"): ("gcc", "golang-go")
#   }
depends = srcinfo.get_extended_variable("depends")

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

makedeb-srcinfo-0.1.1.tar.gz (15.3 kB view hashes)

Uploaded Source

Built Distribution

makedeb_srcinfo-0.1.1-py3-none-any.whl (15.7 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