Downloading videos, comments and thumbnails and handling your Mylists on niconico (ニコニコ動画).
Project description
Features
This is a command-line tool and python utility module to download videos, comments and thumbnail images on niconico (nicovideo.jp). And also with this you can handle your Mylists: add, delete, move and copy each items and create or remove new lists.
Thumbnails: larger and smaller ones.
Comments: in XML and JSON format.
Videos: in both types, i.e. of “smile” server (older one) and of “dmc.nico” server (newer one).
Concurrent download (4x faster by default).
Installation
pip install nicotools
Requirements
Python >= 3.6
Usage
By running without any arguments, we will show you a help.
Usage as a CLI tool
For the first time you will asked your mail address and password. From the next time on HTTP Cookie will be saved in to your HOME directory, so mail and pass are not needed. Or you may specify your credentials every time you run this, as this:
nicotools download -v sm9 --mail <mail address> --pass <password>
Downloading
To download thumbnails of video ids of sm1, … sm5:
nicotools downlaod --thumbnail --dest "./Downloads" sm1 sm2 sm3 sm4 sm5
To downalod thumbnails, comments and videos of those:
nicotools download --comment --video --thumbnail --dest "./Downloads" sm1 sm2 sm3 sm4 sm5
Shorthand commands and how to specify video ids from text file (prepend plus sign):
nicotools download -cvt -d "./Downloads" +ids.txt
XML comment (”–dest” is for destination directory):
nicotools download -cvt --xml -dest "./Downloads" sm1
to list up whole contents in all LISTS (TAB separated format):
nicotools mylist * --show --everything --out D:/Downloads/all.txt
Dealing with Mylists
to apped videos on MYLIST:
nicotools mylist MYLIST --add sm1 sm2 sm3
another way to append: from a text file, in which video id in each lines are written:
nicotools mylist MYLIST --add +C:/Users/Me/Desktop/ids.txt
specify the MYLIST by its ID (this is shown in the LIST’s URL):
nicotools mylist 12345678 --id --add sm1 sm2 sm3
to dleete items from MYLIST:
nicotools mylist MYLIST --delete sm1 sm2 sm3
to clear the MYLIST:
nicotools mylist MYLIST --delete *
to clear the MYLIST without confirmation:
nicotools mylist MYLIST --delete * --yes
to move some items in MYLIST to –to:
nicotools mylist MYLIST --to foofoo --move sm1 sm2 sm3
to copy entire items in MYLIST to –to:
nicotools mylist MYLIST --to barbar --move *
to copy some items in MYLIST to –to:
nicotools mylist MYLIST --to baaboo --copy sm1 sm2 sm3
to copy entire items in MYLIST to –to:
nicotools mylist MYLIST --to foobar --copy *
to list up all LIST’s names:
nicotools mylist * --show
to list up whole contents in all LISTS (TAB separated format):
nicotools mylist * --show --everything --out D:/Downloads/all.txt
to list up whole contents in all LISTS (TABLE format):
nicotools mylist * --show --show --everything --out D:/Downloads/all.txt
to list up items in a single LIST:
nicotools mylist MYLIST --export
to list up video ids of whole contents in all LISTS:
nicotools mylist * --export --everything --out D:/Downloads/all.txt
to list up the metadata of LISTS:
nicotools mylist * --export --out D:/Downloads/all.txt
to create new LIST with name of LISTNAME:
nicotools mylist LISTNAME --create
to remove the LIST:
nicotools mylist MYLIST --purge
to remove the LIST without cconfirmation:
nicotools mylist MYLIST --purge --yes
Usage as a module
from nicotools.download import VideoDmc, VideoSmile, Comment, Thumbnail mail = "<your mail address>" password = "<your password>" xml = True # Set to True if you want in XML format, default is JSON # a list of video ids video_ids = ["sm1", "sm2", "sm3"] # directory path to save files in DIR_PATH = "./downloads/" Thumbnail().start(video_ids, DIR_PATH) Comment(mail, password).start(video_ids, DIR_PATH, xml) VideoSmile(mail, password).start(video_ids, DIR_PATH) VideoDmc(mail, password).start(video_ids, DIR_PATH)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file nicotools-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: nicotools-1.0.4-py3-none-any.whl
- Upload date:
- Size: 39.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0b4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 441ea01e6ed450ce8e6b8d5c95a4abc3b52a8d28b7f782b76a5a4ba812d024fb |
|
MD5 | dda55fa07e3695af8100988c64dde28c |
|
BLAKE2b-256 | 373e2648db73da72c135b54d6fbcce3d07e4bf59d47d2acccfec0cbf744a461c |