如何使用所有 @api.route 路径创建 json 结构

How can I create a json structure using all the @api.route paths

我有一个名为 apis.py 的文件,其中有许多 API 是使用 @api.route notation.eg:

实现的
    @api.route('/read', methods=['GET'])
    @api.route('/write', methods=['POST'])

如何将所有这些@api.routes 路径存储在某处?可能是一个 hashmap / json,它包含 url 和 url 的用途,例如:{"read":"/read"}。 Mya 正在使用读取所有这些注释的 python 脚本?

以防万一,如果您使用的是 Flask,您可以试试这个片段:

http://flask.pocoo.org/snippets/117/