Skip to content

Instantly share code, notes, and snippets.

View ChetanReddyG's full-sized avatar

Chetan Reddy Godumagadda ChetanReddyG

View GitHub Profile
@ChetanReddyG
ChetanReddyG / app.py
Created May 27, 2026 01:36
Basic REST API using Flask with GET and POST endpoints
# app.py
# Basic REST API using Flask
from flask import Flask, request, jsonify
app = Flask(__name__)
# Hardcoded list of tasks
tasks = [
{"id": 1, "title": "Complete assignment"},