I am getting around 500 YouTube data for one search query.
I am using the code cloned from youtube_tutorial.
def geo_query(video_id): youtube = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION, developerKey=DEVELOPER_KEY) video_response = youtube.videos().list( id=video_id, part='snippet, recordingDetails, statistics' ).execute()Is there any way to extract all the YouTube videos without any limit?Does YouTube limit you to 500 videos for one search query?