From 1fd1b7d3776d8275f5c00c483a6aee0a724e2289 Mon Sep 17 00:00:00 2001 From: Moe Poi ~ Date: Fri, 5 Jul 2019 11:20:04 +0700 Subject: [PATCH] Update README.md --- README.md | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 87e51f6..cd743ec 100644 --- a/README.md +++ b/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) \ No newline at end of file +Moe Poi ~ / [@moepoi](https://github.com/moepoi)