shethjenil
commited on
Upload 2 files
Browse files- YTSEARCH.exe +2 -2
- YTSEARCH.py +4 -1
YTSEARCH.exe
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cd7a0df893c75fd6e96fe1095b89bf3776005ae68e4c664135099aad62d5eca5
|
3 |
+
size 11937143
|
YTSEARCH.py
CHANGED
@@ -3,4 +3,7 @@ from tkinter.simpledialog import askstring
|
|
3 |
from webbrowser import WindowsDefault
|
4 |
chrome = WindowsDefault()
|
5 |
while True:
|
6 |
-
|
|
|
|
|
|
|
|
3 |
from webbrowser import WindowsDefault
|
4 |
chrome = WindowsDefault()
|
5 |
while True:
|
6 |
+
text = askstring("Search", "Search for a video")
|
7 |
+
if text == None:
|
8 |
+
break
|
9 |
+
chrome.open_new(Search(text).results[0].watch_url)
|