Posts

Showing posts with the label code

Why HTTPS matters? What is HTTPS? - Codin India

  What is HTTP? HTTP stands for Hyper Text Transfer Protocol. HTML is a protocol which allows the fetching of resources, such as HTML documents. It is foundation of any data exchange on the web. It is client-server protocol which means requests are initiated by the recipient on web servers. It transfers data from one webpage to other web pages and from client side to server side and vice-versa.    What is HTTPS? HTTPS is an advanced version of HTTP. Where "s" in HTTPS stands for secure. It is used for a secure connections between web pages. It is used where there is any type of Data Transfers, transaction etc. You should always protect all of your websites with HTTPS, even if they don't handle sensitive data communications. Aside from providing critical security and data integrity for both your websites and users' personal information, Https is a requirement for many new browser features, particularly those required for progressive web pages. Summary:- Intruders both

Text to Speech using python

Image
Text2speech Today's video we are going to create Text to speech using python First of all you have to install pyttsx3 library Pyttsx3- Pypl You can just write pip install pyttsx3 in your cmd or Powershell. It will start installing in your system environment. After installation, open your text editor or IDE. Import libraries Just Import pyttsx3 import pyttsx3 as pt Start engine Now it's time to start engine of pyttsx3 module. engine= pt.init() pt is the alias that we used instead of pyttsx3. we used init() method to initialize pyttsx3 library. Here engine is the variable used to start the engine. say() say() is the pyttsx3 method to say or speek the written text. engine.say("Hello World") by calling the engine.say() method we are going to make our computer able to speek