glpkg.config

Module Contents

Classes

Config

Normalized representation of glpkg.json and user config

Functions

find_root() → pathlib.Path)

class glpkg.config.Config(root: pathlib.Path, downloads: Dict[str, glpkg.package.Package] = {}, uploads: Dict[str, glpkg.package.UploadedPackage] = {})

Normalized representation of glpkg.json and user config

static load(root: Optional[pathlib.Path] = None) Config

Find glpkg.json and initialize glpkg.Config from it.

Parameters:

root – the path from which the search should be started.

find_package(alias: str) glpkg.package.Package

Find a package by its alias.

Raises:

glpkg.error.PackageNotFoundError – if package was not found

find_download(alias: str) glpkg.package.Package

Find downloaded package by its alias.

Raises:

glpkg.error.PackageNotFoundError – if package was not found

find_upload(alias: str) glpkg.package.UploadedPackage

Find uploaded package by its alias.

Raises:

glpkg.error.PackageNotFoundError – if package was not found

glpkg.config.find_root(start_dir=Path('.')) pathlib.Path