[~] Refactor

This commit is contained in:
Siarhei Siniak 2021-07-19 10:48:27 +03:00
parent a7ca0742a3
commit 75c27bcc3f
2 changed files with 12 additions and 0 deletions

@ -211,3 +211,14 @@ def kernel_4(
t4=t4, t4=t4,
t7=t7, t7=t7,
) )
def kernel_5(o_4):
for o in [o_4['t4'], o_4['t7']]:
subprocess.check_call(
[
'youtube-dl',
'-f',
'18',
o,
]
)

@ -3,3 +3,4 @@ jupyter
notebook notebook
requests requests
pyquery pyquery
youtube-dl