Reference¶
Configuration
¶
KToolBox Configuration
Attributes:
| Name | Type | Description |
|---|---|---|
api |
APIConfiguration
|
Kemono API Configuration |
downloader |
DownloaderConfiguration
|
File Downloader Configuration |
job |
JobConfiguration
|
Download jobs Configuration |
logger |
LoggerConfiguration
|
Logger configuration |
ssl_verify |
bool
|
Enable SSL certificate verification for Kemono API server and download server |
json_dump_indent |
int
|
Indent of JSON file dump |
use_uvloop |
bool
|
Use uvloop for asyncio (Disabled on Windows by default) uvloop will improve concurrent performance, but it is not compatible with Windows. Install uvloop by |
Source code in ktoolbox/configuration.py
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | |
api: APIConfiguration = APIConfiguration()
class-attribute
instance-attribute
¶
downloader: DownloaderConfiguration = DownloaderConfiguration()
class-attribute
instance-attribute
¶
job: JobConfiguration = JobConfiguration()
class-attribute
instance-attribute
¶
logger: LoggerConfiguration = LoggerConfiguration()
class-attribute
instance-attribute
¶
ssl_verify: bool = True
class-attribute
instance-attribute
¶
json_dump_indent: int = 4
class-attribute
instance-attribute
¶
use_uvloop: bool = True
class-attribute
instance-attribute
¶
APIConfiguration
¶
Kemono API Configuration
Attributes:
| Name | Type | Description |
|---|---|---|
scheme |
Literal['http', 'https']
|
Kemono API URL scheme |
netloc |
str
|
Kemono API URL netloc |
statics_netloc |
str
|
URL netloc of Kemono server for static files (e.g. images) |
files_netloc |
str
|
URL netloc of Kemono server for post files |
path |
str
|
Kemono API URL root path |
timeout |
float
|
API request timeout |
retry_times |
int
|
API request retry times (when request failed) |
retry_interval |
float
|
Seconds of API request retry interval |
session_key |
str
|
Session key that can be found in cookies after a successful login |
Source code in ktoolbox/configuration.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
scheme: Literal['http', 'https'] = 'https'
class-attribute
instance-attribute
¶
netloc: str = 'kemono.cr'
class-attribute
instance-attribute
¶
statics_netloc: str = 'img.kemono.cr'
class-attribute
instance-attribute
¶
files_netloc: str = 'kemono.cr'
class-attribute
instance-attribute
¶
path: str = '/api/v1'
class-attribute
instance-attribute
¶
timeout: float = 5.0
class-attribute
instance-attribute
¶
retry_times: int = 3
class-attribute
instance-attribute
¶
retry_interval: float = 2.0
class-attribute
instance-attribute
¶
session_key: str = ''
class-attribute
instance-attribute
¶
DownloaderConfiguration
¶
File Downloader Configuration
Attributes:
| Name | Type | Description |
|---|---|---|
scheme |
Literal['http', 'https']
|
Downloader URL scheme |
timeout |
float
|
Downloader request timeout |
encoding |
str
|
Charset for filename parsing and post content text saving |
buffer_size |
int
|
Number of bytes of file I/O buffer for each downloading file |
chunk_size |
int
|
Number of bytes of chunk of downloader stream |
temp_suffix |
str
|
Temp filename suffix of downloading files |
retry_times |
int
|
Downloader retry times (when download failed) |
retry_stop_never |
bool
|
Never stop downloader from retrying (when download failed) ( |
retry_interval |
float
|
Seconds of downloader retry interval |
tps_limit |
float
|
Maximum connections established per second |
use_bucket |
bool
|
Enable local storage bucket mode |
bucket_path |
Path
|
Path of local storage bucket |
reverse_proxy |
str
|
Reverse proxy format for download URL. Customize the filename format by inserting an empty |
Source code in ktoolbox/configuration.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
scheme: Literal['http', 'https'] = 'https'
class-attribute
instance-attribute
¶
timeout: float = 30.0
class-attribute
instance-attribute
¶
encoding: str = 'utf-8'
class-attribute
instance-attribute
¶
buffer_size: int = 20480
class-attribute
instance-attribute
¶
chunk_size: int = 1024
class-attribute
instance-attribute
¶
temp_suffix: str = 'tmp'
class-attribute
instance-attribute
¶
retry_times: int = 10
class-attribute
instance-attribute
¶
retry_stop_never: bool = False
class-attribute
instance-attribute
¶
retry_interval: float = 3.0
class-attribute
instance-attribute
¶
tps_limit: float = 1.0
class-attribute
instance-attribute
¶
use_bucket: bool = False
class-attribute
instance-attribute
¶
bucket_path: Path = Path('./.ktoolbox/bucket_storage')
class-attribute
instance-attribute
¶
reverse_proxy: str = '{}'
class-attribute
instance-attribute
¶
check_bucket_path()
¶
Source code in ktoolbox/configuration.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
PostStructureConfiguration
¶
Post path structure model
-
Default:
.. ├─ content.txt ├─ <Post file> ├─ <Post data (post.json)> └─ attachments ├─ 1.png └─ 2.png -
Available properties for
fileProperty Type idString userString serviceString titleString addedDate publishedDate editedDate
Attributes:
| Name | Type | Description |
|---|---|---|
attachments |
Path
|
Sub path of attachment directory |
content |
Path
|
Sub path of post content file |
content_filepath |
Path
|
(Deprecated, Use |
file |
str
|
The format of the post |
Source code in ktoolbox/configuration.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | |
attachments: Path = Path('attachments')
class-attribute
instance-attribute
¶
content: Path = Path('content.txt')
class-attribute
instance-attribute
¶
content_filepath: Path = Path('content.txt')
class-attribute
instance-attribute
¶
file: str = '{id}_{}'
class-attribute
instance-attribute
¶
content_filepath_validator(v)
¶
Source code in ktoolbox/configuration.py
146 147 148 149 150 151 152 153 154 | |
JobConfiguration
¶
Download jobs Configuration
-
Available properties for
post_dirname_formatandfilename_formatProperty Type idString userString serviceString titleString addedDate publishedDate editedDate
Attributes:
| Name | Type | Description |
|---|---|---|
count |
int
|
Number of coroutines for concurrent download |
post_dirname_format |
str
|
Customize the post directory name format, you can use some of the properties in |
post_structure |
PostStructureConfiguration
|
Post path structure |
mix_posts |
bool
|
Save all files from different posts at same path in creator directory. It would not create any post directory, and |
sequential_filename |
bool
|
Rename attachments in numerical order, e.g. |
filename_format |
str
|
Customize the filename format by inserting an empty |
allow_list |
Set[str]
|
Download files which match these patterns (Unix shell-style), e.g. |
block_list |
Set[str]
|
Not to download files which match these patterns (Unix shell-style), e.g. |
Source code in ktoolbox/configuration.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
count: int = 4
class-attribute
instance-attribute
¶
post_dirname_format: str = '{title}'
class-attribute
instance-attribute
¶
post_structure: PostStructureConfiguration = PostStructureConfiguration()
class-attribute
instance-attribute
¶
mix_posts: bool = False
class-attribute
instance-attribute
¶
sequential_filename: bool = False
class-attribute
instance-attribute
¶
filename_format: str = '{}'
class-attribute
instance-attribute
¶
allow_list: Set[str] = Field(default_factory=set)
class-attribute
instance-attribute
¶
block_list: Set[str] = Field(default_factory=set)
class-attribute
instance-attribute
¶
LoggerConfiguration
¶
Logger configuration
Attributes:
| Name | Type | Description |
|---|---|---|
path |
Optional[Path]
|
Path to save logs, |
level |
Union[str, int]
|
Log filter level |
rotation |
Union[str, int, time, timedelta]
|
Log rotation |
Source code in ktoolbox/configuration.py
202 203 204 205 206 207 208 209 210 211 212 | |