python

package
v1.1.10 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 13, 2021 License: MPL-2.0 Imports: 12 Imported by: 2

Documentation

Overview

Package python provides analysers for Python projects.

A `BuildTarget` in Python is the directory of the Python project, generally containing `requirements.txt` or `setup.py`.

Index

Constants

View Source
const (
	AnalyzerName = "python"

	SetupPyStrategy         = "setuptools"
	PipStrategy             = "pip"
	PipenvStrategy          = "pipenv"
	PipDepTreeStrategy      = "deptree"
	RequirementsTxtStrategy = "requirements"
)

Variables

Functions

func AnalyzePip added in v1.0.9

func AnalyzePip(dir module.Filepath, target module.Filepath) (graph.Deps, *errors.Error)

func AnalyzePipDepTree added in v1.0.9

func AnalyzePipDepTree(dir module.Filepath, target module.Filepath) (graph.Deps, *errors.Error)

func AnalyzePipenv added in v1.0.9

func AnalyzePipenv(dir module.Filepath, target module.Filepath) (graph.Deps, *errors.Error)

func AnalyzeRequirementsTxt added in v1.0.9

func AnalyzeRequirementsTxt(dir module.Filepath, target module.Filepath) (graph.Deps, *errors.Error)

func AnalyzeSetupPy added in v1.0.9

func AnalyzeSetupPy(dir module.Filepath, target module.Filepath) (graph.Deps, *errors.Error)

func Discover

func Discover(dir string, options map[string]interface{}) ([]module.Module, error)

Discover constructs modules in all directories with a `requirements.txt` or `setup.py`.

func FromRequirements

func FromRequirements(reqs []pip.Requirement) []pkg.Import

func FromTree

func FromTree(tree []pip.DepTree) ([]pkg.Import, map[pkg.ID]pkg.Package)

func NewDiscover added in v1.0.9

Types

type Analyzer

type Analyzer struct {
	PythonCmd     string
	PythonVersion string

	Pipenv  pipenv.Pipenv
	Pip     pip.Pip
	Module  module.Module
	Options Options
}

func New

func New(m module.Module) (*Analyzer, error)

func (*Analyzer) Analyze

func (a *Analyzer) Analyze() (graph.Deps, error)

func (*Analyzer) Build

func (a *Analyzer) Build() error

func (*Analyzer) Clean

func (a *Analyzer) Clean() error

Clean logs a warning and does nothing for Python.

func (*Analyzer) IsBuilt

func (a *Analyzer) IsBuilt() (bool, error)

type Options

type Options struct {
	Strategy         string `mapstructure:"strategy"`
	RequirementsPath string `mapstructure:"requirements"`
	VirtualEnv       string `mapstructure:"venv"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL