{"id":23116643,"url":"https://github.com/zeroniki/fasttask","last_synced_at":"2026-04-24T23:32:45.955Z","repository":{"id":266251346,"uuid":"897821243","full_name":"ZeroNiki/FastTask","owner":"ZeroNiki","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-11T12:30:06.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-11T09:57:03.803Z","etag":null,"topics":["aiogram","alembic","async","fastapi","httpx","python3","telegram-api"],"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/ZeroNiki.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}},"created_at":"2024-12-03T09:51:03.000Z","updated_at":"2024-12-11T12:30:10.000Z","dependencies_parsed_at":"2024-12-03T10:40:59.616Z","dependency_job_id":"6643cee4-7bf8-42e4-9eda-b0e5fd4accaf","html_url":"https://github.com/ZeroNiki/FastTask","commit_stats":null,"previous_names":["zeroniki/fasttask"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZeroNiki/FastTask","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeroNiki%2FFastTask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeroNiki%2FFastTask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeroNiki%2FFastTask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeroNiki%2FFastTask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZeroNiki","download_url":"https://codeload.github.com/ZeroNiki/FastTask/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeroNiki%2FFastTask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32245148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["aiogram","alembic","async","fastapi","httpx","python3","telegram-api"],"created_at":"2024-12-17T04:16:54.835Z","updated_at":"2026-04-24T23:32:45.939Z","avatar_url":"https://github.com/ZeroNiki.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastTask\n\n- Navigation:\n    - [About](https://github.com/ZeroNiki/FastTask/blob/main/README.md#about) \n        - [Features](https://github.com/ZeroNiki/FastTask/blob/main/README.md#features)\n            - [Components](https://github.com/ZeroNiki/FastTask/blob/main/README.md#components)\n    - [Install and usage](https://github.com/ZeroNiki/FastTask/blob/main/README.md#install-and-usage)\n\n\n\u003cb\u003e[RU README](https://github.com/ZeroNiki/FastTask/blob/main/README_RUS.md)\u003c/b\u003e\n\n## About\nThis project is a Task Management Bot using the Aiogram framework for Telegram bot interaction and FastAPI for backend operations. It integrates a SQLite database via SQLAlchemy ORM to manage users and tasks. The bot allows users to create, view, update, and delete tasks with seamless interaction and error handling.\n\n### Features\n- \u003cb\u003eUser Management:\u003c/b\u003e Automatic registration of users on their first interaction with the bot.\n- \u003cb\u003eTask Management:\u003c/b\u003e Create, view, update, and delete tasks. Tasks are stored in the database and associated with specific users.\n- \u003cb\u003eError Handling:\u003c/b\u003e Logs and replies to users in case of errors during API calls.\n- \u003cb\u003eInteractive Telegram Interface:\u003c/b\u003e Rich text formatting and custom keyboards for easy user interaction.\n\n#### Components\n##### Telegram Bot\n- \u003cb\u003eAiogram\u003c/b\u003e framework handles bot commands and messages.\n- \u003cb\u003eCommand Handlers\u003c/b\u003e for starting the bot, registering users, and viewing tasks.\n- \u003cb\u003eInteractive Keyboard\u003c/b\u003e options for task management.\n\n##### FastAPI Backend\n- Exposes API endpoints for managing users and tasks:\n    - POST `/operations/users:` Create a new user.\n    - POST `/operations/tasks:` Create a task.\n    - GET `/operations/tasks/{user_id}:` Retrieve tasks for a user.\n    - PATCH `/operations/tasks/{task_id}:` Mark task as done.\n    - DELETE `/operations/tasks/{task_id}:` Delete a task.\n\n\n## Install and usage\n\nClone repo:\n```sh\ngit clone https://github.com/ZeroNiki/FastTask.git\n\ncd FastTask\n```\n\nInstall requirements:\n```\npip install -r requirements.txt \n```\n\nin `.env` file paste you telegram bot `TOKEN`:\n```\nTOKEN=you bot token\n```\n\nUpdate database:\n```sh\nmkdir migrations/versions\n\nalembic revision --autogenerate -m \"Init\"\nalembic upgrade head\n```\n\nStart `api` and `bot`:\n```sh\npython3 start_api.py \n\npython3 start_bot.py \n```\n\nDone!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeroniki%2Ffasttask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeroniki%2Ffasttask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeroniki%2Ffasttask/lists"}