src/utils.py
Validates the YouTube video list.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if validation is successful, False if any check fails. |
Source code in src/utils.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
Check video deletion.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str
|
Thumbnail Image URL |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if the video is deleted, False otherwise. |
Source code in src/utils.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|