This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
WebSlider/slider.py

13 lines
165 B
Python
Executable File

#!/usr/bin/python3
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello slider"
if __name__ == "__main__":
app.run()