- bread The Coder's Toolbelt — Getting your development environment setup
- ketchup Your first web server — Hello World!
- mayo Connecting clients and servers — The Robots are Talking amongst themselves
- frysauce Data structures & Databases — How Computers Remember
- biscotti Learning on your own — Go forward, fellow autodidacts!
- Zed Shaw’s Learn Python the Hard Way has robust instructions on getting your OS (especially windows) prepped for using python.
- Install git for your computer’s operating system.
- Clone this repo or download this zip
- Install
pip
viaeasy_install
(python 2) - To keep your python packages separated, install virtualenvwrapper and
mkvirtualenv lucky_flask
. - While in your virtual environment, install module dependencies via
pip install -r requirements.txt
- The flask documentation is excellent and contains a bunch of examples to get you started with both python and web application development.
Hello