This is the third of three posts about building a JSON API with Flask. Make sure you start with part 1 and part 2. In the first post, we used a custom base SQLAlchemy class to serialize and deserializ…
Read more
This is the second of three posts about building a JSON API with Flask. Part 1 arrived yesterday and part 3 is arriving tomorrow. In the previous post we learned how to serialize SQLAlchemy models to/…
Read more
This is the first of three posts about building JSON APIs with Flask. Part 2 and part 3 arrive tomorrow and the day after. I've seen a lot of questions on StackOverflow about how to turn SQLAlchemy mo…
Read more
Update 2020: The new way to manage your Python dependencies is Pipenv. It’s like Yarn for Python with updating, locking, and combined with pyenv even manages your project’s Python version. For an exam…
Read more
Update: Tony Narlock created an amazingly comprehensive comparison of Django vs Flask. If you're testing out a new idea or getting a product going, you have to choose a web stack to build it on. For P…
Read more