Dagger
Search

python

Python programming language module.

Installation

dagger install github.com/sagikazarmark/daggerverse/python@v0.1.0

Entrypoint

Return Type
Python !
Arguments
NameTypeDescription
versionString Version (image tag) to use from the official image repository as a base container.
containerContainer Custom container to use as a base container.
Example
func (m *myModule) example() *Python  {
	return dag.
			Python()
}
@function
def example() -> dag.Python:
	return (
		dag.python()
	)
@func()
example(): Python {
	return dag
		.python()
}

Types

Python 🔗

container() 🔗

Return Type
Container !
Example
dagger -m github.com/sagikazarmark/daggerverse/python@d8b5409dc45cc2242792566059f18cb1e5488629 call \
 container
func (m *myModule) example() *Container  {
	return dag.
			Python().
			Container()
}
@function
def example() -> dagger.Container:
	return (
		dag.python()
		.container()
	)
@func()
example(): Container {
	return dag
		.python()
		.container()
}

withPipCache() 🔗

Mount a cache volume for Pip cache.

Return Type
Python !
Arguments
NameTypeDefault ValueDescription
cacheCacheVolume !-No description provided
sourceDirectory -Identifier of the directory to use as the cache volume's root.
sharingString -Sharing mode of the cache volume.
Example
Function Python.withPipCache is not accessible from the python module
func (m *myModule) example(cache *CacheVolume) *Python  {
	return dag.
			Python().
			WithPipCache(cache)
}
@function
def example(cache: dagger.CacheVolume) -> dag.Python:
	return (
		dag.python()
		.with_pip_cache(cache)
	)
@func()
example(cache: CacheVolume): Python {
	return dag
		.python()
		.withPipCache(cache)
}

withSource() 🔗

Mount a source directory.

Return Type
Python !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-Source directory to mount.
Example
Function Python.withSource is not accessible from the python module
func (m *myModule) example(source *Directory) *Python  {
	return dag.
			Python().
			WithSource(source)
}
@function
def example(source: dagger.Directory) -> dag.Python:
	return (
		dag.python()
		.with_source(source)
	)
@func()
example(source: Directory): Python {
	return dag
		.python()
		.withSource(source)
}