This will be a repo to host a basic Flask application for class.
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
http://flask.pocoo.org/docs/0.10/tutorial/
Flask Web Development: Developing Web Applications with Python
-
Use the terminal to add your file to the repository.
- Create a pull request from your fork to the IntroToPython/objects-101 repo.
- At the main screen for your fork, click the large green button with arrows on it next to the branch name.
- Click the large Create Pull Request button and name your pull request.
- Click Create Pull Request one more time.
This process will allow peer review on any incoming work, along with the ability to discuss specific lines on the same page.