Skip to main content
  • Python Part 8: Building a Web Application

    Publish Date: October 6th, 2015 | Posted in Python Tutorials | Last Updated

    Python and Flask: Building a Complex Web Application Pro Tip: Install and Uninstalling Flask-SQLAlchemy Install: pip install Flask-SQLAlchemy Uninstall: pip uninstall Flask-SQLAlchemy Install Flask-SQLAlchemy to form an abstraction layer between a database (e.g., MySQL, PostgreSQL, SQLite) and Python. SQLAlchemy allows querying a database with Python code as opposed to SQL. Read the SQLAlquemy’s Object Relational […]

  • Python Part 4: Python 101– Rules of the Road

    Publish Date: October 3rd, 2015 | Posted in Python Tutorials | Last Updated

    1. How You Will Learn 2. Do your Homework to Accelerate Coding Intuition The reading assignments and, more importantly, the problem sets from Google are key to developing coding intuition! The purpose of the in-class sessions are to teach you how to structure and build apps quickly! 3. Python 101 Python Has formatting and style […]

  • Python Part 2: Installing Python 3 on Mac OS X and Windows 10

    Publish Date: August 26th, 2015 | Posted in Python Tutorials | Last Updated

    1. Upgrading and Installing Python 3.x on Windows and the Mac Download Python 3.x here: https://www.python.org/downloads/. 2. Using Python for the First Time Windows Users We’ll use Windows PowerShell to perform Python command-line functions. Mac Users Open your terminal and type python3 to open the Python shell. Now type print(“hello world”) and press enter 3. […]