Metadata-Version: 2.1
Name: ubiops
Version: 3.13.0
Summary: UbiOps
Home-page: https://github.com/UbiOps/client-library-python.git
Author: UbiOps
License: Apache 2.0
Description: # ubiops
        Client Library to interact with the [UbiOps](https://ubiops.com) API (v2.1).
        
        For more information, please visit [https://ubiops.com/docs/](https://ubiops.com/docs/)
        
        ## Requirements.
        
        Python 3.5+
        
        ## Installation
        
        ```sh
        pip install ubiops
        ```
        
        ## Usage
        To use the library, one has to authenticate to the UbiOps API with an API token.
        Please, visit https://ubiops.com/docs/organizations/service-users for more information.
        
        ```python
        import ubiops
        
        configuration = ubiops.Configuration()
        configuration.api_key['Authorization'] = 'Token <YOUR_API_KEY>'
        
        client = ubiops.ApiClient(configuration)
        
        api = ubiops.api.CoreApi(client)
        print(api.service_status())
        ```
        
        ## Documentation
        The library is fully documented at https://github.com/UbiOps/client-library-python/tree/master/docs.
        
        
        ## Examples
        Jupyter notebook examples can be found at https://github.com/UbiOps/client-library-python/tree/master/examples.
        
        ## License
        Ubiops is available under the Apache 2.0 license.
        
Keywords: OpenAPI,OpenAPI-Generator,UbiOps
Platform: UNKNOWN
Description-Content-Type: text/markdown
