Skip to content

Repository files navigation

dyspatch-python

Introduction

The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our Implementation Guide for more details on how to implement Dyspatch.

API Client Libraries

Dyspatch provides API Clients for popular languages and web frameworks.

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 2020.11
  • Package version: 6.0.0
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit https://docs.dyspatch.io

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

importdyspatch_client

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

importdyspatch_client

Getting Started

Please follow the installation procedure and then run the following:

from __future__ importprint_functionimporttimeimportdyspatch_clientfromdyspatch_client.restimportApiExceptionfrompprintimportpprint# Defining the host is optional and defaults to https://api.dyspatch.io# See configuration.py for a list of all supported configuration parameters.configuration=dyspatch_client.Configuration(
host="https://api.dyspatch.io"
)
# The client must configure the authentication and authorization parameters# in accordance with the API server security policy.# Examples for each auth method are provided below, use the example that# satisfies your auth use case.# Configure API key authorization: Bearerconfiguration=dyspatch_client.Configuration(
host="https://api.dyspatch.io",
api_key= {
'Authorization': 'YOUR_API_KEY'
}
)
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed# configuration.api_key_prefix['Authorization'] = 'Bearer'# Enter a context with an instance of the API clientwithdyspatch_client.ApiClient(configuration) asapi_client:
# Create an instance of the API classapi_instance=dyspatch_client.DraftsApi(api_client)
draft_id='draft_id_example'# str | A draft IDlanguage_id='language_id_example'# str | A language ID (eg: en-US)accept='accept_example'# str | A version of the API that should be used for the request. For example, to use version \"2020.11\", set the value to \"application/vnd.dyspatch.2020.11+json\"try:
# Remove a localizationapi_instance.delete_localization(draft_id, language_id, accept)
exceptApiExceptionase:
print("Exception when calling DraftsApi->delete_localization: %s\n"%e)

Documentation for API Endpoints

All URIs are relative to https://api.dyspatch.io

ClassMethodHTTP requestDescription
DraftsApidelete_localizationDELETE /drafts/{draftId}/localizations/{languageId}Remove a localization
DraftsApiget_draft_by_idGET /drafts/{draftId}Get Draft by ID
DraftsApiget_draft_localization_keysGET /drafts/{draftId}/localizationKeysGet localization keys
DraftsApiget_draftsGET /draftsList Drafts
DraftsApiget_localization_for_draftGET /drafts/{draftId}/localizationsGet localizations on a draft
DraftsApisave_localizationPUT /drafts/{draftId}/localizations/{languageId}Create or update a localization
DraftsApiset_translationPUT /drafts/{draftId}/localizations/{languageId}/translationsSet translations for language
DraftsApisubmit_draft_for_approvalPOST /drafts/{draftId}/publishRequestSubmit the draft for approval
LocalizationsApiget_localization_by_idGET /localizations/{localizationId}Get Localization Object by ID
TemplatesApiget_template_by_idGET /templates/{templateId}Get Template by ID
TemplatesApiget_templatesGET /templatesList Templates

Documentation For Models

Documentation For Authorization

Bearer

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Author

support@dyspatch.io

About

An OpenAPI generated Dyspatch client in Python

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages