Python YouTube Downloader with Pytube Python YouTube Video Downloader  is an application to download videos from YouTube. This provides users to download videos they need in their devices and watch them offline. Youtube Video Downloader Python Project The Youtube downloader project is a python project. The object of this project is to download any type of video in a fast and easy way from youtube in your device. In this python project, user has to copy the youtube video URL that they want to download and simply paste that URL in the ‘paste link here’ section and click on the download button, it will start downloading the video. When video downloading finishes, it shows a message ‘downloaded’ popup on the window below the download button. Steps to Develop Python YouTube Downloader Project Prerequisites To implement this project we use basic concept of python, tkinter, pytube library. Tkinter  is a standard GUI library and it is one of the easiest ways to build a GUI appl...

 

-python digital watch module:

-making digital watch from python :

Steps :

  • firstly you have to download python with a suitable notebook
  • highly recommended notebook is visual studio code..

 

complete source code:
import time
from tkinter import*
from tkinter import font
from tkinter.font import Font
from typing import ForwardRef

root = Tk()
root.geometry("400x200+50+6")
root.configure(background='black')
root.resizable(0,0)

root.overrideredirect(1)
def start():
    Text=time.strftime("%H:%M:%S")
    Label.config(text=Text)
    Label.after(200,start)

Label=Label(root,font=('ds_digital',50,'bold'),bg='black',fg='cyan',bd=50)
Label.grid(row=0,column=1)

start()
print('done')
root.mainloop()



some points to remember :

if you wants to change background color :

Label=Label(root,font=('ds_digital',50,'bold'),bg='black',fg='cyan',bd=50

change bg='black' , to bg='color you wants to add '  .

if  you wants to change watch color:

Label=Label(root,font=('ds_digital',50,'bold'),bg='black',fg='cyan',bd=50)

change fg='cyan' , to fg='color you wants to add'  .

 if you wants to change dimension of watch:

root.geometry("400x200+50+6")

change root.geometry("400x200+50+6") , to root.geometry(" dimension you want")   .

here 400=width,

        200=height,

        50=right

         6=top

if you wants to change watch font style:

Label=Label(root,font=('ds_digital',50,'bold'),bg='black',fg='cyan',bd=50)

change ..........font=('ds_digital' ....... to , .......font=(" font style name"...... 


here your watch gets ready to be used:

for more dm me on instagram at 

Comments

Popular posts from this blog