cli
songbirdcli.cli
get_songs_for_album(current_mode, quit_str='q')
allow user to search for an album, returning the selected song properties for that album to use by default simplifying the download process
Parameters:
-
current_mode
(Modes
) –the mode enum signifying the current mode
-
quit_str
(str
, default:'q'
) –description. Defaults to "q".
Returns:
-
Optional[Union[List[ItunesApiSongModel], Modes]]
–Optional[Union[List[itunes_api.ItunesApiSongModel],modes.Modes]]: return None if error, quit_str if user quits, the mode if user selects mode, or the list of album properties
Source code in songbirdcli/cli.py
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
|
get_songs_from_user(current_mode, quit_str='q')
gather songs from user, validate that the mode wasnt changed
Parameters:
-
current_mode
(Modes
) –the current mode of songbird
-
quit_str
(str
, default:'q'
) –allows the user to quit out of this selection. Defaults to "q".
Returns:
-
Optional[Union[str, List[str]]]
–Optional[Union[str, List[str]]]: None if error occurs, the mode if user changes modes, or a list of song names
Source code in songbirdcli/cli.py
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
|
initialize_dirs(dirs)
Initialize the apps directories
Parameters:
-
dirs
(List[str]
) –the list of directories to initialize (create)
Source code in songbirdcli/cli.py
73 74 75 76 77 78 79 80 81 82 |
|
resolve_mode(inp, current_mode=modes.Modes.SONG)
Resolve the mode based on a given mode, against the current mode
Parameters:
-
inp
(str
) –user input
-
current_mode
(Modes
, default:SONG
) –The current mode of the app. Defaults to modes.Modes.SONG.
Returns:
-
Optional[Modes]
–Optional[modes.Modes]: return the mode if the current mode needs to be changed, otherwise return nothing.
Source code in songbirdcli/cli.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
run(config)
main entrypoint for songbirdcli. Expects the songbirdcli config object.
Parameters:
-
config
(SongbirdCliConfig
) –songbirdcli settings pydantic model
Source code in songbirdcli/cli.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 |
|
run_download_process(file_path_no_format, youtube_home_url, youtube_search_url, youtube_query_payload, file_format, render_timeout, render_wait, render_retries, render_sleep, quit_str='q')
Download a song from youtube.
Parameters:
-
file_path_no_format
(str
) –the absolute path of where to save the file (excluding file format)
-
youtube_home_url
(str
) –the url to youtube's home page
-
youtube_search_url
(str
) –the search url for youtube
-
youtube_query_payload
(str
) –the query payload for youtube's search api
-
file_format
(str
) –desired file format
-
render_timeout
(int
) –amount of time before abandoning a render
-
render_wait
(float
) –the amount of time before attempting a render
-
render_retries
(int
) –the number of retries for a render
-
render_sleep
(int
) –the amount of time to wait after rendering
Returns:
-
str
(str
) –the path on disk that the file was saved to, None if failure occured, quit_str if user quit
Source code in songbirdcli/cli.py
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 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 194 195 196 197 198 199 |
|
run_for_song(config, song_name, song_properties, quit_str='q')
Run a cycle of the application given a song.
Parameters:
-
config
(SongbirdConfig
) –the songbird config
-
song_name
(str
) –the name of the song to run the app for
-
song_properties
(Optional[ItunesApiSongModel]
) –optionally include song properties. Including these skips the itunes api parser.
Returns:
-
Union[bool, None, str]
–Union[bool, None, str]: returns boolean indicating success/failure. None indicated error occurred, quit_str indicates user quit
Source code in songbirdcli/cli.py
202 203 204 205 206 207 208 209 210 211 212 213 214 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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 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 |
|
validate_essentials(config)
perform startup validation of the configuration, ensuring pre-conditions are met
Parameters:
-
config
(SongbirdCliConfig
) –the songbirdcli pydantic model
Returns:
-
bool
(bool
) –True if success, False otherwise
Source code in songbirdcli/cli.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|