I know that this could be a silly problem, but I get when running the script: "File "youtube.py", line 4 def download_360p_mp4_videos(url: str, outpath: str = "./"):"
SyntaxError: invalid syntax
What python Version are you using? Typehints were introduced in Python 3.5 iirc so you need at least this version.
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
I know that this could be a silly problem, but I get when running the script:
"File "youtube.py", line 4
def download_360p_mp4_videos(url: str, outpath: str = "./"):"
SyntaxError: invalid syntax
What python Version are you using? Typehints were introduced in Python 3.5 iirc so you need at least this version.