πFile Setup
app = App()
@app.route('/')
def index(request):css_link = Tags.link().attr('href', '/static/style.css').attr('rel', 'stylesheet')
js_script = Tags.script().attr('src', '/static/script.js')
html_content = str()app.reload_content([html_content])
return Response(html_content, content_type='text/html')if __name__ == '__main__':
app.run('0.0.0.0', 5000)Last updated