Metadata-Version: 2.1
Name: scaleway-api
Version: 0.0.1
Summary: An unofficial wrapper around the Scaleway APIs based on Hammock.
Home-page: https://github.com/jonathanbaugh/scaleway-api
Author: Jonathan Baugh
Author-email: jonathanatx@gmail.com
License: UNKNOWN
Description: # Scaleway API
        This is an unofficial wrapper around the Scaleway APIs based on [Hammock](https://pypi.org/project/hammock/).
        
        ## Usage
        ```
        from scaleway_api import Scaleway
        
        scw = Scaleway("nl-ams", "<SECRET KEY>")
        servers = scw.instance.servers.GET()
        
        for server in servers.json.items():
            print(f"Server Name: {server["name"]}")
        ```
        
        ## Environment Variables
        The Scaleway API will try to pull the following environment variables for convencience.
        | Environment Variable | Description |
        | -- | -- |
        | SCW_SECRET_KEY | Your Scaleway key. More information can be found [in Scaleway's documentation]() |
        | SCW_DEFAULT_REGION | Should be either `nl-ams` or `fr-par` (Default: `fr-par`) |
        | SCW_DEFAULT_ZONE |  Should be either `nl-ams-1` or `fr-par-1` (Default: `fr-par-1`) |
        | SCW_API_VERSION |  Currently only `v1` is available. Added to future-proof the library. |
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
