Packages for Django development
Django REST framework
API 서버 구축 시 필수 패키지
pip install djangorestframework
https://www.django-rest-framework.org/
Simple JWT
API 서버 구축 시 JWT(Json Web Tokne) 인증을 제공하는 패키지
pip install djangorestframework-simplejwt
https://django-rest-framework-simplejwt.readthedocs.io/en/latest/
django-environ
django의 환경설정 정보를 .env 파일로 관리할 수 있도록 제공하는 패키지
pip install django-environ
https://django-environ.readthedocs.io/en/latest/
django-cors-headers
API 서버 구축 시 필수 패키지
다른 애플리케이션에서 Django API 서버에 접근할 수 있도록 Cross-Origin Resource Sharing(CORS) 헤더 정보를 설정한다.
pip install django-cors-headers
https://github.com/adamchainz/django-cors-headers
requests
http 요청을 쉽게 보낸다.
pip install requests