Deceivious
08/11/2022, 3:36 PMprefect deployment apply ...
and prefect deployment build ...
CLI commands to deploy and build flows. Is there a python equivalent to these commands?from prefect.client import OrionClient
😄Khuyen Tran
08/11/2022, 3:37 PMDeployment
object for Python and will be released soonDeceivious
08/11/2022, 3:38 PMNate
08/11/2022, 4:43 PMfrom prefect.filesystems import Azure
azure_storage_block = Azure(basepath="my-bucket/folder/")
azure_storage_block.save("dev")
creating docker container infrastructure block and saving it
from prefect.infrastructure import DockerContainer
docker_container_block = DockerContainer(**my_args)
docker_container_block.save("my_container_setup")
Deceivious
08/11/2022, 4:44 PM