Showing posts with label python. Show all posts
Showing posts with label python. Show all posts

Text to Voice convert using Python

 Text to Voice convert using Python



Pre Requirements:
pip install gTTS 

Full Soure code: 

from gtts import gTTS 

import os

yout_text = 'Hey this my own assistant'

language = 'en'

final = gTTS(text=your_text, lang=language, slow=False) 

final.save("first.mp3") 

os.system("vlc first.mp3") 


Thank you for reading my blog ! 

 

Share:

first django project

        First django project


In this tutorial ,  i will explore about "How to create new django first project" . After read this blog you would clear. Then conform you will learn something new

Step 1:

 Install python on your system.  

https://helpingtamizhan.blogspot.com/2020/04/how-to-install-python-in-linux.html

Step 2:

Install pip

https://helpingtamizhan.blogspot.com/2020/04/how-to-install-virtual-environment-in.html

Step 3:

Install virtual environment

https://helpingtamizhan.blogspot.com/2020/04/how-to-install-virtual-environment.html

Step 4:

https://helpingtamizhan.blogspot.com/2020/08/django-first-project.html

Step 5:

django-admin startproject <projectname>

Example:

django-admin startproject mysite

Step 6:

cd mysite

Step 7:

python manage.py runserver



Step 8:

Project run successfully



Thank you for read this tutorial!!

Share:

How to install and setup Virtual Environment

  How to install  and setup Virtual Environment

 

 

   In this video we are discuss about " How to install Virtual Environment " Linux and Windows . 
  Virtual Environment is one the best feature in python. It is create virtual hard storage in your system
 
 
Pre requirement
 
python (Installation tutorial)
pip (Installation tutorial)
 
Installation Guide
pip install virtualenv
 

 
            or

pip3 install virtualenv
 

 
Create Virtual Environment
virutualenv <anyname>
 

 
Activate Virtual Environment
 
source anyname/bin/activate 
 

 
Windows
Installation Guides are same
Create new virtual environment is same
Activate step 
 
In windows platform
  \env\Scripts\activate.bat
 
I hope guys you enjoyed to watch this tutorial 
If you have any doubts please ping me or just put the comment section
Thank you !!!!

Share:

How to Install python pip


 How to Install pip

   In this tutorial we are discuss about "How to install PIP ".
   PIP is used for download a python packages for a  very simple way.
   Most of the developers or programmers create a own python packages and then published for free. You can access from any where. 
   Example packages for you understanding purpose .Tensorflow , Keras, Numpy, pandas  
Pre requirements 
  • python2
  • python3
Python installation tutorials
https://helpingtamizhan.blogspot.com/2020/04/how-to-install-python-in-linux.html
Installation Guide
Step 1 :
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
 or
 
https://bootstrap.pypa.io/get-pip.py

Step 2 :
 Then you go to the your download directory.
 https://bootstrap.pypa.io/get-pip.py 
 
python get-pip.py 

 
python3 get-pip.py 

 Step 3 :
 check the command pip and pip3 work or not
   I hope you enjoyed this tutorial .
   If you have any doubts ping me on comment section or social media 
 
 

Share:

How to install Python in Linux


            How to install Python in Linux
 
 In this tutorial we are discuss about "how to install python in Linux".
 
Python Overview:
 
    Python is the one of programming language. Python is very familiar . Python very simple and human readable language. Everyone can easy to learn.
    Python have two major classification. One is Python 2XX and second one is Python 3XX.
    Python3 is the current most of them use to our project and companies and etc,..
 
Installation Guide: 
 
Python2  
 

sudo apt-get install python

 
Python3 
sudo apt-get install python3


  
    Thank you for visiting my blogger. If you have any doubt and face any problem on installation time just contact me social media on directly. 
    I hope you would enjoyed this tutorial !!!



 

Share: