Designing a RESTful API with Python and Flask
In recent years REST (REpresentational State Transfer) has emerged as the standard architectural design for web services and web APIs.In this article I'm going to show you how easy it is to create a...
View ArticleWriting a Javascript REST client
Last month I published an article on writing RESTful web services in Python, in which I developed a small web service.Today I'm putting my "front-end" hat to show you how to write a Javascript client...
View ArticleDesigning a RESTful API using Flask-RESTful
This is the third article in which I explore different aspects of writing RESTful APIs using the Flask microframework. Here is the first, and the second.The example RESTful server I wrote before used...
View ArticleRESTful Authentication with Flask
This article is the fourth in my series on RESTful APIs. Today I will be showing you a simple, yet secure way to protect a Flask based API with password or token based authentication.
View ArticleMy PyCon 2015 Sessions
In this short blog post I want to share the two presentations I gave at PyCon 2015, which are now available to watch on YouTube.
View ArticleThe Flask Mega-Tutorial Part XXIII: Application Programming Interfaces (APIs)...
(Great news! There is a new version of this tutorial!)
View ArticleThe Flask Mega-Tutorial, Part XXIII: Application Programming Interfaces (APIs)
This is the twenty third and last installment of the Flask Mega-Tutorial series, in which I'm going to tell you how to extend microblog with an application programming interface (or API) that clients...
View Article