Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qianbinbin/moebooru-crawler
Retrieve links of images from moebooru-based sites, like yande.re and konachan.com .
https://github.com/qianbinbin/moebooru-crawler
crawler moebooru shell
Last synced: 1 day ago
JSON representation
Retrieve links of images from moebooru-based sites, like yande.re and konachan.com .
- Host: GitHub
- URL: https://github.com/qianbinbin/moebooru-crawler
- Owner: qianbinbin
- License: mit
- Created: 2021-06-28T15:40:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-24T13:29:44.000Z (over 3 years ago)
- Last Synced: 2024-12-17T00:41:50.298Z (about 2 months ago)
- Topics: crawler, moebooru, shell
- Language: Shell
- Homepage: https://binac.org/posts/moebooru-crawler/
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## moebooru-crawler
Retrieve links of images from moebooru-based sites, like yande.re and konachan.com .
## Usage
```
Usage: moebooru-crawler URL [ -n NUM, --num=NUM ]-n NUM, --num=NUM print NUM links of images,
or print all if NUM is '0'
```Feed the crawler a URL to retrieve links:
```sh
$ moebooru-crawler.sh "https://yande.re/post?tags=coffee-kizoku+order%3Ascore"
```All the links will be printed to stdout. Or you can redirect to a file:
```sh
$ moebooru-crawler.sh "https://yande.re/post?tags=coffee-kizoku+order%3Ascore" >>links.txt
```Then use aria2c or any tools you like to do downloads.
Use `-n NUM` to print NUM links (only when the URL has more than one page, note that the crawler will start from first page):
```sh
$ moebooru-crawler.sh "https://yande.re/post?page=2&tags=coffee-kizoku" -n 100 # "page=2" will be ignored
```Use `-n 0` to get all links:
```sh
$ moebooru-crawler.sh "https://yande.re/post?tags=coffee-kizoku" -n 0
```