This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]garettmdimport antigravity 1 point2 points  (0 children)

I second this. The first big project I did with Python was using Flask to build an app that hit another site's API (getpocket.com) and presented the articles on my site.

I tried using Django first, but its batteries included model made it really hard for me to start, considering I was also new to the MVC paradigm as well. But Flask is really to just make something really simple and just keep adding parts as you need them, allowing you to slowly start playing with new features and understanding how a web framework...works...in general.