Skip to content

Instantly share code, notes, and snippets.

My GSoC 2024 Journey: Self-Evaluation

Overview

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.

Key Contributions

1. Backend Development and Infrastructure

Google Summer of Code 2024

A full report on my Google Summer of Code 2024 work with AOSSIE

Project: "Social Street Smart" 👨‍💻

GSoC 2024 Report: Social Street Smart

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']