Learn Python
111K subscribers
389 photos
9 videos
781 files
118 links
Download and watch the best premium Python Courses.

Buy ads: https://telega.io/c/LearnPython3
Download Telegram
79_The_Tragic_Discovery_of_Handwashing_t_Tests_&_Distributions.zip
1 MB
79 - The Tragic Discovery of Handwashing t-Tests & Distributions
80 - Capstone Project - Predict House Prices.zip
1.7 MB
80 - Capstone Project - Predict House Prices
81 - Professional Portfolio Project - Python Scripting.zip
1.7 KB
81 - Professional Portfolio Project - Python Scripting
82 - Professional Portfolio Project - Python Web Development.zip
47.4 MB
82 - Professional Portfolio Project - Python Web Development
πŸ‘47❀44πŸ”₯5πŸ‘Ž2
πŸ”… The End !
🧿 The last courses are just text courses that's why the size is small
❀138πŸ‘28πŸ”₯17πŸ€”1
πŸ”… Voice Recorder in Python
pip install sounddevice


import sounddevice
from scipy.io.wavfile import write
#sample_rate
fs=44100
#Ask to enter the recording time
second = int(input("Enter the Recording Time in second: "))
print("Recording…\n")
record_voice = sounddevice.rec(int(second * fs),samplerate=fs,channels=2)
sounddevice.wait()
write("MyRecording.wav",fs,record_voice)
print("Recording is done Please check you folder to listen recording")
πŸ‘65❀40πŸ”₯24πŸ‘Ž5
πŸ”… Getting Started with Python for Finance

🌐 Author: Matt Harrison
πŸ”° Level: Beginner

⏰ Duration: 1h 39m

πŸŒ€ Get up and running as a financial analyst using Python, one of the most widely used programming languages in the world.

πŸ“— Topics: Financial Analysis, Python

πŸ“€ Join @python_trainings for more courses
❀23πŸ‘18
πŸ”Έ Full description πŸ”Έ

Python has quickly become one of the most popular and widely used programming languages in the world. And if you work in finance and analyze the stock market or other financial instruments, you need to stay up to date with the most important analytic tools. Join instructor Matt Harrison to get up and running with Python, in this course designed uniquely for financial analysis.Learn how to implement the best practices for loading data and visualizations, performing calculations, ingesting and preparing financial data, coding technical analysis signals, and more. Along the way, test out your new skills in the challenges and coding exercises at the end of each section. Upon completing this course, youll be ready to start leveraging the power of Python to optimize your financial analysis workflow.
πŸ‘21❀4πŸ”₯4πŸ‘1
Getting Started with Python for Finance.zip
238.9 MB
Getting Started with Python for Finance

@LearnPython3
πŸ‘23❀7πŸ”₯2
Getting Started with Python for Finance.zip
238.9 MB
Getting Started with Python for Finance

@LearnPython3
❀21πŸ‘16πŸ”₯3
🎞 Pytube is a lightweight #Python library that enables you to download #YouTube videos and playlists in specific formats and resolutions.

https://github.com/pytube/pytube
πŸ”₯45πŸ‘30❀10πŸ‘Ž1
πŸ”… Advanced Python: Working with Databases

🌐 Author: Kathryn Hodge
πŸ”° Level: Advanced

⏰ Duration: 2h 6m

πŸŒ€ Explore the database options for powering your Python apps. Learn how to create and connect to different types of databases, including SQLite, MySQL, and PostgreSQL.

πŸ“— Topics: Databases, Python

πŸ“€ Join @python_trainings for more courses
πŸ‘12πŸ”₯2πŸ‘Ž1
πŸ”Έ Full description πŸ”Έ

To create functional and useful Python applications, you need a database. Databases allow you to store data from user sessions, track inventory, make recommendations, and more. However, Python is compatible with many options: SQLite, MySQL, and PostgreSQL, among others. Selecting the right database is a skill that advanced developers are expected to master. This course provides an excellent primer, comparing the different types of databases that can be connected through the Python Database API. Instructor Kathryn Hodge teaches the differences between SQLite, MySQL, and PostgreSQL and shows how to use the ORM tool SQLAlchemy to query a database. The final chapters put your knowledge to practical use in two hands-on projects: developing a full-stack application with Python, PostgreSQL, and Flask and creating a data analysis app with pandas and Jupyter Notebook. By the end, you should feel comfortable creating and using databases and be able to decide which Python database is right for you.
πŸ‘21❀5πŸ”₯2πŸ‘Ž1
Advanced Python: Working with Databases.zip
275 MB
Advanced Python: Working with Databases

@LearnPython3
πŸ‘17❀12πŸ‘Ž4
Advanced Python: Working with Databases.zip
275 MB
Advanced Python: Working with Databases

@LearnPython3
πŸ‘20❀10πŸ‘Ž1
πŸ”… Low Battery Notification

pip install psutil

import psutil

battery = psutil.sensors_battery()
plugged = battery.power_plugged
percent = battery.percent

if percent <= 30 and plugged!=True:
# pip install py-notifier
# pip install win10toast
from pynotifier import Notification

Notification(
title="Battery Low",
description=str(percent) + "% Battery remain!!",
duration=5, # Duration in seconds
).send()
πŸ‘83❀46πŸ”₯16πŸ‘Ž12
πŸ”… Low Battery Notification
πŸ‘57❀19πŸ”₯14
πŸ”… Countdown timer

import time

def countdown(t):
while t:
mins, secs = divmod(t, 60)
timer = '{:02d}:{:02d}'.format(mins,secs)
print(timer, end="\r")
time.sleep(1)
t -= 1

print('Timer completed!')

t = input('Enter the time in seconds: ')

countdown(int(t))
πŸ”₯36πŸ‘29❀19πŸ‘Ž11
πŸ”… Countdown timer
πŸ”₯36❀20πŸ‘19
πŸ”… Convert JPG to PNG
from PIL import Image

im = Image.open("naruto.jpg").convert("RGB")
im.save("naruto.png", "png")


πŸ”… Convert PNG to JPG
from PIL import Image

im = Image.open("naruto.png").convert("RGB")
im.save("naruto.jpg", "jpeg")


pip install PIL
πŸ‘38❀9πŸ”₯5
πŸ”… Convert JPG to PNG
❀22πŸ‘9πŸ”₯6
πŸ”…Convert PNG to JPG
πŸ”₯22πŸ‘16❀5