Creating a Simple App Using Django

At first, create a new project with https://www.jetbrains.com/pycharm/ . Then, pip install django Now create a Django project named: devTest django-admin startproject devTest cd devTest Now, create a pp named…

Comments Off on Creating a Simple App Using Django

How to install MySQL on CentOS

sudo yum install mysql-server systemctl status mysqld.service systemctl start mysqld.service systemctl start mysqld mysql mysql > quit.......... #Securing MySQL server deployment mysql_secure_installation #to use mysql now mysql -u root -p

Comments Off on How to install MySQL on CentOS

How to Dockerize Your Django Project with MySQL Database Using Docker Desktop

Install Docker Desktop.Prepare your Django project (create if necessary). Create a Dockerfile to define the Docker environment. Create a docker-compose.yml file to define the services. Update Django settings to connect…

Comments Off on How to Dockerize Your Django Project with MySQL Database Using Docker Desktop

TEXT SUMMARIZATION Using Hugging Face Transformer

Text summarization is the process of distilling the key information from a text while preserving its main ideas and meaning. There are generally two approaches to text summarization:Extractive Summarization: This…

Comments Off on TEXT SUMMARIZATION Using Hugging Face Transformer