Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- What is SQLAlchemy? 6:37
- Creating a Model 8:37
- Creating a Movie Model 3 objectives
- Create and Read with SQLAlchemy 8:57
- ORM, Models, and Creation 6 questions
- Update, Rollback, and Delete 11:32
- Movie Database Continued 4 objectives
- Querying 15:18
- Querying the Movie Database 2 objectives
- SQLAlchemy Fundamentals 5 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
An introduction to SQLAlchemy, the Python ORM.
Pre-Requisites
Docs
It's always a good idea to bookmark the documentation for reference. SQLAlchemy Documentation
Popular IDEs
-
Visual Studio Code and their Python language support
- Here are a lot of the extensions I am using: Meg's Favorite Visual Studio Extensions
- PyCharm (This automatically creates a virtual environment for you when you start a new project)
Local Setup Steps
- Create a folder for your project
- Open your folder in your IDE
- Open the terminal in your IDE
- Install virtual environment
- Mac:
python3 -m pip install --user virtualenv
- Windows:
py -m pip install --user virtualenv
- Mac:
- Create a virtual environment
- Mac:
python3 -m venv env
- Windows:
python -m venv env
- Mac:
- Activate your environment
- Mac:
source ./env/bin/activate
- Windows:
.\env\Scripts\activate
- Mac:
- Install SQLAlchemy
pip install sqlalchemy
- Create requirements file
pip freeze > requirements.txt
GitHub Resources
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Allison Welch
3,256 Pointspip freeze > requirements.txt adds all globally installed packages to requirements.txt
Posted by Allison WelchAllison Welch
3,256 Points1 Answer
-
Bodie Ponder
2,808 PointsI'm having a very hard time installing my virtual environment in VsCode.
Posted by Bodie PonderBodie Ponder
2,808 Points1 Answer
-
Srujana Puppala
3,240 Points1 Answer
-
PLUS
Alexander Cordes
Courses Plus Student 12,628 Points3 Answers
-
MOD
Jonathan Grieve
Treehouse Moderator 91,254 Points1 Answer
-
Chad Kusuno
6,789 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up