openapi-generator/samples/server/petstore/flaskConnexion-python2
2017-10-16 11:48:13 +08:00
..
.swagger-codegen update python flask petstore samples 2017-10-16 11:48:13 +08:00
swagger_server update python flask petstore samples 2017-10-16 11:48:13 +08:00
.dockerignore Update samples flask connexion (#5203) 2017-03-26 23:02:51 +08:00
.gitignore [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
.swagger-codegen-ignore [Python][Flask] fix python2 support in Flask (#3952) 2016-10-09 14:06:55 +08:00
.travis.yml [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
Dockerfile Update samples flask connexion (#5203) 2017-03-26 23:02:51 +08:00
git_push.sh [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
README.md Update samples flask connexion (#5203) 2017-03-26 23:02:51 +08:00
requirements.txt update python flask petstore samples 2017-10-16 11:48:13 +08:00
setup.py [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
test-requirements.txt [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
tox.ini [Flask] Add packaging support 2016-11-23 18:40:37 +01: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 2.7+

Usage

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

pip install -r requirements.txt
python -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