Participating in Google Summer of Code (GSoC) 2024 with AOSSIE on the "Social Street Smart" project was an enriching and challenging experience. I committed approximately 38-40 hours each week to this project, focusing heavily on backend development, machine learning model updates, and overall infrastructure improvements. My goal was to not just meet the project requirements, but to enhance and modernize the project’s architecture, making it more robust and easier to maintain in the future.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
api = 'e226f4a5f5bace766952aa0d17182959' | |
q = 'Andhadhun' | |
url = 'https://api.themoviedb.org/3/search/movie' | |
response = requests.get(url,params={"query":q,"api_key":api}) | |
data = response.json() | |
movie_id = data['results'][0]['id'] |