{"id":23116310,"url":"https://github.com/nabilshadman/flask-to-do-app","last_synced_at":"2025-09-04T17:33:50.895Z","repository":{"id":176914066,"uuid":"372819185","full_name":"nabilshadman/flask-to-do-app","owner":"nabilshadman","description":"A to-do web app (with add, edit, and delete features) developed with Flask","archived":false,"fork":false,"pushed_at":"2024-12-05T08:48:10.000Z","size":386,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-09T13:13:00.829Z","etag":null,"topics":["flask","web-application"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nabilshadman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-06-01T12:18:40.000Z","updated_at":"2024-12-05T08:48:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"6c4660ad-ff72-488d-bdf0-809bed4f6812","html_url":"https://github.com/nabilshadman/flask-to-do-app","commit_stats":null,"previous_names":["nabilshadman/flask-to-do-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabilshadman%2Fflask-to-do-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabilshadman%2Fflask-to-do-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabilshadman%2Fflask-to-do-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabilshadman%2Fflask-to-do-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nabilshadman","download_url":"https://codeload.github.com/nabilshadman/flask-to-do-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247105282,"owners_count":20884404,"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","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":["flask","web-application"],"created_at":"2024-12-17T04:15:58.358Z","updated_at":"2025-04-04T01:25:35.361Z","avatar_url":"https://github.com/nabilshadman.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask To-Do App\n\nA modern, lightweight task management web application built with Flask. This application provides a clean interface for managing your daily tasks with core features including creation, modification, and removal of tasks.\n\n## 🚀 Features\n\n- Create new tasks with titles\n- Edit existing tasks\n- Delete tasks when completed\n- Automatic timestamp tracking for tasks\n- Clean and responsive user interface\n- SQLite database for data persistence\n- Form validation and flash messages for user feedback\n\n## 🛠️ Technology Stack\n\n- **Backend**: Flask (Python web framework)\n- **Database**: SQLAlchemy with SQLite\n- **Forms**: WTForms for form handling and validation\n- **Frontend**: HTML templates with modern styling\n\n## 📋 Prerequisites\n\n- Python 3.6 or higher\n- pip (Python package manager)\n\n## 🔧 Installation\n\n1. Clone the repository\n```bash\ngit clone https://github.com/yourusername/flask-todo-app.git\ncd flask-todo-app\n```\n\n2. Create a virtual environment (recommended)\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows use: venv\\Scripts\\activate\n```\n\n3. Install dependencies\n```bash\npip install flask flask-sqlalchemy flask-wtf\n```\n\n4. Initialize the database\n```python\npython\n\u003e\u003e\u003e from app import db\n\u003e\u003e\u003e db.create_all()\n\u003e\u003e\u003e exit()\n```\n\n5. Run the application\n```bash\npython app.py\n```\n\nThe application will be available at `http://localhost:5000`\n\n## 📱 Usage\n\n### Adding a Task\n1. Click the \"Add Task\" button\n2. Enter the task title\n3. Submit to create the task\n\n### Editing a Task\n1. Click the \"Edit\" button next to the task\n2. Modify the task title\n3. Save your changes\n\n### Deleting a Task\n1. Click the \"Delete\" button next to the task\n2. Confirm deletion in the prompt\n\n\n## 🖼️ Screenshots\n\n\u003ctable width=\"100%\"\u003e\n\u003ctr\u003e\n\u003ctd width=\"50%\"\u003e\u003cstrong\u003eHome Page\u003c/strong\u003e\u003c/td\u003e\n\u003ctd width=\"50%\"\u003e\u003cstrong\u003eAdd Task\u003c/strong\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cimg src=\"demo/0_index_0.jpg\" width=\"100%\"\u003e\u003c/td\u003e\n\u003ctd\u003e\u003cimg src=\"demo/1_add_1.jpg\" width=\"100%\"\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cstrong\u003eEdit Task\u003c/strong\u003e\u003c/td\u003e\n\u003ctd\u003e\u003cstrong\u003eDelete Task\u003c/strong\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cimg src=\"demo/2_edit_1.jpg\" width=\"100%\"\u003e\u003c/td\u003e\n\u003ctd\u003e\u003cimg src=\"demo/3_delete_1.jpg\" width=\"100%\"\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n\n## 📁 Project Structure\n```\nflask-todo-app/\n├── app.py              # Application initialization\n├── forms.py            # Form classes using WTForms\n├── models.py           # Database models\n├── routes.py           # Application routes and views\n├── templates/          # HTML templates\n│   ├── add.html\n│   ├── base.html\n│   ├── delete.html\n│   ├── edit.html\n│   └── index.html\n└── README.md\n```\n\n## 🔒 Security\n\n- CSRF protection enabled through Flask-WTF\n- SQL injection prevention through SQLAlchemy ORM\n- Secure form handling and input validation\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/improvement`)\n3. Make your changes\n4. Commit your changes (`git commit -am 'Add new feature'`)\n5. Push to the branch (`git push origin feature/improvement`)\n6. Create a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE.txt](LICENSE.txt) file for details.\n\n## 🙏 Acknowledgments\n\n- Flask documentation and community\n- SQLAlchemy documentation\n- WTForms documentation\n\n## 📞 Contact\n\nIf you have any questions or suggestions, please open an issue in the repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnabilshadman%2Fflask-to-do-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnabilshadman%2Fflask-to-do-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnabilshadman%2Fflask-to-do-app/lists"}