Metadata-Version: 2.1
Name: staroid
Version: 0.0.2
Summary: Python client library for Staroid cloud platform
Home-page: https://github.com/staroids/staroid-python
Author: Staroid
Author-email: support@staroid.com
License: MIT
Description: # staroid-python
        Staroid python client library
        
        ## Install
        
        ```bash
        pip install staroid
        ```
        
        ## Quickstart
        
        
        Initialize
        
        ```python
        from staroid import Staroid
        
        # with no argument, it searches configuration ~/.staroid/config first and then try in-cluster configuration
        strd = Staroid()
        
        # alternatively, pass access token through the argument
        strd = Staroid(access_token="<access token>", org="<org_name>")
        ```
        
        Select cluster
        
        ```python
        cluster1 = strd.cluster("<cluster_name>")
        ```
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
