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 DatabricksTableResourcedb_resource =DatabricksTableResource( spark_client=spark, paths="my_table",)
from vectice import BigQueryResourcebq_resource =BigQueryResource( paths="bigquery-public-data.stackoverflow.posts_questions",)
from vectice import GCSResourcegcs_resource =GCSResource( uris="gs://<bucket_name>/<file_path_inside_bucket>",)
from vectice import S3Resources3_resource =S3Resource( uris="s3://<bucket_name>/<file_path_inside_bucket>",)