Python : Web programming
Web Programming with Python
Want to make a web program? Then you have to host your program, that is, you need your own web server.
Pyscript:
Pyscript:
- https://pyscript.net/examples/
- https://github.com/pyscript/pyscript/blob/main/docs/tutorials/getting-started.md
github: https://github.com/pyscript/pyscript
course material:
https://realpython.com/pyscript-python-in-browser/
https://levelup.gitconnected.com/pyscript-python-in-the-browser-4c1a578d67f3
github에서의 호스팅: https://opentutorials.org/course/3084/18891
PythonAnywhere is an online integrated development environment and web hosting service based on the Python programming language.
https://www.pythonanywhere.com/
You can start web services right away by signing up and simple coding.
Example: http://jungkeechul.pythonanywhere.com/
This is all for above site
from flask import Flask
app = Flask(__name__)
def hello_world():
return 'Hello from Flask!'
def login_page():
return 'You are trying to log-in'
Comments
Post a Comment