Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/railken/kissmanga
Kissmanga Scraper
https://github.com/railken/kissmanga
api composer kissmanga kissmanga-scraper library manga php scraper
Last synced: about 2 months ago
JSON representation
Kissmanga Scraper
- Host: GitHub
- URL: https://github.com/railken/kissmanga
- Owner: railken
- License: mit
- Created: 2018-02-25T18:12:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-03T02:57:21.000Z (about 6 years ago)
- Last Synced: 2024-11-14T05:26:13.151Z (about 2 months ago)
- Topics: api, composer, kissmanga, kissmanga-scraper, library, manga, php, scraper
- Language: PHP
- Homepage:
- Size: 68.4 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kissmanga Scraper
Kissmanga Scraper is a php library that permits to search manga and download scans from [kissmanga.com](http://kissmanga.com/)
## Requirements
PHP 7.0.0 or later.
## Composer
You can install it via [Composer](https://getcomposer.org/) by typing the following command:
```bash
composer require railken/kissmanga
```## Dependencies
- [`curl`](https://secure.php.net/manual/en/book.curl.php)
## Getting Started
Simple usage looks like:
```php
# Creating a new instance of manager
$manager = new \Railken\Kissmanga\Kissmanga();# Searching a manga
$results = $manager
->search()
->name('One Piece')
->author('Oda Eiichiro')
->genres('include', ['Action', 'Drama', 'Historical'])
->completed(0)
->get();# Retrieving all info about a manga
$manga_uid = "One-Piece";
$manga = $manager
->resource($manga_uid)
->get();# Retrieving all scans for a given manga, volume and chapter
$chapter_id = 1;
$manga_uid = "One-Piece";
$scans = $manager
->scan($manga_uid, $chapter_id)
->get();# Retrieving last updates
$results = $manager->releases()->page(1)->get();```
## License
Open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).
## Copyright
All the manga are copyrighted to their respective author. Please buy the manga if it's available in your country.