Python Projects & Free Books
38K subscribers
604 photos
93 files
305 links
Python Interview Projects & Free Courses

Admin: @Coderfun
Download Telegram
🔰 100 Days of Code – The Complete Python Pro Bootcamp for 2022

https://t.iss.one/PythonInterviews/118

60 Hours 📦 230 Lessons

At 56+ hours, this Python course is without a doubt the most comprehensive Python course available anywhere online. Even if you have zero programming experience, this course will take you from beginner to professional.

Master Python by building 100 projects in 100 days. Learn data science, automation, build websites, games and apps!

Taught By: Dr. Angela Yu

Download Full Course: https://t.iss.one/PythonInterviews/118
Download All Courses: https://t.iss.one/pythonfreebootcamp
👍10
Python code To download from Youtube

from pytube import YouTube

# Enter the YouTube video URL
url = "https://www.youtube.com/watch?v=dQw4w9WgXcQ"

# Create a YouTube object with the URL
yt = YouTube(url)

# Select the highest resolution video
video = yt.streams.get_highest_resolution()

# Set the output directory and filename
output_dir = "/storage/emulated/0/Documents/"
filename = yt.title+".mp4"

# Download the video
video.download(output_dir, filename)

print(f"Download complete: {filename}")
👍10
Coffee Break Python .pdf
33.8 MB
Coffee Break - Python
50 Workouts to Kickstart your career
Top 50 Coding Questions.pdf
3.3 MB
Top 50 Coding Questions
👍11
How to convert image to pdf in Python

# Python3 program to convert image to pfd
# using img2pdf library
 
# importing necessary libraries
import img2pdf
from PIL import Image
import os
 
# storing image path
img_path = "Input.png"
 
# storing pdf path
pdf_path = "file_pdf.pdf"
 
# opening image
image = Image.open(img_path)
 
# converting into chunks using img2pdf
pdf_bytes = img2pdf.convert(image.filename)
 
# opening or creating pdf file
file = open(pdf_path, "wb")
 
# writing pdf files with chunks
file.write(pdf_bytes)
 
# closing image file
image.close()
 
# closing pdf file
file.close()
 
# output
print("Successfully made pdf file")

pip3 install pillow && pip3 install img2pdf
👍29👎1