openapi-generator/samples/server/petstore/flaskConnexion
2017-12-18 12:30:57 +08:00
..
.swagger-codegen update python flask petstore samples 2017-10-16 11:48:13 +08:00
swagger_server Fix typo in Petstore yaml (#7195) 2017-12-18 12:30:57 +08:00
.dockerignore Add docker support to python flask (#5133) 2017-03-21 23:21:53 +08:00
.gitignore [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
.swagger-codegen-ignore [Python][Flask] use tags to organize Python Flask controllers (#3767) 2016-09-20 21:11:06 +08:00
.travis.yml [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
Dockerfile Add docker support to python flask (#5133) 2017-03-21 23:21:53 +08:00
git_push.sh use python client toOperationId logic (#7035) 2017-11-23 17:41:50 +08:00
README.md Add docker support to python flask (#5133) 2017-03-21 23:21:53 +08:00
requirements.txt [Python][Flask] Upgraded connxion to 1.1.15 (now supports multi collection format arrays) (#6463) 2017-09-11 10:23:38 +08:00
setup.py [python-flask] Create main function and entrypoint (#6814) 2017-10-26 20:38:30 +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

Swagger generated server

Overview

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

This example uses the Connexion library on top of Flask.

Requirements

Python 3.5.2+

Usage

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

pip3 install -r requirements.txt
python3 -m swagger_server

and open your browser to here:

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

Your Swagger definition lives here:

http://localhost:8080/v2/swagger.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 swagger_server .

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