mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-20 22:37:12 +00:00
[Python][Flask] fix python2 support in Flask (#3952)
* flask python2 petstore sample * fix python2 support in flask
This commit is contained in:
8
samples/server/petstore/flaskConnexion-python2/app.py
Normal file
8
samples/server/petstore/flaskConnexion-python2/app.py
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import connexion
|
||||
|
||||
if __name__ == '__main__':
|
||||
app = connexion.App(__name__, specification_dir='./swagger/')
|
||||
app.add_api('swagger.yaml', arguments={'title': 'This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.'})
|
||||
app.run(port=8080)
|
||||
Reference in New Issue
Block a user