December 2018
Intermediate to advanced
500 pages
12h 33m
English
In this chapter, we designed a RESTful API to interact with a simple SQLite database and perform CRUD operations with games. We defined the requirements for our API and we understood the tasks performed by each HTTP method. We set up a virtual environment with Django and Django REST Framework.
We created a model to represent and persist games and we executed migrations in Django. We learned to manage serialization and serialization of game instances into JSON representations with Django REST Framework. We wrote API views to process the different HTTP requests and we configured the URL patterns list to route URLs to views.
Finally, we started the Django development server and we used command-line tools to compose and send HTTP requests ...