")
+def api_name_resource(name):
+ name = hsd.get_name_resource(name)
+ if name:
+ return jsonify(name)
+ else:
+ return jsonify({"error": "name not found"}), 404
+
+@app.route("/api/v1/address/")
+def api_address(address):
+ address = hsd.get_address(address)
+ if address:
+ return jsonify(address)
+ else:
+ return jsonify({"error": "address not found"}), 404
+
+
+# endregion
+
# region Error Catching
# 404 catch all
@app.errorhandler(404)
diff --git a/templates/data.html b/templates/data.html
new file mode 100644
index 0000000..2b3f1a3
--- /dev/null
+++ b/templates/data.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Nathan.Woodburn/
+
+
+
+
+
+
+
+
RESPONSE
+
{{ data | safe }}
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
index bb349f8..5563ae7 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -12,8 +12,22 @@
-
Nathan.Woodburn/
+ Nathan.Woodburn/ EXPLORER ALPHA
+
+
+
+
+