docs/integrations/prefect-bitbucket/index.mdx
The prefect-bitbucket library makes it easy to interact with Bitbucket repositories and credentials.
prefect-bitbucketThe following command will install a version of prefect-bitbucket compatible with your installed version of prefect.
If you don't already have prefect installed, it will install the newest version of prefect as well.
pip install "prefect[bitbucket]"
Upgrade to the latest versions of prefect and prefect-bitbucket:
pip install -U "prefect[bitbucket]"
Register the block types in the prefect-bitbucket module to make them available for use.
prefect block register -m prefect_bitbucket
In the examples below, you create blocks with Python code. Alternatively, blocks can be created through the Prefect UI.
To create a deployment and run a deployment where the flow code is stored in a private Bitbucket repository, you can use the BitBucketCredentials block.
A deployment can use flow code stored in a Bitbucket repository without using this library in either of the following cases:
Create a Bitbucket Credentials block:
from prefect_bitbucket import BitBucketCredentials
bitbucket_credentials_block = BitBucketCredentials(token="x-token-auth:my-token")
bitbucket_credentials_block.save(name="my-bitbucket-credentials-block")
If using a token to authenticate to Bitbucket Cloud, only set the token to authenticate. Do not include a value in the username field or authentication will fail. If using Bitbucket Server, provide both the token and username values.
</Info>
Use the credentials block you created above to pass the Bitbucket access token during deployment creation. The code below assumes there's flow code stored in a private Bitbucket repository.
from prefect import flow
from prefect.runner.storage import GitRepository
from prefect_bitbucket import BitBucketCredentials
if __name__ == "__main__":
source = GitRepository(
url="https://bitbucket.com/org/private-repo.git",
credentials=BitBucketCredentials.load("my-bitbucket-credentials-block")
)
flow.from_source(
source=source,
entrypoint="my_file.py:my_flow",
).deploy(
name="private-bitbucket-deploy",
work_pool_name="my_pool",
)
Alternatively, if you use a prefect.yaml file to create the deployment, reference the Bitbucket Credentials block in the pull step:
pull:
- prefect.deployments.steps.git_clone:
repository: https://bitbucket.org/org/private-repo.git
credentials: "{{ prefect.blocks.bitbucket-credentials.my-bitbucket-credentials-block }}"
Or, use pull_with_block to pull code using a Bitbucket Repository block directly:
pull:
- prefect.deployments.steps.pull_with_block:
block_type_slug: bitbucket-repository
block_document_name: my-bitbucket-block
The code below shows how to reference a particular branch or tag of a Bitbucket repository.
from prefect_bitbucket import BitbucketRepository
def save_bitbucket_block():
bitbucket_block = BitbucketRepository(
repository="https://bitbucket.org/testing/my-repository.git",
reference="branch-or-tag-name",
)
bitbucket_block.save("my-bitbucket-block")
if __name__ == "__main__":
save_bitbucket_block()
Exclude the reference field to use the default branch.
Reference a BitBucketCredentials block for authentication if the repository is private.
Use the newly created block to interact with the Bitbucket repository.
For example, download the repository contents with the .get_directory() method like this:
from prefect_bitbucket.repositories import BitbucketRepository
def fetch_repo():
bitbucket_block = BitbucketRepository.load("my-bitbucket-block")
bitbucket_block.get_directory()
if __name__ == "__main__":
fetch_repo()
For assistance using Bitbucket, consult the Bitbucket documentation.
Refer to the prefect-bitbucket SDK documentation to explore all the capabilities of the prefect-bitbucket library.