Building a car pooling API using Django
In this 8 part series, I will be showing you how use Django to build RESTful APIs. In the process, I will build a basic carpooling API that is fairly usable. The complete code can be found on my GitHub if you want to pull and play around with it.
- Part 1: Initial setup and create User model
- Part 2: Add validation and unit tests to the User model
- Part 3: Add Vehicle, Place and Trip models
- Part 4: Add DjangoRestFramework and User ViewSet
- Part 5: Add ViewSets for the rest of the models
- Part 6: Add filtering support
- Part 7: Unit testing the REST API
- Part 8: Adding authentication to the REST API