diff --git a/app.py b/app.py deleted file mode 100644 index 1861bd01..00000000 --- a/app.py +++ /dev/null @@ -1,31 +0,0 @@ -from flask import Flask, render_template, request -from bs4 import BeautifulSoup -import urllib, requests -app = Flask(__name__) - -@app.route('/') -def main(): - return render_template('index.html', svg="", name="") - -@app.route('/submit_kanji', methods=['GET']) -def submit_kanji(): - try: - character = request.args.get('kanji') - - url = "https://jisho.org/search/{0}".format(urllib.parse.quote_plus(character + "#kanji")) - r = requests.get(url, headers={ - "User-Agent": "little-web-project", - "From": "http://lauchism.com" - }) - - if r.status_code != 200: - print(f"ERROR: Failed to access Jisho API... {r.status_code}") - return None - - body = BeautifulSoup(r.text, features="html.parser") - names = body.find("div", {"class": "kanji-details__main-meanings"}) - - with open(f"assets/0{format(ord(character), 'x')}.svg", encoding='utf-8') as file: - return render_template('index.html', svg=file.read(), name=names.string) - except: - return render_template('index.html', svg="no", name="no") \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 00000000..51a6d8b5 --- /dev/null +++ b/index.html @@ -0,0 +1,104 @@ + + + + + + Kanji + + + + + + +

search for kanji

+
+ + +
+ Loading + +

Meanings currently not available due to CORS issues

+ + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index 1fcf6669..00000000 --- a/templates/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - Document - - - - - - -

search for kanji

-
- - -
- - {{svg|safe}} - - -

- {{name}} -

- - - - \ No newline at end of file