Skip to content

Commit a39f9f8

Browse files
committed
Applied requested changes
1 parent cbb17d9 commit a39f9f8

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Twitter_Video_Downloader/Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Twitter Video Downloader
22

3-
A GUI used to download
3+
A GUI downloader used to download Twitter videos by providing its link.
44

5-
# Installation
5+
## Installation
66

77
> pip3 install -r requirements.txt
88
9-
# Usage
9+
## Usage
1010

1111
Provide the Twitter video URL in the field and click `Download`.
1212

13-
# Output
13+
## Output
1414

1515
Downloaded video you desired in the same directory of the script.
1616

17-
# Authors
17+
## Authors
1818

1919
Written by [XZANATOL](https://www.github.com/XZANATOL).
2020

Twitter_Video_Downloader/script.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ def Invalid_URL():
1111

1212
def Download_vid():
1313
""" Validates link and Downloads Video """
14+
Download_Window.delete("0.0", "end")
1415
global URL_Val
1516
url = URL_Val.get()
1617

@@ -53,6 +54,7 @@ def Download_vid():
5354
Download_button.place(x=250, y=80, width=100)
5455

5556
Download_Window = Text(main, font=("Calibri", 9), bg="black", fg="white", bd=1, relief=SUNKEN, wrap=WORD)
57+
Download_Window.insert(END, "Welcome to Twitter Video Downloader, Provide a Twitter video link in the above box and click download to start the process. :D")
5658
Download_Window.place(x=30, y=120, width=530, height=250)
5759

5860
Status = Label(main, text="Hello!! :D", fg="orange", font=("Calibri", 9), bd=1, relief=SUNKEN, anchor=W, padx=3)

0 commit comments

Comments
 (0)