Skip to content

IntroToPython/webapp-intro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

webapp-intro

This will be a repo to host a basic Flask application for class.

Example

from flask import Flask
app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello World!"

if __name__ == "__main__":
    app.run()

Blog/Tutorial

http://flask.pocoo.org/docs/0.10/tutorial/

Book

Flask Web Development: Developing Web Applications with Python

Git Tutorial

Try Git

Sharing Your Work

  1. Once in Cloud9, create a new file named (yourname).py. Create a new file.

  2. Use the terminal to add your file to the repository.

  • git add (yourname.py)
  • git commit -m "(Commit Message)"
  • git push origin master
  • Add, Commit, Push
  1. 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. Creating a PR

This process will allow peer review on any incoming work, along with the ability to discuss specific lines on the same page.

Questions?

anthony@blar.do

About

This will be a repo to host a basic Flask application for class.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published