Metadata-Version: 2.1
Name: hopsworks
Version: 2.6.1
Summary: HOPSWORKS: An environment independent client to interact with the Hopsworks API
Home-page: https://github.com/logicalclocks/hopsworks-api
Author: Logical Clocks AB
Author-email: robin@logicalclocks.com
License: Apache License 2.0
Download-URL: https://github.com/logicalclocks/hopsworks-api/releases/tag/2.6.1
Description: # Hopsworks Client
        
        <p align="center">
          <a href="https://community.hopsworks.ai"><img
            src="https://img.shields.io/discourse/users?label=Hopsworks%20Community&server=https%3A%2F%2Fcommunity.hopsworks.ai"
            alt="Hopsworks Community"
          /></a>
            <a href="https://docs.hopsworks.ai"><img
            src="https://img.shields.io/badge/docs-HOPSWORKS-orange"
            alt="Hopsworks Documentation"
          /></a>
          <a href="https://pypi.org/project/hopsworks/"><img
            src="https://img.shields.io/pypi/v/hopsworks?color=blue"
            alt="PyPiStatus"
          /></a>
          <a href="https://pepy.tech/project/hopsworks/month"><img
            src="https://pepy.tech/badge/hopsworks/month"
            alt="Downloads"
          /></a>
          <a href="https://github.com/psf/black"><img
            src="https://img.shields.io/badge/code%20style-black-000000.svg"
            alt="CodeStyle"
          /></a>
          <a><img
            src="https://img.shields.io/pypi/l/hopsworks?color=green"
            alt="License"
          /></a>
        </p>
        
        HOPSWORKS is the library to interact with Hopsworks services.
        
        The library automatically configures itself based on the environment it is run.
        However, to connect from an external environment such as Databricks, AWS Sagemaker or a CI/CD environment additional connection information, such as host and port, is required. For more information about the setup from external environments, see the setup section.
        
        ## Getting Started On Hopsworks
        
        Instantiate a connection and get the project object
        ```python
        import hopsworks
        
        connection = hopsworks.connection()
        
        project = connection.get_project("my_project")
        
        
        ```
        
        Create a new project
        ```python
        project = connection.create_project("my_project")
        ```
        
        Upload data to a project
        ```python
        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](https://github.com/logicalclocks/hops-examples) repository.
        
        ## Documentation
        
        Documentation is available at [Hopsworks Documentation](https://docs.hopsworks.ai/).
        
        ## Issues
        
        For general questions about the usage of Hopsworks and the Feature Store please open a topic on [Hopsworks Community](https://community.hopsworks.ai/).
        
        Please report any issue using [Github issue tracking](https://github.com/logicalclocks/hopsworks-api/issues).
        
        ## Contributing
        
        If you would like to contribute to this library, please see the [Contribution Guidelines](CONTRIBUTING.md).
        
        
Keywords: Hopsworks,Feature Store,Spark,Machine Learning,MLOps,DataOps
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: docs
