Skip to content

Latest commit

 

History

History
76 lines (52 loc) · 2.01 KB

README.md

File metadata and controls

76 lines (52 loc) · 2.01 KB

Hopsworks Client

Hopsworks Community Hopsworks Documentation PyPiStatus Downloads CodeStyle License

hopsworks is the python API for interacting with a Hopsworks cluster.

Getting Started On Hopsworks

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

Documentation is available at Hopsworks Documentation.

Issues

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.

Contributing

If you would like to contribute to this library, please see the Contribution Guidelines.