PiconBiere scrape images from Piccoma website.
Pre-compiled binaries can be downloaded from the Releases page.
Alternatively, PiconBiere can be installed from Cargo, via the following command:
cargo install piconbiere
PiconBiere can be built from source using the latest stable or nightly Rust. This is primarily useful for developing on PiconBiere.
git clone https://github.com/TehUncleDolan/piconbiere.git
cd piconbiere
cargo build --release
cp target/release/piconbiere /usr/local/bin
PiconBiere follows Semantic Versioning.
PiconBiere is a command-line utility. Basic usage looks similar to the following.
To download a single episode from a serie, using guest mode:
text
piconbiere --serie 208 --number 1
To download a single volume from a serie, using your account:
text
piconbiere --serie 208 --number 1 --type volume --user foo@email.com
--user
is used to login with your account in order to access the media
you've bought (you'll be prompted for your password).
--number
can be repeated in order to download multiple episodes (or volumes)
in single run.
For example, to download the episodes 1, 3 and 8:
test
piconbiere --serie 208 -n 1 -n 3 -n 8
Finally, you can download every episode of a serie with:
text
piconbiere --serie 208 -u foo@email.com
Or, every volume (when --type
is not specified it defaults to episode)::
text
piconbiere --serie 208 -t volume -u foo@email.com
For more advanced options, please consult the help:
text
piconbiere -h
PiconBiere has been inspired by Pyccoma and piccoma-downloader