{"id":31551480,"url":"https://github.com/muradisazade777/notenest","last_synced_at":"2025-10-04T18:56:54.677Z","repository":{"id":317014823,"uuid":"1065369288","full_name":"MuradIsazade777/NoteNest","owner":"MuradIsazade777","description":"A clean and minimal Python backend for creating, reading, updating, and deleting notes. Data is stored in a local JSON file. Built with Flask, this project is perfect for learning RESTful API design and file-based persistence.","archived":false,"fork":false,"pushed_at":"2025-09-28T07:56:21.000Z","size":13,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-28T09:23:53.609Z","etag":null,"topics":["api","backend","backend-api","json","libary","modules","python","service","token"],"latest_commit_sha":null,"homepage":"","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/MuradIsazade777.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-09-27T15:31:42.000Z","updated_at":"2025-09-28T09:05:24.000Z","dependencies_parsed_at":"2025-09-28T09:23:56.294Z","dependency_job_id":"4e914238-0ee3-45f6-a0dc-e1f93c8df606","html_url":"https://github.com/MuradIsazade777/NoteNest","commit_stats":null,"previous_names":["muradisazade777/notenest"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/MuradIsazade777/NoteNest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FNoteNest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FNoteNest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FNoteNest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FNoteNest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MuradIsazade777","download_url":"https://codeload.github.com/MuradIsazade777/NoteNest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FNoteNest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278358487,"owners_count":25973949,"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-10-04T02:00:05.491Z","response_time":63,"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","backend-api","json","libary","modules","python","service","token"],"created_at":"2025-10-04T18:56:53.449Z","updated_at":"2025-10-04T18:56:54.636Z","avatar_url":"https://github.com/MuradIsazade777.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧾 NoteNest\n**NoteNest** is a lightweight and modular Python backend for managing notes via RESTful APIs. Built with Flask and powered by JSON file storage, it offers a clean and scalable foundation for note-taking applications, prototypes, or backend learning projects.\n---\n\n## 🚀 Features\n\n- 🧠 Create, read, update, and delete notes via RESTful endpoints\n- 📁 Stores data locally in a structured `notes.json` file\n- 🧩 Modular architecture with clear separation of models, services, and utilities\n- 🔍 Easy to test and extend with new features or database integrations\n- 🧪 Optional unit tests for core logic.\n\n---\n\n## 📁 Project Structure\n\n```bash\nNoteNest/\n├── app.py                  # Flask server and route registration\n├── notes.json              # Local JSON file for storing notes\n├── models/                 # Note schema and data structure\n│   └── note.py\n├── services/               # Business logic: create, read, update, delete\n│   └── note_service.py\n├── utils/                  # JSON file helpers: read/write operations\n│   └── file_handler.py\n├── tests/                  # Unit tests (optional)\n│   └── test_notes.py\n├── requirements.txt        # Python dependencies\n```\n📡 API Endpoints\nPOST /notes\nCreate a new note.\n\nRequest:\n```\njson\n{\n  \"title\": \"First Note\",\n  \"content\": \"This is my first note\"\n}\n```\nResponse:\n```\njson\n{\n  \"id\": 1,\n  \"title\": \"First Note\",\n  \"content\": \"This is my first note\"\n}\n```\nGET /notes\nRetrieve all notes.\n\nSample Response:\n```\njson\n[\n  {\n    \"id\": 1,\n    \"title\": \"First Note\",\n    \"content\": \"This is my first note\"\n  }\n]\n```\n** GET /notes/\u003cid\u003e\n** Retrieve a specific note by ID.\n** PUT /notes/\u003cid\u003e\n** Update an existing note.\n** DELETE /notes/\u003cid\u003e\n** Delete a note by ID.\n\n---\n⚙️ Getting Started\n1. Clone the repository\n```bash\ngit clone https://github.com/yourusername/notenest.git\ncd notenest\n3. Install dependencies\nbash\npip install -r requirements.txt\n4. Run the server\nbash\npython app.py\nServer will start at http://localhost:5000\n```\n🧠 Technologies Used\nPython 3.x\n\nFlask\n\nJSON file storage\n\n📌 Notes\nThis project is ideal for:\n\nBackend learners exploring RESTful APIs\n\nQuick prototyping without database setup\n\nExtending into full-stack apps with React, Vue, or mobile frontends.\n\n✨ Author\nMurad — Full-stack developer \u0026 system architect GitHub: @MuradIsazade777\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuradisazade777%2Fnotenest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuradisazade777%2Fnotenest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuradisazade777%2Fnotenest/lists"}