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

General Discussion

Django vs Flask

I want to create a simple web app that will allow users to sign in order something that will be sent to someones email. Which is better?

1 Answer

Flask would be great for this sort of thing. It's minimalistic, lightweight, and your file tree can be as simple as you want. Django, on the other hand, is very good for big projects, as it has many handy built in features. However it's a lot heavier and your file tree has to follow specific guidelines for it to function properly.

For your project I recommend doing the Learn Python Track, followed up by the Learn Flask Track, and that should give you ample knowledge for building simple web-apps with Flask.

Happy coding!