scaleway-sdk-python
scaleway-sdk-python copied to clipboard
Integrate Scaleway with your Python applications
Got a `requests.exceptions.ConnectionError` exception when using `list_servers_all`: ```python File "/app/.venv/lib/python3.11/site-packages/scaleway/instance/v1/api.py", line 441, in list_servers_all return fetch_all_pages( ^^^^^^^^^^^^^^^^ File "/app/.venv/lib/python3.11/site-packages/scaleway_core/utils/fetch_all_pages.py", line 47, in fetch_all_pages return items + fetch_all_pages( ^^^^^^^^^^^^^^^^ File "/app/.venv/lib/python3.11/site-packages/scaleway_core/utils/fetch_all_pages.py",...
- Python 3.12.4 - scaleway 2.4.1 Example: ```python from scaleway import Client from scaleway.instance.v1 import InstanceV1API client = Client( access_key=SCW_ACCESS_KEY_ID, secret_key=SCW_SECRET_KEY, default_project_id=SCW_PROJECT_ID, default_region='fr-par', default_zone='fr-par-1', default_page_size=100 ) api = InstanceV1API(client) result...
At the moment we don't have build testing to ensure that internal tests of the SDK python are passing. We don't also have caching enabled for the dependencies for the...
Playing with the Scaleway Python SDK made me stumble when retrieving the list of loadbalancers. Some digging showed, that the Python SDK uses the API paths based on regions, which...