- Translate Documents with multiple Translator
- Proofreading with GPT-3 davinci model
- Automatic Blog Maker with GPT-3 davinci model
Programming Language
- Python3
Framework
- Django
- Django REST framework
Libraries
- OpenAI
- Deep_translator
- Pdf2docx
- Beautifulsoup4
- pypandoc
- drf-yasg
- SpeechRecognition
- django-environ
- django-cors-headers
Tools
- GPT-3
- FFmpeg
Windows
-
Make sure you have python installed on your pcopen cmd or PowerShell
python -m venv yourvenv
Linux and MAC
- Open terminal
sudo apt-get install python3-pip -y && sudo apt-get install python3-venv -y
After that just type
python3 -m venv yourvenv
Windows
yourvenv/Scripts/activate
- If show any error then open Powershell in admin then type
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
and press "A" then Enter.
Linux
. yourvenv/bin/activate
- Install the requirement.txt
Windows
pip install -r requirement.txt
Linux
pip3 install -r requirement.txt
python manage.py runserver ip:port
- Example
python manage.py runserver 0.0.0.0:8000