mirror of
https://gitlab.com/moepoi/HanimeTV.git
synced 2024-11-13 02:26:17 +01:00
21 lines
No EOL
400 B
Python
21 lines
No EOL
400 B
Python
from HTV import HanimeTV
|
|
|
|
hentai = HanimeTV()
|
|
query = "Imouto Paradise"
|
|
url = "https://hanime.tv/hentai-videos/imouto-paradise-1-ep-1"
|
|
|
|
# SEARCH
|
|
search = hentai.search(query)
|
|
print (search)
|
|
|
|
# GET INFO
|
|
info = hentai.info(url)
|
|
print (info)
|
|
|
|
# GET STORYBOARDS
|
|
storyboards = hentai.storyboards(url)
|
|
print (storyboards)
|
|
|
|
# GET DOWNLOAD (STILL NOT WORKING)
|
|
download = hentai.download(url)
|
|
print (download) |