DNA-Evolutions / Python-REST-Client-Examples

Python REST client and examples for DNA-Evolutions TourOptimizer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python-REST-Client-Examples by DNA-Evolutions

DNA-Evolutions

Containerizing an application helps to use it more conveniently across different platforms and, most importantly, as a microservice. Further, scaling an application becomes more straightforward as various standardized orchestration tools can be utilized. A Microservice can be launched either (locally) or, for example, as a highly-scalable web-micro-service in a Kubernetes cluster.


Further Documentation, Contact and Links

If you need any help, don't hesitate to get in contact with us via our company website www.dna-evolutions.com or write an email to info@dna-evolutions.com.


Short Introduction

This repository is part of our JOpt-REST-Suite. It provides examples of how to set up a REST client in Python to access the following DNA Evolution's web services:

  • JOpt-TourOptimizer based on JOpt-Core (available as a local Container and via Azure)

The service can be called via an API-Key using our Microsoft Azure-Kubernetes Infrastructure. If you are interested in hosting our JOpt-REST-GeoCoder and JOpt-REST-GeoRouter products in your environment, please get in contact with us.

All our RESTful Services utilize Spring WebFlux and Swagger. Internally the Java version of TourOptimizer is used. Indeed all specifications for the different services are derived from the core library, leading to guaranteed compatibility between all three services.

DNA-Evolutions Integration

JOpt-TourOptimizer

Optimize a problem consisting of Nodes, Resources, and optionally externally provided connections. In contrast to our other services, we allow you to host your JOpt-TourOptimizer locally. Please refer to "How to start JOpt TourOptimizer in docker" for more help.


Outline of this repository

Examples

  1. TourOptimizer Python Examples

Each of the sections has its README.


The architecture of the generated REST-Client-API

The Python-REST-Client class files used by the examples of this repository were generated utilizing the openapi-python Generator by OpenAPI Tools.

For creating the models, we used the containerized version of Open-API-Generator by calling:

docker run --rm -v "${PWD}:/local" openapitools/openapi-generator-cli:latest generate  -i '/local/swagger/touroptimizer/spec/touroptimizer_spec.json' -g python  -o /local/generated/jopt-touroptimizer-py-client  --package-name=touroptimizer_py_client --additional-properties="useOneOfDiscriminatorLookup=true"

where ${PWD} needs to be adjusted to find the Open-API-docs under /local/swagger/touroptimizer/spec/touroptimizer_spec.json when mounting the volume ${PWD} into /local. Calling the command will generate the Python client that is part of this repository. You can find the touroptimizer_spec.json here.

Attention: The generated models seem to have some bugs. The first commit of this repository is fixing those issues.

You can also generate a client in the programming language of your choice utilizing our API-docs. REST facilitates software integration in your desired language (including famous ones like C#, Java, JS, Scala, Python, and many more ). Don't hesitate to reach out to us if you need help setting up your client.

For setting up a local test enviorment with database support, please refer to the separate Hands-on Tutorial: Setting Up a Local Fire and Forget TourOptimizer-Database Test Environment tutorial.


Getting started

You can start using our examples:

Prerequisites

  • Python installed
  • Please check requirements.txt
  • Working Docker environment for local TourOptimizer instance

Clone this repository

Clone this repository and import it in your favourite IDE.

Install necessary files

You can call (from the main folder):

	python setup.py install

Run the examples

Run a file from the examples subfolders.

Why use JOpt products from DNA Evolutions?

JOpt is a flexible routing optimization engine written in Java, allowing to solve tour-optimization problems that are highly restricted. For example, regarding time windows, skills, and even mandatory constraints can be applied.

Click to open our video:

Introduction Video for DNA's JOpt


Agreement

For reading our license agreement and for further information about license plans, please visit www.dna-evolutions.com.


Authors

A product by dna-evolutions ©

About

Python REST client and examples for DNA-Evolutions TourOptimizer


Languages

Language:Python 99.9%Language:Shell 0.1%