23
Today I Learned How to Make a Static API With Flask & Sqlite
This post was initially adapted from here. I wrote this to make it simpler to understand, more like a straight forward approach to creating API's in Python using flask routes.
Link to repository








In the
/api/v1/resources/books?column_filter
we notice that inside the api_filter(), the variable query
is declared as a string. However, right below follows a series of boolean expressions that make our filtering possible.Within these booleans, all the operations inside are pretty much the same. Our variable query gets populated by an additional string each step of the way; in the first place being we have:
query += ' id=? AND'
. But finally at the end of the logical expressions; our results are assigned to
cur.execute()
, which holds our query and column_filter(s). Basically meaning when our JSON gets displayed, to_filter.fetchall
is going to show us a display of all the filters inside our query statement. Just because you have the query, it don't mean I will show you the results.
Even if the SQL database finds our results, it's still our repsonsibliity as the developer to
fetchall()
using a filter in this case, it's to_filter, populated as a result of the prior logical expression. 
dict_factory iterates our database while keeping track of our index and Object. Finally, the result is a an Object that then prepares us to turn the data into JSON format for us to interact with on the front-end.
What would be really cool to see is how to write to our database coming from JSON format into our SQLITE database.
23