skip to Main Content

Html – Flask: Can't access secondary page via href

Python Code import openai app = Flask(__name__) app.debug = True #audio_file= open("/path/to/file/audio.mp3", "rb") #transcript = openai.Audio.transcribe("whisper-1", audio_file) @app.route('/') def hello_flask(): return render_template('landing.html') if __name__ == '__main__': app.run() HTML Code of Main Page (landing.html) <html> <head> <title>komodo.ai</title> <link rel="stylesheet" href="static/styles.css"> <meta…

VIEW QUESTION
Back To Top
Search