An open API service indexing awesome lists of open source software.

https://github.com/b-coimbra/anisearch.el

An emacs plugin to fetch images from safebooru
https://github.com/b-coimbra/anisearch.el

Last synced: about 2 months ago
JSON representation

An emacs plugin to fetch images from safebooru

Awesome Lists containing this project

README

        

#+TITLE: anisearch.el

Shows a random image from safebooru in a buffer within Emacs.

* Installation

Using quelpa:

#+begin_src emacs-lisp
(use-package anisearch
:quelpa (anisearch :fetcher github :repo "b-coimbra/anisearch.el")
:custom
(setq anisearch-limit 10) ; Number of images to fetch. Default 20
(setq anisearch-tags "nanachi") ; Tags to search with when calling "anisearch"
(setq anisearch-save-locally) ; Save downloaded files locally. Default nil
)
#+end_src

* Usage

- =M-x anisearch= to search with the default tag (=anisearch-tags=).
- =M-x anisearch-tag= to search with a specific tag.
- =M-x anisearch-clear= to clear the list of loaded images.
- =M-x anisearch-save-all= to download all images into the =anisearch-downloads= folder.

* Dependencies

- [[https://github.com/tkf/emacs-request][request.el]]
- wget