Skip to content

Guide

Check Reference for all commands and their flags / parameters.

Get general help

  • --help, -h
ktoolbox -h

Get help of a command

  • --help, -h
ktoolbox download-post -h

Launch the graphical configuration editor

config-editor

ktoolbox config-editor

Generate an example configuration file (.env/prod.env)

example-env

ktoolbox example-env

Download a specific post

download-post

ktoolbox download-post https://kemono.su/fanbox/user/49494721/post/6608808
If some files failed to download

If some files failed to download, you can try to execute the command line again, the downloaded files will be skipped.

Download all posts from a creator

sync-creator

# Download all posts of the creator/artist
ktoolbox sync-creator https://kemono.su/fanbox/user/9016
About creator-indices.ktoolbox file

By default, you will get a creator-indices.ktoolbox file in the creator directory, it contains the information and filepath of posts inside the directory.

Update creator directory

You can rerun the command, files with the same filename will be skipped.

Download a specified number of posts from the creator

sync-creator

  • --offset: Posts result offset (or start offset)
  • --length: The number of posts to fetch, defaults to fetching all posts
# Download latest 10 posts of the creator/artist
ktoolbox sync-creator https://kemono.su/fanbox/user/9016 --length=10

# Download latest No.11-No.15 posts of the creator/artist
ktoolbox sync-creator https://kemono.su/fanbox/user/9016 --offset=10 --length=5

Download posts that published within the specified time range

sync-creator

  • --start-time: Start time of the published time range for posts downloading.
  • --end-time: End time of the published time range for posts downloading.
# From 2023-8-5 to 2023-12-6
ktoolbox sync-creator https://kemono.su/fanbox/user/641955 --start-time=2023-8-5 --end-time=2023-12-6

# From 2023-8-5 to now
ktoolbox sync-creator https://kemono.su/fanbox/user/641955 --start-time=2023-8-5

# Before 2023-8-5
ktoolbox sync-creator https://kemono.su/fanbox/user/641955 --end-time=2023-8-5

Time Format

The time value should match %Y-%m-%d, for example:

  • 2023-12-7
  • 2023-12-07
  • 2023-12-31