BE Weekend Assignment -- Booklist
Posted on Jul 22nd, 2020
Your assignment, if you choose to accept it
There are definitely things in this assignment we haven’t covered in class! That probably seems very scary, but practicing reading documentation and figuring it out is an important part of becoming a developer. I am going to link all necessary documentation below under Resources.
Resources
- DRF - Authentication - read up on
TokenAuthentication
here - djoser - this is a library to add registration to your API. Its documentation is not the best, unfortunately. Luckily for you…
- The Ultimate Tutorial for Django REST Framework: Login and Authentication - this blog post covers setting up djoser in detail and does it well.
- DRF - Filtering - this will show you about how to filter your output based on GET parameters.
- Django - Managers - you can set up default sorting through a custom manager. Note: this is not necessary to complete the project.