Prefect integrations for interacting with LakeFS services.
Project description
prefect-lakefs
Visit the full docs here to see additional examples and the API reference.
Prefect integrations for interacting with LakeFS services.
Welcome!
prefect-lakefs
is a collection of Prefect tasks and flows which can be used to interact with lakeFS managed datalakes.
Jump to examples.
Resources
For more tips on how to use tasks and flows in a Collection, check out Using Collections!
Installation
Install prefect-lakefs
with pip
:
pip install prefect-lakefs
Requires an installation of Python 3.8+.
We recommend using a Python virtual environment manager such as pipenv, conda or virtualenv.
These tasks are designed to work with Prefect 2.0. For more information about how to use Prefect, please refer to the Prefect documentation.
Example Usage
Configure LakeFS Credentials and dive in.
import asyncio
from prefect_lakefs.credentials import LakeFSCredentials
from prefect_lakefs.tasks import list_branches
# You can configure this while adding a block in the prefect-ui or
# you can save the block using .save() utility method provided by the block.
lakefs_creds = LakeFSCredentials(
endpoint_url="http://localhost:8000/api/v1",
access_key_id="AKIAIOSFODNN7EXAMPLE",
secret_access_key="wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY",
).save("lakefs-creds")
@flow
def list_branches_for_example_repo():
branches = list_branches(
lakefs_credentials=LakeFSCredentials.load("lakefs-creds"),
repository="example",
)
print(branches)
if __name__ == "__main__":
# run the flow
asyncio.run(list_branches())
Feedback
If you encounter any bugs while using prefect-lakefs
, feel free to open an issue in the prefect-lakefs repository.
If you have any questions or issues while using prefect-lakefs
, you can find help in either the Prefect Discourse forum or the Prefect Slack community or the LakeFS Slack Community.
Feel free to star or watch prefect-lakefs
for updates too!
Contributing
If you'd like to help contribute to fix an issue or add a feature to prefect-lakefs
, please propose changes through a pull request from a fork of the repository.
Here are the steps:
- Fork the repository
- Clone the forked repository
- Install the repository and its dependencies:
pip install -e ".[dev]"
- Make desired changes
- Add tests
- Insert an entry to CHANGELOG.md
- Install
pre-commit
to perform quality checks prior to commit:
pre-commit install
git commit
,git push
, and create a pull request
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file prefect-lakefs-0.4.0.tar.gz
.
File metadata
- Download URL: prefect-lakefs-0.4.0.tar.gz
- Upload date:
- Size: 38.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de33da23b034998923637365d04d77594816493c5b6232d869c32dccc8e096e2 |
|
MD5 | b37f1fb1c6abb817263be93bdaa2ff39 |
|
BLAKE2b-256 | 765aae616c47580517da0988f80f75c373a44b2fda62c06b4267a052ca369a4d |
File details
Details for the file prefect_lakefs-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: prefect_lakefs-0.4.0-py3-none-any.whl
- Upload date:
- Size: 19.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39117de3888026ec4f7ace80cda1693ee8cf78fc88a3810aae42e236ff207e13 |
|
MD5 | 71b99435ca452254ca6f77bd88ea4415 |
|
BLAKE2b-256 | 6da880c88e8cbb84c3688559006024f550a3f273cf277057a594c0df4ac3d662 |