Moosems
Moosems
Are the others not?
In a terminal, you can use backslashes to give multiple lines for one big command.
Yeah. In windows you use `&&` but on many other systems and with bash you use `\`. I'll make an implementation sometime. I'm busy this week though so I can't...
Also needs && for windows ;).
You're epic.
The backslash isn't removed so the terminal treats the chars as escaped chars.
I'm not with my computer this week but from memory here's what happens: ```console Moosems$ cd \ . Unable to change to directory (insert escaped period char) ```
Can reproduce: ```python from pytube import YouTube link = "https://www.youtube.com/watch?v=7ISEsGHfyQ4" video = YouTube(link) print(video.title) # Works print(video.streams) # Freaks out ```
> Or maybe open source it first and we help modular port it 😉 They're waiting till it becomes mature enough for this :).