Integrate Vectice with your data platform
How to integrate Vectice with Data Platforms
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>",
)Last updated
Was this helpful?