Sam

Results 14 comments of Sam

> > This is fixed in #1860 + with added functionality to also be able to parse the auto-generated captions :) > > Is it merged with main? Because I...

> > > > This is fixed in #1860 + with added functionality to also be able to parse the auto-generated captions :) > > > > > > >...

``` from pytube import YouTube youtube_link = "https://www.youtube.com/watch?v=pvDOnqGbghU" try: yt = YouTube(youtube_link) print(yt.caption_tracks) yt.captions.get_by_language_code("en").download() except Exception as e: print("An error occurred: ", e) ``` This should work. Also, for the...

> I just changed my dependency from `@tonconnect/ui-react` to `@tonconnect/ui`, went to https://github.com/ton-connect/sdk/tree/main/packages/ui-react and copied all files from there, since they are just relatively simple wrappers around `@tonconnect/ui` library >...