hopsworks is the python API for interacting with a Hopsworks cluster.
Instantiate a connection and get the project object
import hopsworks
connection = hopsworks.connection()
project = connection.get_project("my_project")
Create a new project
project = connection.create_project("my_project")
Upload data to a project
dataset_api = project.get_dataset_api()
dataset_api.upload("data.csv", "Resources")
You can find more examples on how to use the library in our hops-examples repository.
Documentation is available at Hopsworks Documentation.
For general questions about the usage of Hopsworks and the Feature Store please open a topic on Hopsworks Community.
Please report any issue using Github issue tracking.
If you would like to contribute to this library, please see the Contribution Guidelines.