Here are some examples of how to connect Vectice with the following Data Platforms. For more details, check our API cheatsheets for instructions on logging assets through these integrations.
from vectice import DatabricksTableResource
db_resource = DatabricksTableResource(
spark_client=spark,
paths="my_table",
)
from vectice import BigQueryResource
bq_resource = BigQueryResource(
paths="bigquery-public-data.stackoverflow.posts_questions",
)
from vectice import GCSResource
gcs_resource = GCSResource(
uris="gs://<bucket_name>/<file_path_inside_bucket>",
)
from vectice import S3Resource
s3_resource = S3Resource(
uris="s3://<bucket_name>/<file_path_inside_bucket>",
)