티스토리 뷰

728x90

 

# requirements.txt

flask
flask_restplus
werkzeug==0.16.0
# -*- coding: utf-8 -*-

from __future__ import unicode_literals

import os
from flask import Flask
from flask_restplus import Api, Resource, fields
from argparse import ArgumentParser


app = Flask(__name__)
api = Api(
    app,
    version='1.0',
    title='Bot API',
    description='A bot API',
)

app = Flask(__name__)
port = os.getenv('PORT', 80)
debug = True


@api.route('/', methods=['GET'])
class Controller(Resource):
    def home(self):
        return 'Hello World!'


if __name__ == '__main__':
    arg_parser = ArgumentParser(
        usage='Usage: python ' + __file__ + ' [--port <port>] [--help]'
    )
    arg_parser.add_argument('-p', '--port', default=port, help='port')
    arg_parser.add_argument('-d', '--debug', default=debug, help='debug')
    options = arg_parser.parse_args()

    app.run(host='0.0.0.0', debug=options.debug, port=options.port, )
​

https://github.com/jarus/flask-testing/issues/143

 

cannot import name 'cached_property' from 'werkzeug' · Issue #143 · jarus/flask-testing

werkzeug just released 1.0.0, and the deprecated werkzeug.cached_property has been removed in favor of werkzeug.utils.cached_property. This was addressed in October by pull request # 141, but it se...

github.com

https://stackoverflow.com/questions/47526946/flask-restplus-add-namespace-keep-getting-no-attribute-as-view

 

flask_restplus add_namespace keep getting no attribute 'as_view'

I writing a flask, trying to organize it by using Blueprint with Namespace, following this tutorial I had faced some problem, and had look around internet and had review solution in 1 and 2. The f...

stackoverflow.com

https://flask-restplus.readthedocs.io/en/stable/swagger.html

 

Swagger documentation — Flask-RESTPlus 0.13.0 documentation

Swagger documentation Swagger API documentation is automatically generated and available from your API’s root URL. You can configure the documentation using the @api.doc() decorator. Documenting with the @api.doc() decorator The api.doc() decorator allow

flask-restplus.readthedocs.io

 

### namespace

https://flask-restplus.readthedocs.io/en/stable/swagger.html

 

Swagger documentation — Flask-RESTPlus 0.13.0 documentation

Swagger documentation Swagger API documentation is automatically generated and available from your API’s root URL. You can configure the documentation using the @api.doc() decorator. Documenting with the @api.doc() decorator The api.doc() decorator allow

flask-restplus.readthedocs.io

https://flask-restplus.readthedocs.io/en/stable/scaling.html

 

Scaling your project — Flask-RESTPlus 0.13.0 documentation

Scaling your project This page covers building a slightly more complex Flask-RESTPlus app that will cover out some best practices when setting up a real-world Flask-RESTPlus-based API. The Quick start section is great for getting started with your first Fl

flask-restplus.readthedocs.io

https://flask-restplus.readthedocs.io/en/stable/api.html

 

API — Flask-RESTPlus 0.13.0 documentation

a 3-tuple (data, code, headers)

flask-restplus.readthedocs.io

https://stackoverflow.com/questions/15231359/split-python-flask-app-into-multiple-files

 

Split Python Flask app into multiple files

I'm having trouble understanding how to split a flask app into multiple files. I'm creating a web service and I want to split the api's into different files (AccountAPI.py, UploadAPI.py, ...), jus...

stackoverflow.com

https://github.com/noirbizarre/flask-restplus/issues/286

 

Indicate Base URL in Swagger UI · Issue #286 · noirbizarre/flask-restplus

Hello, I've posted this question on Stackoverflow but did not manage to get an answer. For some reason I am not able to define the base URL in the Swagger UI documentation. It show "BASE U...

github.com

github.com/noirbizarre/flask-restplus/issues/247#issuecomment-402048647

 

Bare path of '/' · Issue #247 · noirbizarre/flask-restplus

I'm probably missing something obvious, but I can't seem to set a path of '/' A simple test program that attempts to use both namespaces and swagger: #!/usr/bin/python from flask im...

github.com

 

728x90

'공부' 카테고리의 다른 글

[Python] Content-Type & MIME-Type  (0) 2020.05.31
[Python] execute timeout  (0) 2020.05.31
[Developer] Common Sense  (0) 2020.05.30
[Spark] merge small files  (0) 2020.05.30
[Python] slack message bot  (0) 2020.05.30
댓글