HanimeTV/README.md

41 lines
700 B
Markdown
Raw Normal View History

2019-01-06 13:05:24 +01:00
# HanimeTV
2019-01-06 13:16:01 +01:00
*Get data from https://hanime.tv :)*
## Installation
Installation is simple. It can be installed from pip using the following command:
```sh
$ pip3 install -r requirements.txt
```
## Usage
```py
2019-01-06 13:16:01 +01:00
from HTV import HanimeTV
2019-07-05 06:20:04 +02:00
hentai = HanimeTV(email="EMAIL", password="PASS")
query = "Imouto Paradise"
url = "https://hanime.tv/hentai-videos/imouto-paradise-1-ep-1"
2019-01-06 13:16:01 +01:00
# SEARCH
2019-07-05 06:20:04 +02:00
search = hentai.search(query)
2019-01-06 13:16:01 +01:00
print (search)
2019-07-05 06:20:04 +02:00
# 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)
2019-01-06 13:16:01 +01:00
```
## Credit
2019-07-05 06:20:04 +02:00
Moe Poi ~ / [@moepoi](https://github.com/moepoi)