File size: 887 Bytes
db6e2f8 2c91845 db6e2f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
import os
import requests
import json
from io import BytesIO
from flask import Flask, jsonify, render_template, request, send_file
app = Flask(__name__)
@app.route("/")
def index():
# Basic HTML string
html = '''
<!DOCTYPE html>
<html>
<head>
<title>Dynamic HTML Page</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; }
.container { max-width: 800px; margin: 0 auto; }
.highlight { background-color: #f0f0f0; padding: 20px; }
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Flask</h1>
<div class="highlight">
<p>This HTML was rendered directly from a string!</p>
</div>
</div>
</body>
</html>
'''
return html
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)
|