{"id":30112560,"url":"https://github.com/swappy514/flask-todo-app","last_synced_at":"2026-05-20T07:06:38.385Z","repository":{"id":307604020,"uuid":"1028819598","full_name":"Swappy514/Flask-TODO-APP","owner":"Swappy514","description":"A simple, full-stack Flask TODO app for managing daily tasks. Features user authentication, CRUD operations, user profiles, and a responsive UI. Perfect for learning Flask, Python, and web development best practices. Easy to customize and deploy.","archived":false,"fork":false,"pushed_at":"2025-08-01T04:37:21.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-01T06:29:31.089Z","etag":null,"topics":["css-styles","curd-operation","database-management","flask","flask-blueprints","flask-todo","full-stack-web-development","jinja2-templates","modular-structure","responsive-web-design","restful-routing","sqlalchemy-orm","task-manager","todo-app","user-authentication","web-application"],"latest_commit_sha":null,"homepage":"","language":"Python","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/Swappy514.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-07-30T05:40:26.000Z","updated_at":"2025-08-01T04:37:24.000Z","dependencies_parsed_at":"2025-08-01T06:29:32.740Z","dependency_job_id":"78d9ff21-ccd7-4261-8630-68e5806fd583","html_url":"https://github.com/Swappy514/Flask-TODO-APP","commit_stats":null,"previous_names":["swappy514/flask-todo-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Swappy514/Flask-TODO-APP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swappy514%2FFlask-TODO-APP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swappy514%2FFlask-TODO-APP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swappy514%2FFlask-TODO-APP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swappy514%2FFlask-TODO-APP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Swappy514","download_url":"https://codeload.github.com/Swappy514/Flask-TODO-APP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swappy514%2FFlask-TODO-APP/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269688022,"owners_count":24459399,"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-08-10T02:00:08.965Z","response_time":71,"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":["css-styles","curd-operation","database-management","flask","flask-blueprints","flask-todo","full-stack-web-development","jinja2-templates","modular-structure","responsive-web-design","restful-routing","sqlalchemy-orm","task-manager","todo-app","user-authentication","web-application"],"created_at":"2025-08-10T06:47:50.223Z","updated_at":"2026-05-20T07:06:33.342Z","avatar_url":"https://github.com/Swappy514.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"**📝 Flask TODO App**\n\nA **simple yet powerful full-stack Task Manager** built with Flask!\nManage your daily tasks, authenticate users, and keep your workspace organized—all in a responsive, modern web interface.\nPerfect for beginners, students, and anyone interested in learning Flask, web development, and CRUD operations!\n\n\n**🔥 Project Highlights** \n\n- **User Authentication** (Register \u0026 Login)\n- **CRUD Operations** (Create, Read, Update, Delete Tasks)\n- **User Profile Management**\n- **Responsive UI** with custom CSS \u0026 modern layout\n- **Modular Flask Blueprint Structure**\n- **Ready For Deployment** on platforms like Heroku, PythonAnywhere, or locally\n\n\n**📚 Topics Covered**\n\n- Flask Web Framework\n- RESTful Routing \u0026 Blueprints\n- SQL Database \u0026 ORM Models\n- Template Rendering (Jinja2)\n- Static Files (CSS/JS) Management\n- User Authentication \u0026 Authorization\n- Responsive Web Design\n\n\n**🚀 Get Started**\n\n1. **Clone the repository**\n```\n   git clone https://github.com/Swappy514/Flask_TODO-APP.git\n   cd Flask_TODO-APP\n```\n\n2. **Install dependencies**\n```\n   pip install -r requirements.txt\n```\n\n3. **Run the application**\n```\n   python run.py\n```\n\n4. **Open your browser**\n```\n   Visit http://localhost:5000 and start managing your tasks!\n```\n\n**🗂️ Project Structure**\n\n```\n\nTODO_App/\n│\n├── app/\n│ ├── **init**.py\n│ ├── models.py\n│ ├── routes/\n│ │ ├── auth.py\n│ │ ├── tasks.py\n│ │ └── profile.py\n│ ├── static/\n│ │ ├── css/\n│ │ │ └── style.css\n│ │ └── js/\n│ └── templates/\n│ ├── base.html\n│ ├── login.html\n│ ├── register.html\n│ ├── tasks.html\n│ └── profile.html\n├── run.py\n└── text\n└── README.md\n\n```\n\n**✨ Features**\n\n- **Beautiful, Customizable UI**\n- **Seamless User Authentication**\n- **Efficient Task Management**\n- **Clean, Modular Codebase for Easy Extension**\n- **Learn Best Practices in Flask Development**\n\n**💡 Use Cases**\n- Personal Task Management\n- Learning Flask Web Development\n- Educational Project (for Bootcamps, Tutorials)\n- Starter Template for Full-Stack Apps\n\n**🛠️ Technologies Used**\n- Python, Flask, Jinja2\n- HTML5, CSS3, JavaScript\n- SQLAlchemy ( using ORM)\n- Bootstrap\n- Deployable on any cloud or local server\n\n**🤝 Contributing**\n- Pull requests and stars are always welcome!\n- Please read the contribution guidelines first.\n\n\n**📢 Keywords**\n- Flask TODO App, Python Task Manager, Flask CRUD Application, Flask Authentication, Web App Flask, Flask Project Example, Flask Tutorial, Task Manager Web App, Personal Productivity, Open Source Flask Projects\n\n\n**⭐ Show your support!**\n- If you like this project, please star it on GitHub! ⭐\n- Feel free to fork, modify, and use it in your own projects.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswappy514%2Fflask-todo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswappy514%2Fflask-todo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswappy514%2Fflask-todo-app/lists"}