Coding Challenge: Building REST API
Test yourself on building a REST API by solving the challenge in this lesson.
Problem
You have implemented a flask-based REST API server that stores a variable serverData. The contents of this data do not change very frequently so you want to enable caching using ETag. The server code given below works fine without using caching and returns the ...
Ask