mirror of
https://gitlab.com/moepoi/HanimeTV.git
synced 2024-11-21 22:36:20 +01:00
Update README.md
This commit is contained in:
parent
5498ddbe58
commit
1fd1b7d377
1 changed files with 16 additions and 7 deletions
23
README.md
23
README.md
|
@ -14,18 +14,27 @@ $ pip3 install -r requirements.txt
|
|||
```sh
|
||||
from HTV import HanimeTV
|
||||
|
||||
# hentai = HanimeTV(email="EMAIL", password="PASS")
|
||||
hentai = HanimeTV()
|
||||
hentai = HanimeTV(email="EMAIL", password="PASS")
|
||||
query = "Imouto Paradise"
|
||||
url = "https://hanime.tv/hentai-videos/imouto-paradise-1-ep-1"
|
||||
|
||||
# SEARCH
|
||||
search = hentai.search("Imouto Paradise")
|
||||
search = hentai.search(query)
|
||||
print (search)
|
||||
|
||||
# GET INFO & DATA
|
||||
get = hentai.get("https://hanime.tv/hentai-videos/imouto-paradise-1-ep-1")
|
||||
print (get)
|
||||
# GET INFO
|
||||
info = hentai.info(url)
|
||||
print (info)
|
||||
|
||||
# GET STORYBOARDS
|
||||
storyboards = hentai.storyboards(url)
|
||||
print (storyboards)
|
||||
|
||||
# GET DOWNLOAD (USING AUTH)
|
||||
download = hentai.download(url)
|
||||
print (download)
|
||||
```
|
||||
|
||||
## Credit
|
||||
|
||||
Moe Poi ~ / [@moepoi](https://github.com/moepoi)
|
||||
Moe Poi ~ / [@moepoi](https://github.com/moepoi)
|
||||
|
|
Loading…
Reference in a new issue