Spaces:
Paused
Paused
GilangAlRusliadi commited on
Commit ·
e50e5eb
1
Parent(s): 92f2a82
Gui
Browse files- app.py +3 -3
- requirements.txt +0 -1
app.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
import os
|
| 2 |
import streamlit as st
|
| 3 |
from streamlit_option_menu import option_menu
|
| 4 |
-
from youtube import youtube
|
| 5 |
from pornhub import pornhub
|
| 6 |
from iwara import iwara
|
| 7 |
-
from megaDL import mega_dl
|
| 8 |
from rule34 import rule34
|
| 9 |
from paipancon import paipancon
|
| 10 |
from trailer import trailer
|
|
@@ -16,7 +16,7 @@ with st.sidebar:
|
|
| 16 |
selected = option_menu("Video Downloader", options,
|
| 17 |
icons=['play', 'fire', 'star', 'moon','gear', 'house', 'lightning'], menu_icon="cast", default_index=0)
|
| 18 |
|
| 19 |
-
functions = [youtube, pornhub, iwara,
|
| 20 |
|
| 21 |
if selected:
|
| 22 |
index = options.index(selected)
|
|
|
|
| 1 |
import os
|
| 2 |
import streamlit as st
|
| 3 |
from streamlit_option_menu import option_menu
|
| 4 |
+
from youtube import youtube, download_youtube
|
| 5 |
from pornhub import pornhub
|
| 6 |
from iwara import iwara
|
| 7 |
+
# from megaDL import mega_dl
|
| 8 |
from rule34 import rule34
|
| 9 |
from paipancon import paipancon
|
| 10 |
from trailer import trailer
|
|
|
|
| 16 |
selected = option_menu("Video Downloader", options,
|
| 17 |
icons=['play', 'fire', 'star', 'moon','gear', 'house', 'lightning'], menu_icon="cast", default_index=0)
|
| 18 |
|
| 19 |
+
functions = [youtube, pornhub, iwara, download_youtube, rule34, paipancon, trailer]
|
| 20 |
|
| 21 |
if selected:
|
| 22 |
index = options.index(selected)
|
requirements.txt
CHANGED
|
@@ -8,5 +8,4 @@ selenium
|
|
| 8 |
pyperclip
|
| 9 |
googletrans==4.0.0-rc1
|
| 10 |
mega.py
|
| 11 |
-
mega
|
| 12 |
beautifulsoup4
|
|
|
|
| 8 |
pyperclip
|
| 9 |
googletrans==4.0.0-rc1
|
| 10 |
mega.py
|
|
|
|
| 11 |
beautifulsoup4
|