https://github.com/latip176/mangayaro-api
This project is Web Scraping to mangayaro.net with Python and Made for Rest Api
https://github.com/latip176/mangayaro-api
python3 rest-api webscraping
Last synced: 11 months ago
JSON representation
This project is Web Scraping to mangayaro.net with Python and Made for Rest Api
- Host: GitHub
- URL: https://github.com/latip176/mangayaro-api
- Owner: Latip176
- Created: 2023-06-07T09:41:21.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-21T08:25:59.000Z (over 2 years ago)
- Last Synced: 2024-01-21T09:33:52.733Z (over 2 years ago)
- Topics: python3, rest-api, webscraping
- Language: Python
- Homepage: https://mangayaro-api.vercel.app
- Size: 103 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mangayaro-api
This project is Web Scraping to mangayaro.net with Python and Made for Rest Api
# updated
- 07 June 2023: readme.md
- 09 June 2023: fix bug, error, readme.md
- 11 June 2023: add fitur reads: for get information of comic and get image on chapter
- 12 June 2023: add fitur read: for get singple image panel with single chapter url
- 17 June 2023: add fitur prev, next & delete route debug
- 18 June 2023: add proxies system
# usage
## route
### search
`in search you can search comic with params:`
#### keyword
`keyword: title of comic u can find`
```
/search/
search:
?keyword=one piece
```
#### category
`category: populer, proyek, terbaru`
```
/search/
category:
?category=populer
```
### reads
`in reads you can read a infromation that comic or get image on chapter`
```
/reads/
url:
paste the url of comic mangayaro (required). example:
?url=https://www.mangayaro.net/manga/beyond-myriad-peoples/
limit:
get image on chapter with limit. example:
?url=test&limit=10
only_chapter:
get image on chapter with only chapter. example:
?url=test&only_chaptrer=10
limit & only_chapter can't collab!
```
### read
`in read u can read single panel with url chapter panel`
```
/api/read/
url:
url of chapter panel. example:
?url=https://www.mangayaro.net/my-sister-is-a-superstar-chapter-193-bahasa-indonesia/
```
## testing example
### search category
```
https://mangayaro-api-production.up.railway.app/api/search/?category=populer
```
### reads information comic
```
https://mangayaro-api-production.up.railway.app/api/reads/?url=https://www.mangayaro.net/manga/beyond-myriad-peoples/
```
### reads image on chapter with limit
```
https://mangayaro-api-production.up.railway.app/api/reads/?url=https://www.mangayaro.net/manga/beyond-myriad-peoples&limit=5
```
### reads image on chapter with only_chapter number
```
https://mangayaro-api-production.up.railway.app/api/reads/?url=https://www.mangayaro.net/manga/beyond-myriad-peoples&only_chapter=3
```
### read image on chapter with url single chapter
```
https://mangayaro-api-production.up.railway.app/api/read/?url=https://www.mangayaro.net/my-sister-is-a-superstar-chapter-193-bahasa-indonesia/
```