Introduction
The IONOS Cloud SDK for Python provides you with access to the IONOS Cloud Database as a Service MongoDB. The client library supports both simple and complex requests. It is designed for developers who are building applications in Python. All API operations are performed over SSL and authenticated using your IONOS Cloud portal credentials. The API can be accessed within an instance running in IONOS Cloud or directly over the Internet from any application that can send an HTTPS request and receive an HTTPS response.
With IONOS Cloud Database as a Service, you have the ability to quickly set up and manage a MongoDB database. You can also delete clusters, manage backups and users via the API.
An IONOS account is required for access to the Cloud API; credentials from your registration are used to authenticate against the IONOS Cloud API.
Requirements:
- Python >= 3.5
pip install ionoscloud-dbaas-mongo
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-mongo.git
(you may need to run
pip
with root permission: sudo pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-mongo.git
)Then import the package:
import ionoscloud_dbaas_mongo
python setup.py install --user
(or
sudo python setup.py install
to install the package for all users)Then import the package:
import ionoscloud_dbaas_mongo
NOTE: The Python SDK does not support Python 2. It only supports Python >= 3.5.
The username and password or the authentication token can be manually specified when initializing the SDK client:
configuration = ionoscloud_dbaas_mongo.Configuration(
username='YOUR_USERNAME',
password='YOUR_PASSWORD',
token='YOUR_TOKEN'
)
client = ionoscloud_dbaas_mongo.ApiClient(configuration)
Environment variables can also be used. This is an example of how one would do that:
import os
configuration = ionoscloud_dbaas_mongo.Configuration(
username=os.environ.get('IONOS_USERNAME'),
password=os.environ.get('IONOS_PASSWORD'),
token=os.environ.get('IONOS_TOKEN')
)
client = ionoscloud_dbaas_mongo.ApiClient(configuration)
Warning: Make sure to follow the Information Security Best Practices when using credentials within your code or storing them in a file.
You can use http proxies by setting the following environment variables:
IONOS_HTTP_PROXY
- proxy URLIONOS_HTTP_PROXY_HEADERS
- proxy headers
Base URL for the HTTP operation can be changed in the following way:
import os
configuration = ionoscloud_dbaas_mongo.Configuration(
username=os.environ.get('IONOS_USERNAME'),
password=os.environ.get('IONOS_PASSWORD'),
host=os.environ.get('IONOS_API_URL'),
server_index=None,
)
client = ionoscloud_dbaas_mongo.ApiClient(configuration)
The IONOS Cloud SDK for Python aims to offer access to all resources in the IONOS Cloud API and also offers some additional features that make the integration easier:
- authentication for API calls
- handling of asynchronous requests
- 1.How can I open a bug/feature request?
Bugs & feature requests can be open on the repository issues: https://github.com/ionos-cloud/sdk-python-dbaas-mongo/issues/new/choose
- 2.Can I contribute to the Python SDK?
Pure SDKs are automatically generated using OpenAPI Generator and don’t support manual changes. If you need changes please open an issue and we’ll try to take care of it.
Last modified 4mo ago