Update README.md

This commit is contained in:
Moe Poi ~ 2019-07-05 11:20:04 +07:00 committed by GitHub
parent 5498ddbe58
commit 1fd1b7d377
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,18 +14,27 @@ $ pip3 install -r requirements.txt
```sh ```sh
from HTV import HanimeTV from HTV import HanimeTV
# hentai = HanimeTV(email="EMAIL", password="PASS") hentai = HanimeTV(email="EMAIL", password="PASS")
hentai = HanimeTV() query = "Imouto Paradise"
url = "https://hanime.tv/hentai-videos/imouto-paradise-1-ep-1"
# SEARCH # SEARCH
search = hentai.search("Imouto Paradise") search = hentai.search(query)
print (search) print (search)
# GET INFO & DATA # GET INFO
get = hentai.get("https://hanime.tv/hentai-videos/imouto-paradise-1-ep-1") info = hentai.info(url)
print (get) print (info)
# GET STORYBOARDS
storyboards = hentai.storyboards(url)
print (storyboards)
# GET DOWNLOAD (USING AUTH)
download = hentai.download(url)
print (download)
``` ```
## Credit ## Credit
Moe Poi ~ / [@moepoi](https://github.com/moepoi) Moe Poi ~ / [@moepoi](https://github.com/moepoi)