openapi-generator/samples/server/petstore/flaskConnexion-python2
Jakob Schmutz 7596fb7119 fix circular import issue in python flask (#946)
* fix circular import issue in python flask

This is very similar change to 3678eaff87dd95348470c
All it intends to do is fix the problem of cirular imports (which was
already fixed for python) in the python flask server.

* removal of type hints in quotes
2018-09-09 23:23:06 +08:00
..
.openapi-generator fix circular import issue in python flask (#946) 2018-09-09 23:23:06 +08:00
openapi_server fix circular import issue in python flask (#946) 2018-09-09 23:23:06 +08:00
.dockerignore Update Python flask default value (#361) 2018-05-08 10:16:25 +08:00
.gitignore [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
.openapi-generator-ignore Regenerate samples (#367) 2018-05-08 16:44:51 +08:00
.travis.yml [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
Dockerfile Update Python flask default value (#361) 2018-05-08 10:16:25 +08:00
git_push.sh Update Python flask default value (#361) 2018-05-08 10:16:25 +08:00
README.md Update Python flask default value (#361) 2018-05-08 10:16:25 +08:00
requirements.txt update python flask petstore samples 2017-10-16 11:48:13 +08:00
setup.py Update Python flask default value (#361) 2018-05-08 10:16:25 +08:00
test-requirements.txt [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
tox.ini [python-flask] Create main function and entrypoint (#6814) 2017-10-26 20:38:30 +08:00

OpenAPI generated server

Overview

This server was generated by the OpenAPI Generator project. By using the OpenAPI-Spec from a remote server, you can easily generate a server stub. This is an example of building a OpenAPI-enabled Flask server.

This example uses the Connexion library on top of Flask.

Requirements

Python 2.7+

Usage

To run the server, please execute the following from the root directory:

pip install -r requirements.txt
python -m openapi_server

and open your browser to here:

http://localhost:8080/v2/ui/

Your OpenAPI definition lives here:

http://localhost:8080/v2/openapi.json

To launch the integration tests, use tox:

sudo pip install tox
tox

Running with Docker

To run the server on a Docker container, please execute the following from the root directory:

# building the image
docker build -t openapi_server .

# starting up a container
docker run -p 8080:8080 openapi_server