{"id":32861854,"url":"https://github.com/killo0077/flask-notes-api","last_synced_at":"2026-05-01T21:05:11.020Z","repository":{"id":322812764,"uuid":"1090982545","full_name":"Killo0077/flask-notes-api","owner":"Killo0077","description":"A simple Flask REST API for managing notes using SQLIte. Perfect for leaning backend development.","archived":false,"fork":false,"pushed_at":"2025-11-06T12:23:00.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-06T14:20:32.286Z","etag":null,"topics":["api","backend","crud","flask","junior","learning","python","rest-api","sqlite"],"latest_commit_sha":null,"homepage":"http://127.0.0.1:5000","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Killo0077.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-06T11:57:57.000Z","updated_at":"2025-11-06T12:27:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Killo0077/flask-notes-api","commit_stats":null,"previous_names":["killo0077/flask-notes-api"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Killo0077/flask-notes-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Killo0077%2Fflask-notes-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Killo0077%2Fflask-notes-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Killo0077%2Fflask-notes-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Killo0077%2Fflask-notes-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Killo0077","download_url":"https://codeload.github.com/Killo0077/flask-notes-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Killo0077%2Fflask-notes-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283424652,"owners_count":26833720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-08T02:00:06.281Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","backend","crud","flask","junior","learning","python","rest-api","sqlite"],"created_at":"2025-11-08T22:00:55.766Z","updated_at":"2025-11-08T22:01:54.562Z","avatar_url":"https://github.com/Killo0077.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask Notes API\n\nTiny REST API with Flask + SQLite.\n\n\nA simple REST API built \"\"Flask\"\" and \"\"SQLite\"\"\", made for learning backend development.\n\nIt allows to create, read, update and delete notes using HTTP requests.\n\n## Features\n\n* Health check endpoint ('/ping')\n* Create, list, update and delete notes.\n* Stores data locally using \"\"SQLite\"\"\n* Built with \"\"Flask 3\"\"\n* Simple and clean structure - perfect for beginners\n\n--------------------------------------------\n\n\n## How it works\n\nWhen you run the app, Flask starts a local server on  \n[`http://127.0.0.1:5000`](http://127.0.0.1:5000).\n\nThe app exposes several **API endpoints**:\n\n| Method | Endpoint | Description |\n|---------|-----------|-------------|\n| `GET` | `/ping` | Health check |\n| `GET` | `/notes` | List all notes |\n| `POST` | `/notes` | Create a new note |\n| `PUT` | `/notes/\u003cid\u003e` | Update a note |\n| `DELETE` | `/notes/\u003cid\u003e` | Delete a note |\n\nEach note has:\n- `id` — unique identifier  \n- `title` — note title (required)  \n- `content` — optional text content  \n- `created_at` — timestamp  \n- `updated_at` — timestamp  \n\n------------------------------------------\n\n\n## Installation\n\n1.Clone this repository:\n\n'''bash \ngit clone git@github.com:Killo0077/flask-notes-api.git\ncd flask-notes-api\n\n------------------------------------------------\n\n2. Create and activate a virtual environment\n\npython3 -m venv venv\nsource venv/bin/activate\n\n3. Install dependencies:\n\npip install flask\n\n4. Run the app\n\nflask --app app run --debug\n\n##### Open your browser at: #######\n\nhttp://127.0.0.1:5000/ping\n\n\n\n\n--------------------------------------------------\n\n### Example requestL ####\n\n\n1. Create a note: \n\ncurl -X POST http://127.0.0.1:5000/notes \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"title\":\"My first note\",\"content\":\"Hello Flask!\"}'\n\n\n2. List notes:\n\ncurl http://127.0.0.1:5000/notes\n\n3. Database\n\nsudo apt install sqlitebrowser\n\n\n#### Author #####\n\nMade by @Killo0077 while learning Flask and backend fundamentals.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillo0077%2Fflask-notes-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkillo0077%2Fflask-notes-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillo0077%2Fflask-notes-api/lists"}