-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.txt
24 lines (21 loc) · 1.35 KB
/
commands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
1. to use django frame work and also add this framewrok in settings- installed app
pip isntall djangorestframework
2. it help in testing it need to indentify which testing is need to be here
pip install coverage
if you use vitural env then type the code below to skip the env file
coverage run --omit='*/venv/*' manage.py test
3. to connect two antothe framework with django
A Django App that adds Cross-Origin Resource Sharing (CORS)
headers to responses. This allows in-browser requests to your Django application from other origins.
pip install django-cors-headers
4. Simple JWT for JWT authentication process- https://django-rest-framework-simplejwt.readthedocs.io/en/latest/getting_started.html#installation
pip install djangorestframework-simplejwt
Documentation of api
5. YAML is a data serialization format designed for human readability and interaction with scripting languages.
PyYAML is a YAML parser and emitter for Python.- https://pypi.org/project/PyYAML/
pip install PyYAML + pip install uritemplate
https://pypi.org/project/uritemplate/ this help schema to prvide a better view
5.1 to get better view use core api for graphiccal interface
pip install coreapi
6. pillow to manupalte images or different oprations
pip install pillow