Python SDK for accessing Fenrir Cloud API.
The contents of this repository is generated automatically using openapi-generator. Please refer to the Cloud.Sdk.Templates repository.
You can install this package from pip repository:
pip install fenrir-apiimport fenrir_api
from fenrir_api.rest import ApiException
configuration = fenrir_api.Configuration(access_token = "YOUR_FENRIR_API_TOKEN")
with fenrir_api.ApiClient(configuration) as api_client:
api_instance = fenrir_api.FenrirApi(api_client)
try:
result = api_instance.get_applications()
for application in result.applications:
print(application)
except ApiException as e:
print(e)For the documentation for API endpoints, please refer to the docs/FenrirApi.md
Please refer to the Cloud.Sdk.Templates repository for contributing. We currently do not accept pull requests in this repo.