Spaces:
Paused
Paused
GilangAlRusliadi commited on
Commit ·
72aa956
1
Parent(s): 03ed6ac
Anjay
Browse files- app.py +1 -1
- bunkrr.py +1 -0
- iwara.py +1 -0
- megaDL.py +1 -1
- other.py → others.py +0 -0
- paipancon.py +1 -2
- pornhub.py +1 -1
- rule34.py +1 -0
- sankaku.py +1 -0
- trailer.py +1 -2
- youtube.py +1 -1
app.py
CHANGED
|
@@ -8,7 +8,7 @@ from iwara import iwara
|
|
| 8 |
from rule34 import rule34
|
| 9 |
from paipancon import paipancon
|
| 10 |
from trailer import trailer
|
| 11 |
-
from
|
| 12 |
|
| 13 |
# Navigasi Sidebar
|
| 14 |
options = ['Youtube', 'Pornhub (Not Work)', 'Iwara (Not Work)', 'Mega', 'Rule34', 'Paipancon', 'Trailer']
|
|
|
|
| 8 |
from rule34 import rule34
|
| 9 |
from paipancon import paipancon
|
| 10 |
from trailer import trailer
|
| 11 |
+
from others import *
|
| 12 |
|
| 13 |
# Navigasi Sidebar
|
| 14 |
options = ['Youtube', 'Pornhub (Not Work)', 'Iwara (Not Work)', 'Mega', 'Rule34', 'Paipancon', 'Trailer']
|
bunkrr.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
from bs4 import BeautifulSoup
|
| 2 |
import re
|
|
|
|
| 3 |
|
| 4 |
def get_info_bunkrr(soup: BeautifulSoup):
|
| 5 |
# Mencari judul video di elemen <title>
|
|
|
|
| 1 |
from bs4 import BeautifulSoup
|
| 2 |
import re
|
| 3 |
+
from others import *
|
| 4 |
|
| 5 |
def get_info_bunkrr(soup: BeautifulSoup):
|
| 6 |
# Mencari judul video di elemen <title>
|
iwara.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import requests, hashlib, os
|
|
|
|
| 2 |
|
| 3 |
api_url = 'https://api.iwara.tv'
|
| 4 |
file_url = 'https://files.iwara.tv'
|
|
|
|
| 1 |
import requests, hashlib, os
|
| 2 |
+
from others import *
|
| 3 |
|
| 4 |
api_url = 'https://api.iwara.tv'
|
| 5 |
file_url = 'https://files.iwara.tv'
|
megaDL.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import os
|
| 2 |
import shutil
|
| 3 |
from mega import Mega
|
| 4 |
-
from
|
| 5 |
|
| 6 |
def download_mega(name, directory, url):
|
| 7 |
if not os.path.exists(directory):
|
|
|
|
| 1 |
import os
|
| 2 |
import shutil
|
| 3 |
from mega import Mega
|
| 4 |
+
from others import *
|
| 5 |
|
| 6 |
def download_mega(name, directory, url):
|
| 7 |
if not os.path.exists(directory):
|
other.py → others.py
RENAMED
|
File without changes
|
paipancon.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
| 1 |
import requests
|
| 2 |
import re
|
| 3 |
-
|
| 4 |
-
from other import convert_japanese_to_romaji
|
| 5 |
|
| 6 |
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
|
| 7 |
|
|
|
|
| 1 |
import requests
|
| 2 |
import re
|
| 3 |
+
from others import *
|
|
|
|
| 4 |
|
| 5 |
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
|
| 6 |
|
pornhub.py
CHANGED
|
@@ -5,7 +5,7 @@ import sys
|
|
| 5 |
import youtube_dl
|
| 6 |
from datetime import datetime, timedelta
|
| 7 |
from moviepy.editor import VideoFileClip
|
| 8 |
-
from
|
| 9 |
|
| 10 |
def download_pornhub(url, resolusi, nama_channel, judul_video):
|
| 11 |
download = f"/home/user/app/Hasil Download/Pornhub/{nama_channel}"
|
|
|
|
| 5 |
import youtube_dl
|
| 6 |
from datetime import datetime, timedelta
|
| 7 |
from moviepy.editor import VideoFileClip
|
| 8 |
+
from others import *
|
| 9 |
|
| 10 |
def download_pornhub(url, resolusi, nama_channel, judul_video):
|
| 11 |
download = f"/home/user/app/Hasil Download/Pornhub/{nama_channel}"
|
rule34.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
from bs4 import BeautifulSoup
|
| 2 |
import json
|
|
|
|
| 3 |
|
| 4 |
def get_info_rule34(soup: BeautifulSoup):
|
| 5 |
# Mencari judul video di elemen dengan class title_video
|
|
|
|
| 1 |
from bs4 import BeautifulSoup
|
| 2 |
import json
|
| 3 |
+
from others import *
|
| 4 |
|
| 5 |
def get_info_rule34(soup: BeautifulSoup):
|
| 6 |
# Mencari judul video di elemen dengan class title_video
|
sankaku.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
from bs4 import BeautifulSoup
|
|
|
|
| 2 |
|
| 3 |
def get_info_sankaku(soup: BeautifulSoup):
|
| 4 |
# Find the artist information
|
|
|
|
| 1 |
from bs4 import BeautifulSoup
|
| 2 |
+
from others import *
|
| 3 |
|
| 4 |
def get_info_sankaku(soup: BeautifulSoup):
|
| 5 |
# Find the artist information
|
trailer.py
CHANGED
|
@@ -2,8 +2,7 @@ from bs4 import BeautifulSoup
|
|
| 2 |
import requests
|
| 3 |
import os
|
| 4 |
import json
|
| 5 |
-
from
|
| 6 |
-
|
| 7 |
|
| 8 |
def trailer(url):
|
| 9 |
# Set the path to the thumbnail directory
|
|
|
|
| 2 |
import requests
|
| 3 |
import os
|
| 4 |
import json
|
| 5 |
+
from others import *
|
|
|
|
| 6 |
|
| 7 |
def trailer(url):
|
| 8 |
# Set the path to the thumbnail directory
|
youtube.py
CHANGED
|
@@ -4,7 +4,7 @@ from datetime import datetime, timedelta
|
|
| 4 |
from pytube import YouTube
|
| 5 |
from moviepy.editor import VideoFileClip
|
| 6 |
from tqdm import tqdm
|
| 7 |
-
from
|
| 8 |
|
| 9 |
def download_youtube(url, nama_channel, new_name):
|
| 10 |
response = requests.get(url, stream=True)
|
|
|
|
| 4 |
from pytube import YouTube
|
| 5 |
from moviepy.editor import VideoFileClip
|
| 6 |
from tqdm import tqdm
|
| 7 |
+
from others import *
|
| 8 |
|
| 9 |
def download_youtube(url, nama_channel, new_name):
|
| 10 |
response = requests.get(url, stream=True)
|