| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Disclaimer: BookGrab is a personal project I built for myself. Support is limited to MyAnonyMouse (MAM) and Transmission.
BookGrab is a simple, streamlined web application that allows you to search for books on MyAnonyMouse using their RSS API and send downloads directly to your Transmission client. It provides a clean, straightforward interface for finding and downloading both ebooks and audiobooks.
Most people looking for book automation probably want Readarr. However, I built BookGrab because:
BookGrab focuses on doing one thing well: making it easy to search MAM and download books with a single click.
version: '3'
services:
bookgrab:
image: mrorbitman/bookgrab:latest
container_name: bookgrab
ports:
- "3000:3000"
environment:
- MAM_TOKEN=your_mam_token_here
- TRANSMISSION_URL=http://your-transmission-server:9091/transmission/rpc
- AUDIOBOOK_DESTINATION_PATH=/path/to/audiobooks
- EBOOK_DESTINATION_PATH=/path/to/ebooks
restart: unless-stoppeddocker-compose up -dRun the container directly:
docker run -d \
--name bookgrab \
-p 3000:3000 \
-e MAM_TOKEN=your_mam_token_here \
-e TRANSMISSION_URL=http://your-transmission-server:9091/transmission/rpc \
-e AUDIOBOOK_DESTINATION_PATH=/path/to/audiobooks \
-e EBOOK_DESTINATION_PATH=/path/to/ebooks \
mrorbitman/bookgrab:latestPrerequisites:
Clone the repository
Install dependencies:
npm installMAM_TOKEN=your_mam_token_here TRANSMISSION_URL=http://your-transmission-server:9091/transmission/rpc AUDIOBOOK_DESTINATION_PATH=/path/to/audiobooks EBOOK_DESTINATION_PATH=/path/to/ebooks
npm run devIf you're installing manually, you can build for production:
npm run build
npm start| Back | FazBrowse Home | New Git URL |