参考¶
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
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 200 201 202 203 204 |
|
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 |
Source code in ktoolbox/configuration.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
scheme: Literal['http', 'https'] = 'https'
class-attribute
instance-attribute
¶
netloc: str = 'kemono.su'
class-attribute
instance-attribute
¶
statics_netloc: str = 'img.kemono.su'
class-attribute
instance-attribute
¶
files_netloc: str = 'kemono.su'
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
¶
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 |
use_bucket |
bool
|
Enable local storage bucket mode |
bucket_path |
Path
|
Path of local storage bucket |
Source code in ktoolbox/configuration.py
47 48 49 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 |
|
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
¶
use_bucket: bool = False
class-attribute
instance-attribute
¶
bucket_path: Path = Path('./.ktoolbox/bucket_storage')
class-attribute
instance-attribute
¶
check_bucket_path()
¶
Source code in ktoolbox/configuration.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
|
PostStructureConfiguration
¶
Post path structure model
- Default:
.. ├─ content.txt ├─ <Post file> ├─ <Post data (post.json)> └─ attachments ├─ 1.png └─ 2.png
Attributes:
Name | Type | Description |
---|---|---|
attachments |
Path
|
Sub path of attachment directory |
content_filepath |
Path
|
Sub path of post content file |
Source code in ktoolbox/configuration.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
JobConfiguration
¶
Download jobs Configuration
-
Available properties for
post_dirname_format
Property Type id
String user
String service
String title
String added
Date published
Date edited
Date
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
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 155 156 157 |
|
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] = set()
class-attribute
instance-attribute
¶
block_list: Set[str] = 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
160 161 162 163 164 165 166 167 168 169 170 |
|