class Stack: def __init__(self): self.stack = [] def add(self, dataval): # Use list append method to add element if dataval not in self.stack: self.stack.append(dataval) return True else: return False # Use peek to look at the top of the stack def peek(self): return self.stack[-1] AStack = Stack() AStack.add("Mon") AStack.add("Tue") AStack.peek() print(AStack.peek()) AStack.add("Wed") AStack.add("Thu") print(AStack.peek())
So, the other day I was searching for python code that gives me a transcript of any video, I did what all we do I searched everywhere on Internet but was unfortunate. But we are programmers best thing we do is search more on the internet. finally, I got the code I wanted, all thanks to Pragnakalp Techlabs . Although the code was a little different from my expectations I did some filters on it and made it to view the transcripts of the youtube video. Be patient there are going to be few steps involved in our process !! # pip install google-api-python-client # pip install youtube_transcript_api from apiclient.discovery import build from youtube_transcript_api import YouTubeTranscriptApi api_key = "Secret Key" # replace it with your API key video_id = str ( input ( "Enter the video id: " )) # replace it with your channel id youtube = build ( 'youtube' , 'v3' , developerKey = api_key ) try : responses = YouTubeTranscrip
Comments
Post a Comment