Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Get decrypted signature from python script #21499
Comments
|
youtube-dl/youtube_dl/extractor/youtube.py Lines 2005 to 2006 in 695720e |
|
Sorry for the noob query but I tried a lot but was not able to figure out a way to import this function my script :( |
|
Asked for help at stack and from the reply it seems it cant be done with current ytdl exposed methods !! Pls. check - https://stackoverflow.com/questions/56734345/correct-way-to-call-function-from-imported-python-package/56734930#56734930 |
|
You were trying to call it static. Don't do that, it won't work. Initialize a new instance and then call _decrypt_signature(), it's not hard at all. |
|
Isn't this the correct usage?
|
Question
I am currently using
pytubeto get decipher signature from my project as below:But that project is not updated regularly and would like to use
youtube-dlfor same. Is this possible, if yes pls. provide pointers for same.