Skip to main content

Download posts from pixiv.net via CLI, CLI UI or programmatically.

Project description

PixivDownloader enables you to download artworks, mangas and videos from pixiv.net via CLI, CLI UI and programmatically.

Usage

To start CLI UI:

pixiv

To start downloads directly:

pixiv "XXXXXXXX" "https://www.pixiv.net/en/artworks/XXXXXXXX"

If the user is not logged in yet the CLU UI starts and asks for login credentials. This can be disabled with using –username and –password to log in. If only one of those is given then the Login CLI UI will be started asking for the missing value. So eg. in this case the UI will start and ask for a password:

pixiv "XXXXXXXX" -u my_user

If you want to disable the CLI UI completely and just exit if no username and passwords are given then use -q.

pixiv "XXXXXXXX" -q

Finally, you can also use this downloader via its python interface like this:

from pixiv.downloader import PixivDownloader
pd = PixivDownloader(username='xxx', password='pwd')
downloader = pd.download_by_url('https://www.pixiv.net/en/artworks/74607898', '~/Downloads/pixiv-downloads')
# Or just by the id
downloader = pd.download_by_id(74607898, '~/Downloads/pixiv-downloads')
for path in downloader:
    print(f'Downloaded {path}')

Is my pixiv password saved?

TLDR: No, it is not.

For the communication between the program and Pixiv PixivPy is used. This enables us to use a so-called “refresh token” with which we can re-authenticate without saving the password anywhere.

This token, as well as other settings, are saved in ~/.pixivrc.

Installation

With pip:

pip install pixivdownloader
pixiv

From source:

git clone https://github.com/Nachtalb/PixivDownloader.git
cd PixivDownloader
python setup.py install
pixiv

Changelog

0.1.1 (2020-02-17)

  • Fix slash in filename resulting in additional folders [Nachtalb]

0.1.0 (2019-11-15)

  • Initial implementation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pixivdownloader-0.1.1.tar.gz (24.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page