DEbora
0
Q:

html in python

from flask import Flask
app=Flask('app')
@app.route('/')
def run_code():
    return '<!-- Reference external html file here... -->'
app.run(host='0.0.0.0', port=8080)
2
import requests
from bs4 import BeautifulSoup


vgm_url = 'https://www.vgmusic.com/music/console/nintendo/nes/'
html_text = requests.get(vgm_url).text
soup = BeautifulSoup(html_text, 'html.parser')
-1
<!-- 
Unfortunetly, it's the other way around
You should use the flask module on python to build sites
Check the source for a great tutorial on flask



Or you can use Brython, a javascript replacement which is like python
-->
1

New to Communities?

Join the community