Utils
utils
#
Utility functions and classes used throughout package.
ArgumentError
#
Bases: Exception
Exception for mismatched or mistyped CLI arguments.
Memo(func)
#
Memoize cache.
PARAMETER | DESCRIPTION |
---|---|
func |
The results of this callable will be cached.
TYPE:
|
Construct cache.
Source code in torrentfile\utils.py
45 46 47 48 49 50 51 |
|
__call__(path: str)
#
Invoke each time memo function is executed.
PARAMETER | DESCRIPTION |
---|---|
path |
The relative or absolute path being used as key in cache dict.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Any
|
The results of calling the function with path. |
Source code in torrentfile\utils.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
MissingPathError(message: str = None)
#
Bases: Exception
Path parameter is required to specify target content.
Creating a .torrent file with no contents seems rather silly.
PARAMETER | DESCRIPTION |
---|---|
message |
Message for user (optional).
TYPE:
|
Raise when creating a meta file without specifying target content.
The message
argument is a message to pass to Exception base class.
Source code in torrentfile\utils.py
87 88 89 90 91 92 93 94 |
|
PieceLengthValueError(message: str = None)
#
Bases: Exception
Piece Length parameter must equal a perfect power of 2.
PARAMETER | DESCRIPTION |
---|---|
message |
Message for user (optional).
TYPE:
|
Raise when creating a meta file with incorrect piece length value.
The message
argument is a message to pass to Exception base class.
Source code in torrentfile\utils.py
107 108 109 110 111 112 113 114 |
|
check_path_writable(path: str) -> bool
#
Test if output path is writable.
PARAMETER | DESCRIPTION |
---|---|
path |
file system path string
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if writeable, otherwise raises PermissionError |
Source code in torrentfile\utils.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
|
colored(string: str, key: int) -> str
#
Output terminal content with formatting.
Source code in torrentfile\utils.py
458 459 460 461 462 |
|
copypath(source: str, dest: str) -> None
#
Copy the file located at source to dest.
If one or more directory paths don’t exist in dest, they will be created. If dest already exists and dest and source are the same size, it will be ignored, however if dest is smaller than source, dest will be overwritten.
PARAMETER | DESCRIPTION |
---|---|
source |
path to source file
TYPE:
|
dest |
path to target destination
TYPE:
|
Source code in torrentfile\utils.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
|
debug_is_on() -> bool
#
Return True if debug mode is on in environment variables.
RETURNS | DESCRIPTION |
---|---|
bool
|
is debug mode on |
Source code in torrentfile\utils.py
412 413 414 415 416 417 418 419 420 421 |
|
filelist_total(pathstring: str) -> os.PathLike
#
Perform error checking and format conversion to os.PathLike.
PARAMETER | DESCRIPTION |
---|---|
pathstring |
An existing filesystem path.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
os.PathLike
|
Input path converted to bytes format. |
RAISES | DESCRIPTION |
---|---|
MissingPathError
|
File could not be found. |
Source code in torrentfile\utils.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
get_file_list(path: str) -> list
#
Return a sorted list of file paths contained in directory.
PARAMETER | DESCRIPTION |
---|---|
path |
target file or directory.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list
|
sorted list of file paths.
TYPE:
|
Source code in torrentfile\utils.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
|
get_piece_length(size: int) -> int
#
Calculate the ideal piece length for bittorrent data.
PARAMETER | DESCRIPTION |
---|---|
size |
Total bits of all files incluided in .torrent file.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
Ideal piece length. |
Source code in torrentfile\utils.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
green(string: str) -> str
#
Output terminal content in green color.
Source code in torrentfile\utils.py
451 452 453 454 455 |
|
humanize_bytes(amount: int) -> str
#
Convert integer into human readable memory sized denomination.
PARAMETER | DESCRIPTION |
---|---|
amount |
total number of bytes.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
human readable representation of the given amount of bytes. |
Source code in torrentfile\utils.py
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 |
|
next_power_2(value: int) -> int
#
Calculate the next perfect power of 2 equal to or greater than value.
PARAMETER | DESCRIPTION |
---|---|
value |
integer value that is less than some perfect power of 2.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
The next power of 2 greater than value, or value if already power of 2. |
Source code in torrentfile\utils.py
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 |
|
normalize_piece_length(piece_length: int) -> int
#
Verify input piece_length is valid and convert accordingly.
PARAMETER | DESCRIPTION |
---|---|
piece_length |
The piece length provided by user.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
normalized piece length. |
RAISES | DESCRIPTION |
---|---|
PieceLengthValueError :
|
Piece length is improper value. |
Source code in torrentfile\utils.py
155 156 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 |
|
path_piece_length(path: str) -> int
#
Calculate piece length for input path and contents.
PARAMETER | DESCRIPTION |
---|---|
path |
The absolute path to directory and contents.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
The size of pieces of torrent content. |
Source code in torrentfile\utils.py
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
|
path_size(path: str) -> int
#
Return the total size of all files in path recursively.
PARAMETER | DESCRIPTION |
---|---|
path |
path to target file or directory.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
total size of files. |
Source code in torrentfile\utils.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
|
path_stat(path: str) -> tuple
#
Calculate directory statistics.
PARAMETER | DESCRIPTION |
---|---|
path |
The path to start calculating from.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Tuple[list, int, int]
|
list - List of all files contained in Directory int - Total sum of bytes from all contents of dir int - The size of pieces of the torrent contents. |
Source code in torrentfile\utils.py
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
|
toggle_debug_mode(switch_on: bool)
#
Switch the environment variable debug indicator on or off.
PARAMETER | DESCRIPTION |
---|---|
switch_on |
if true turn debug mode on otherwise off
TYPE:
|
Source code in torrentfile\utils.py
400 401 402 403 404 405 406 407 408 409 |
|