Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 790 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 790 Bytes

bookish

Command output example

bookish is a CLI tool created to search and download eBooks without navigating spammy websites.

Usage

Use Docker or Poetry:

Docker

git clone https://github.com/jgafnea/bookish && cd bookish
docker build -t bookish .

# Using with optional alias:
alias bookish="docker run --rm -it bookish"
bookish "eloquent javascript"

# Using without alias:
docker run --rm -it bookish "eloquent javascript"

Poetry

git clone https://github.com/jgafnea/bookish && cd bookish
poetry install

# Using with optional alias:
alias bookish="poetry run bookish"
bookish "eloquent javascript"

# Using without alias:
poetry run bookish "eloquent javascript"