Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

About ORMs and future Python courses to come

Hi everyone. I'm following the Python/Flask courses and as I've seen there is some other courses I'm interested in, but I would like to move forward so I can anticipate a little that's why I would like to know, which ORMs are we going to use in the Django course and also in the Flask REST API course? Does anybody knows?

Thanks for the help.

Y B
Y B
14,136 Points

Django has it's own built in ORM - so the course will almost certainly use that. (I believe it's possible to use other ORM's with Django but not very easy to do and almost never done).

Flask Rest API course - not sure, but as there is already a course on peewee that's likely, failing that SQLAlchemy is the most popular ORM used with Flask.

These are all based on the python DB-API so have some commonality to them:

More info here: http://docs.python-guide.org/en/latest/scenarios/db/