The "Netflix DIO - REST API Development with Django" project is a repository dedicated to a REST API development course using the Django framework offered by Digital Innovation One (DIO) . This project was developed to provide a solid and practical foundation for developers who want to learn how to create, secure, and test high-quality REST APIs 🔐🔏
This project encompasses the use of:
🔐 Tokens for authentication: Tokens are generated and granted to authenticated users, providing a high level of security
🐍 Development with Django: Built using the Django, widely recognized for its robustness and efficiency in developing web applications
🖥️ Data Serialization: An essential technique for transforming complex objects into web-compatible formats
✍🏽 Practical Tests: This project can be tested through GET and POST requests using Postman
🚓 Secure Access Control: The project implements how to establish secure access control for API endpoints
⚠ Useful commands ⚠
Framework installation
🔴 pip install django
Command to create a django project
🔴 django-admin startproject project_netflix-dio .
Command to run a django project
🔴 python manage.py runserver
Command to create an app
🔴 python manage.py startapp register