{% extends "base.html" %} {% block title %}PostgreSQL REST API Description{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

{{title}}

This page serves as an overview of all methods, as well as a documentation thereof. Using Python's and Flask's runtime information, all Flask routes can be listed, together with the method producing the response. Each API endpoint's URL, HTTP methods, and the function docstring are listed.

Table of Contents

{%- for route in route_data -%}

{{route.link_title}} {%- for method in route.methods -%} {{method}} {%- endfor -%}

        {{- route.doc -}}
      
{%- endfor -%} {% endblock %}