π How to get operating system information using python platform π
π₯ YouTube Video: https://youtu.be/ws4O74mUD1c
π Source Code: [https://www.samcodehub.com/Platform/platform.html]
Description: In this project, we begin by importing the required modules. We then use the Platform module to retrieve and display system-related information, such as the operating system, username, system platform, processor, and architecture.
#Python #Programming #OpenSource #Project
π₯ YouTube Video: https://youtu.be/ws4O74mUD1c
π Source Code: [https://www.samcodehub.com/Platform/platform.html]
Description: In this project, we begin by importing the required modules. We then use the Platform module to retrieve and display system-related information, such as the operating system, username, system platform, processor, and architecture.
#Python #Programming #OpenSource #Project
YouTube
How To Get Operating System Information By Python Platform module-python libraries tutorial
The platform module in Python is used to access the underlying platform's data, such as, hardware, operating system, and interpreter version information. The platform module includes tools to see the platform's hardware, operating. system, and interpreterβ¦
π How to get stock data using python yfinance library π
π₯ YouTube Video: https://youtu.be/4m7WfYYs2Jc
π Source Code: https://www.samcodehub.com/Yfinance/yfinance.html
Description: The following example demonstrates how to use yfinance to retrieve historical stock data for the Amazon stock (AMZN) between specific dates.
#Python #Programming #OpenSource #Project #Stock #Finance
π₯ YouTube Video: https://youtu.be/4m7WfYYs2Jc
π Source Code: https://www.samcodehub.com/Yfinance/yfinance.html
Description: The following example demonstrates how to use yfinance to retrieve historical stock data for the Amazon stock (AMZN) between specific dates.
#Python #Programming #OpenSource #Project #Stock #Finance
YouTube
How To Get Stock Data By Python Yfinance Package-python libraries tutorial
Yfinance is a python package that enables us to fetch historical market data from Yahoo Finance API in a Pythonic way. It becomes so easy for all the Python developers to get data with the help of yfinance. We can easily download historical stock data fromβ¦
π How to Create a cool table of data using Python PrettyTable library.π
π₯ YouTube Video: https://youtu.be/ECHA900rYJE
π Source Code: https://www.samcodehub.com/PrettyTable/PrettyTable.html
Description: PrettyTable is a Python library that allows you to create ASCII tables in an easy and visually appealing format. It is particularly useful for displaying tabular data in a human-readable way. The library provides a simple interface to create tables with custom column names and rows.
#Python #Programming #OpenSource #Project #tableofdata #database #SourceCode
π₯ YouTube Video: https://youtu.be/ECHA900rYJE
π Source Code: https://www.samcodehub.com/PrettyTable/PrettyTable.html
Description: PrettyTable is a Python library that allows you to create ASCII tables in an easy and visually appealing format. It is particularly useful for displaying tabular data in a human-readable way. The library provides a simple interface to create tables with custom column names and rows.
#Python #Programming #OpenSource #Project #tableofdata #database #SourceCode
YouTube
How To Create A Table Of Data By Python PrettyTable Library-python libraries tutorial
PrettyTable is a Python library that is used to represent tabular data in visually appealing ASCII tables. It is quick and easy to use.
https://pypi.org/project/prettytable/
https://pypi.org/project/prettytable/
π How to Rotate your windows screen using Python Rotate-Screen library .π
π₯ YouTube Video: https://youtu.be/geZ-cz3WGo8
π Source Code: https://www.samcodehub.com/Rotate/rotate.html
Description:
The Rotate-Screen library uses platform-specific methods to interact with the screen rotation functionality. It is designed to work on various operating systems, including Windows, macOS, and Linux. The library provides four main methods to rotate the screen:
set_landscape(): Rotates the screen to landscape mode (normal orientation).
set_landscape_flipped(): Rotates the screen to landscape mode, flipped upside down.
set_portrait_flipped(): Rotates the screen to portrait mode, flipped left to right.
set_portrait(): Rotates the screen to portrait mode (normal orientation).
When you call one of these methods on the primary display object, the screen orientation will change accordingly.
#Python #Programming #OpenSource #Project #SourceCode #Rotate-Screen
π₯ YouTube Video: https://youtu.be/geZ-cz3WGo8
π Source Code: https://www.samcodehub.com/Rotate/rotate.html
Description:
The Rotate-Screen library uses platform-specific methods to interact with the screen rotation functionality. It is designed to work on various operating systems, including Windows, macOS, and Linux. The library provides four main methods to rotate the screen:
set_landscape(): Rotates the screen to landscape mode (normal orientation).
set_landscape_flipped(): Rotates the screen to landscape mode, flipped upside down.
set_portrait_flipped(): Rotates the screen to portrait mode, flipped left to right.
set_portrait(): Rotates the screen to portrait mode (normal orientation).
When you call one of these methods on the primary display object, the screen orientation will change accordingly.
#Python #Programming #OpenSource #Project #SourceCode #Rotate-Screen
YouTube
How To Rotate Screen By Python Rotate-Screen Package
We can easily rotate the computer screen using keyboard shortcut that is Ctrl+Alt+Arrow but in this post we will learn about how we can rotate the screen using simple python script. rotate-screen is a small python package that allows us to implement the computer'sβ¦
π How to get phone numbers information using python Phonenumbers library. π
π₯ YouTube Video: https://youtu.be/OZDhOs_b52Y
π Source Code:
https://www.samcodehub.com/Phonenumbers/phonenumbers.html
Description: This project demonstrates how to use the Python Phonenumbers library to handle phone numbers effectively. It begins by parsing a given phone number using the phonenumbers.parse() function. Next, it retrieves and prints the associated country name using the geocoder.description_for_number() function. Similarly, it fetches and displays the service provider using the carrier.name_for_number() function. Finally, the project demonstrates how to retrieve and print the timezones associated with the phone number using the timezone.time_zones_for_number() function. By following this example, users can easily manipulate and extract useful information from phone numbers in Python applications.
#Python #Programming #OpenSource #Project #SourceCode
π₯ YouTube Video: https://youtu.be/OZDhOs_b52Y
π Source Code:
https://www.samcodehub.com/Phonenumbers/phonenumbers.html
Description: This project demonstrates how to use the Python Phonenumbers library to handle phone numbers effectively. It begins by parsing a given phone number using the phonenumbers.parse() function. Next, it retrieves and prints the associated country name using the geocoder.description_for_number() function. Similarly, it fetches and displays the service provider using the carrier.name_for_number() function. Finally, the project demonstrates how to retrieve and print the timezones associated with the phone number using the timezone.time_zones_for_number() function. By following this example, users can easily manipulate and extract useful information from phone numbers in Python applications.
#Python #Programming #OpenSource #Project #SourceCode
YouTube
How To Get Phone Number Information By PYTHON Phonenumbers Library-python libraries tutorial
Phonenumbers is an open-source Python library that is used for accessing information for phone numbers. It also helps in validating a phone number, parsing a phone number, etc.
https://pypi.org/project/phonenumbers/
https://pypi.org/project/phonenumbers/
π Face Expression Emoji Printer using python print(). π
π₯ YouTube Video: https://youtu.be/Mf6i6K4qS6c
π Source Code:
https://www.samcodehub.com/Emoji/emoji.html
Description: The Emoji Face Expression Printer is a Python project that utilizes Unicode escape sequences to display various facial expressions as emojis in the terminal. The project showcases a collection of five different face emojis, each representing a unique emotion. By running the Python code, users can see these expressive emojis printed on the terminal screen.
#Python #Programming #OpenSource #Project #SourceCode #Emoji
π₯ YouTube Video: https://youtu.be/Mf6i6K4qS6c
π Source Code:
https://www.samcodehub.com/Emoji/emoji.html
Description: The Emoji Face Expression Printer is a Python project that utilizes Unicode escape sequences to display various facial expressions as emojis in the terminal. The project showcases a collection of five different face emojis, each representing a unique emotion. By running the Python code, users can see these expressive emojis printed on the terminal screen.
#Python #Programming #OpenSource #Project #SourceCode #Emoji
YouTube
HOW TO MAKE EMOJI'S BY PYTHON
WE CAN WRITE EMOJI'S CODE IN PYTHON AND PRINT THEM EASILY
π Building an Advanced Text-to-Speech Converter App Project. π
π₯ YouTube Video: https://youtu.be/0ldMgo8r9Ck
π Source Code:
https://www.samcodehub.com/Pyttsx3/pyttsx3.html
Description: This app is an advance text-to-speech (TTS) converter that allows users to convert any written text into spoken words.
The user interface of the app is built using the Tkinter module in Python. The app has a text box where users can enter any text they want to convert to speech. Once the user enters the text, they can either convert and play the text as speech, or save it as an audio file.
The app allows users to change the speed and voice of the speech output. Users can select either male or female voices and adjust the speed of the speech output using the sliders provided in the user interface.
#Python #Programming #OpenSource #Project #SourceCode #TexttoSpeech #Convertor
π₯ YouTube Video: https://youtu.be/0ldMgo8r9Ck
π Source Code:
https://www.samcodehub.com/Pyttsx3/pyttsx3.html
Description: This app is an advance text-to-speech (TTS) converter that allows users to convert any written text into spoken words.
The user interface of the app is built using the Tkinter module in Python. The app has a text box where users can enter any text they want to convert to speech. Once the user enters the text, they can either convert and play the text as speech, or save it as an audio file.
The app allows users to change the speed and voice of the speech output. Users can select either male or female voices and adjust the speed of the speech output using the sliders provided in the user interface.
#Python #Programming #OpenSource #Project #SourceCode #TexttoSpeech #Convertor
π Building Your Own Python Alexa Assistant: A Step-by-Step Tutorial with SpeechRecognition, pyttsx3, pywhatkit, and pyjokes Project. π
π₯ YouTube Video: https://youtu.be/4aK3HgkSJIE
π Source Code:
https://www.samcodehub.com/Pyttsx3/pyttsx3.html
Description: This code implements a simple virtual assistant that can perform a few tasks based on the user's spoken commands. When the program is run, it initializes several modules for speech recognition, text-to-speech conversion, playing a song on YouTube, getting the current time, retrieving information from Wikipedia, and getting a random joke.
#Python #Programming #OpenSource #Project #SourceCode #VirtualAssistant #Alexa
π₯ YouTube Video: https://youtu.be/4aK3HgkSJIE
π Source Code:
https://www.samcodehub.com/Pyttsx3/pyttsx3.html
Description: This code implements a simple virtual assistant that can perform a few tasks based on the user's spoken commands. When the program is run, it initializes several modules for speech recognition, text-to-speech conversion, playing a song on YouTube, getting the current time, retrieving information from Wikipedia, and getting a random joke.
#Python #Programming #OpenSource #Project #SourceCode #VirtualAssistant #Alexa
YouTube
How To Make Your Own Alexa Assistant Using Python SpeechRecognition, pyttsx3 & pywhatkit & pyjokes ,
# pip install pyttsx3 to speak out or text to speech
# pip install SpeechRecognition for the robot to listen to our voice
# pip install pywhatkit to advance control on browser
# pip install wikipedia to get data from wikipedia
# pip install pyjokesβ¦
# pip install SpeechRecognition for the robot to listen to our voice
# pip install pywhatkit to advance control on browser
# pip install wikipedia to get data from wikipedia
# pip install pyjokesβ¦
π Python PDF to Audio Conversion: A Step-by-Step Tutorial with PYTTSX3 and PYPDF2 Libraries Project. π
π₯ YouTube Video: https://youtu.be/BeTmDDOPVyc
π Source Code:
https://www.samcodehub.com/Pyttsx3/pyttsx3.html
Description: This step-by-step tutorial demonstrates how to utilize the Python PyPDF2 library to read a PDF file and extract the text from a specific page. By harnessing the power of the pyttsx3 library, you will learn how to convert this extracted text into speech. Follow along as we dive into the process of converting PDF documents to audio, enabling you to enhance accessibility and explore new ways of consuming textual information.
#Python #Programming #OpenSource #Project #SourceCode #PDFtoAudio #convertor
π₯ YouTube Video: https://youtu.be/BeTmDDOPVyc
π Source Code:
https://www.samcodehub.com/Pyttsx3/pyttsx3.html
Description: This step-by-step tutorial demonstrates how to utilize the Python PyPDF2 library to read a PDF file and extract the text from a specific page. By harnessing the power of the pyttsx3 library, you will learn how to convert this extracted text into speech. Follow along as we dive into the process of converting PDF documents to audio, enabling you to enhance accessibility and explore new ways of consuming textual information.
#Python #Programming #OpenSource #Project #SourceCode #PDFtoAudio #convertor
YouTube
How To Convert PDF To AUDIO Using Python PYTTSX3 & PYPDF2 libraries
pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline and is compatible with both Python 2 and 3. An application invokes the pyttsx3. init() factory function to get a reference to a pyttsx3. Engine instance.β¦
π Transcribing Videos with Python SpeechRecognition and pydub Libraries Project. π
π₯ YouTube Video: https://youtu.be/0bBtEAA7WVY
π Source Code:
https://www.samcodehub.com/SpeechRecognition/speechrecognition.html
Description: In this comprehensive guide, we will explore how to transcribe videos using Python's SpeechRecognition and pydub libraries. By following the step-by-step instructions and examples, you'll gain the necessary knowledge to extract text from videos and unlock a wide range of possibilities in video transcription.
#Python #Programming #OpenSource #Project #SourceCode #Transcribe #SpeechRecognition
π₯ YouTube Video: https://youtu.be/0bBtEAA7WVY
π Source Code:
https://www.samcodehub.com/SpeechRecognition/speechrecognition.html
Description: In this comprehensive guide, we will explore how to transcribe videos using Python's SpeechRecognition and pydub libraries. By following the step-by-step instructions and examples, you'll gain the necessary knowledge to extract text from videos and unlock a wide range of possibilities in video transcription.
#Python #Programming #OpenSource #Project #SourceCode #Transcribe #SpeechRecognition
YouTube
How To Transcribe A Video using Python SpeechRecognition & pydub libraries
Speech recognition is a machine's ability to listen to spoken words and identify them. You can then use speech recognition in Python to convert the spoken words into text, make a query or give a reply. You can even program some devices to respond to theseβ¦
π Converting Text to Audio with Python GTTS Library Project. π
π₯ YouTube Video: https://youtu.be/bV8T9y-Yw5Y
π Source Code:
https://www.samcodehub.com/SpeechRecognition/speechrecognition.html
Description: Imagine having the ability to effortlessly convert text into audio files with just a few lines of code. With the help of the gTTS (Google Text-to-Speech) library in Python, this task becomes a reality. In this comprehensive guide, we will walk you through the process of using the gTTS library to convert the text from a file named "sample.txt" into an audio file in the widely supported MP3 format. The resulting audio file will be conveniently saved as "audio.mp3".
#Python #Programming #OpenSource #Project #SourceCode #TexttoSpeech #SpeechRecognition #Convertor
π₯ YouTube Video: https://youtu.be/bV8T9y-Yw5Y
π Source Code:
https://www.samcodehub.com/SpeechRecognition/speechrecognition.html
Description: Imagine having the ability to effortlessly convert text into audio files with just a few lines of code. With the help of the gTTS (Google Text-to-Speech) library in Python, this task becomes a reality. In this comprehensive guide, we will walk you through the process of using the gTTS library to convert the text from a file named "sample.txt" into an audio file in the widely supported MP3 format. The resulting audio file will be conveniently saved as "audio.mp3".
#Python #Programming #OpenSource #Project #SourceCode #TexttoSpeech #SpeechRecognition #Convertor
YouTube
How To Convert Text To Audio By Python GTTS Library-python libraries tutorial
gTTS (Google Text-to-Speech)is a Python library and CLI tool to interface with Google Translate text-to-speech API. We will import the gTTS library from the gtts module which can be used for speech translation. The text variable is a string used to storeβ¦
π Emotion Analysis of Facial Expressions with Python: Utilizing Numpy, Deepface Framework, and cv2 Library Project. π
π₯ YouTube Video: https://youtu.be/ipNhJgULdAs
π Source Code:
https://www.samcodehub.com/Numpy/numpy.html
Description: The project leverages the versatility and computational prowess of Python, accompanied by the NumPy library to facilitate efficient numerical operations. With the Deepface framework at its core, which combines state-of-the-art deep learning models, the project enables accurate emotion recognition from facial images. Additionally, the integration of the cv2 library empowers seamless image processing and facial feature extraction, creating a robust pipeline for emotion analysis.
#Python #Programming #OpenSource #Project #SourceCode #TexttoSpeech #FaceDetection #cv2 #numpy #DeepFace
π₯ YouTube Video: https://youtu.be/ipNhJgULdAs
π Source Code:
https://www.samcodehub.com/Numpy/numpy.html
Description: The project leverages the versatility and computational prowess of Python, accompanied by the NumPy library to facilitate efficient numerical operations. With the Deepface framework at its core, which combines state-of-the-art deep learning models, the project enables accurate emotion recognition from facial images. Additionally, the integration of the cv2 library empowers seamless image processing and facial feature extraction, creating a robust pipeline for emotion analysis.
#Python #Programming #OpenSource #Project #SourceCode #TexttoSpeech #FaceDetection #cv2 #numpy #DeepFace
YouTube
How To Do Face Emotions Analyzing Using Python Deepface framework & cv2 library
Deepface is a lightweight face recognition and facial attribute analysis (age, gender, emotion and race) framework for python. It is a hybrid face recognition framework wrapping state-of-the-art models: VGG-Face , Google FaceNet , OpenFace , Facebook DeepFaceβ¦