Skip to content

Instantly share code, notes, and snippets.

@GravenilvecTV
Created September 8, 2024 17:59
Show Gist options
  • Save GravenilvecTV/2311b28b36d153bdf57f98373c13053a to your computer and use it in GitHub Desktop.
Save GravenilvecTV/2311b28b36d153bdf57f98373c13053a to your computer and use it in GitHub Desktop.
Example flask website
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return "<h1>Bienvenue sur mon site web!</h1><p>Ceci est une page simple avec Flask.</p>"
if __name__ == '__main__':
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment