https://github.com/shamazmazum/image-downloader
Imageboard image downloader
https://github.com/shamazmazum/image-downloader
2ch 4chan chans common-lisp downloader
Last synced: about 2 months ago
JSON representation
Imageboard image downloader
- Host: GitHub
- URL: https://github.com/shamazmazum/image-downloader
- Owner: shamazmazum
- License: bsd-2-clause
- Created: 2016-08-20T03:18:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-01T06:28:35.000Z (3 months ago)
- Last Synced: 2025-03-01T07:24:57.131Z (3 months ago)
- Topics: 2ch, 4chan, chans, common-lisp, downloader
- Language: Common Lisp
- Size: 39.1 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
This is a simple image downloader, which can download images from imageboards
(currently 4chan and 2ch).You can use it loading the ASDF system and calling
`image-downloader:download-images`:(ql:quickload :image-downloader)
(image-downloader:download-images uri-string path-to-saved-images)Also you can make a standalone application by running
(ql:quickload :image-downloader/executable)
(asdf:make :image-downloader/executable)It will download all threads supplied on the standard input, one thread URI per
line. An example:echo "http://4chan.org/b/bla-bla" | image-downloader path-to-saved-images
Look at the full list of options by running `image-downloader` without
arguments.