started working on subdomains extension

This commit is contained in:
Kristjan
2020-12-28 19:51:45 +01:00
parent 1c922a5ddc
commit 3c398a8276
8 changed files with 489 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
# views_api.py is for you API endpoints that could be hit by another service
# add your dependencies here
# import json
# import httpx
# (use httpx just like requests, except instead of response.ok there's only the
# response.is_error that is its inverse)
from quart import jsonify
from http import HTTPStatus
from . import subdomains_ext
# add your endpoints here
@subdomains_ext.route("/api/v1/tools", methods=["GET"])
async def api_subdomains():
"""Try to add descriptions for others."""
tools = [
{
"name": "Quart",
"url": "https://pgjones.gitlab.io/quart/",
"language": "Python",
},
{
"name": "Vue.js",
"url": "https://vuejs.org/",
"language": "JavaScript",
},
{
"name": "Quasar Framework",
"url": "https://quasar.dev/",
"language": "JavaScript",
},
]
return jsonify(tools), HTTPStatus.OK