{"id":15134201,"url":"https://github.com/maksimzayats/easy-dialogs","last_synced_at":"2025-09-29T03:30:32.686Z","repository":{"id":57425099,"uuid":"393049452","full_name":"MaksimZayats/easy-dialogs","owner":"MaksimZayats","description":"A mini-framework for creating chatbots. Facilitates the creation of relationships and transitions between scenes (states).","archived":true,"fork":false,"pushed_at":"2021-10-12T12:17:03.000Z","size":100,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-15T22:40:36.208Z","etag":null,"topics":["asyncio","bot-framework","chatbot","framework","fsm","python","telegram","vk"],"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/MaksimZayats.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}},"created_at":"2021-08-05T13:18:22.000Z","updated_at":"2024-01-04T21:03:55.000Z","dependencies_parsed_at":"2022-08-29T22:00:50.815Z","dependency_job_id":null,"html_url":"https://github.com/MaksimZayats/easy-dialogs","commit_stats":null,"previous_names":["maximzayats/aiogram-dialog","maksimzayats/easy-dialogs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaksimZayats%2Feasy-dialogs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaksimZayats%2Feasy-dialogs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaksimZayats%2Feasy-dialogs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaksimZayats%2Feasy-dialogs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaksimZayats","download_url":"https://codeload.github.com/MaksimZayats/easy-dialogs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234583683,"owners_count":18856280,"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":["asyncio","bot-framework","chatbot","framework","fsm","python","telegram","vk"],"created_at":"2024-09-26T05:03:42.306Z","updated_at":"2025-09-29T03:30:32.383Z","avatar_url":"https://github.com/MaksimZayats.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![PyPI version](https://badge.fury.io/py/easy-dialogs.svg)](https://badge.fury.io/py/easy-dialogs)\n[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat\u0026labelColor=ef8336)](https://pycqa.github.io/isort/)\n[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)\n\n\n### About\n\n**Easy-dialogs** is a framework for creating chatbots.\n\n**Easy-dialog** facilitates the creation of relationships and transitions between scenes (states).\n\nBased on [aiogram](https://github.com/aiogram/aiogram), [vkbottle](https://github.com/vkbottle/vkbottle).\n\n### Quickstart\n\n1. Install:\n\n```bash\npip install easy-dialogs\n```\n\nor\n\n```bash\npip install git+https://github.com/MaximZayats/easy-dialogs\n```\n\n2. See [examples](examples)\n\n### Usage\n\n#### Simple Dialog example:\n\n```python\nfrom dialog.telegram import Dialog, Scene, Router, Relation\nfrom dialog.telegram.types import SimpleMessage\n\n\nclass MyDialog(Dialog):\n    router = Router(Relation('MyDialog.scene1',\n                             commands='start'))\n\n    scene1 = Scene(messages=SimpleMessage(text='Inside the Scene 1'),\n                   relations=Relation('MyDialog.scene2',\n                                      text='scene2'))\n    scene2 = Scene(messages=SimpleMessage(text='Inside the Scene 2'),\n                   relations=Relation('MyDialog.scene1',\n                                      text='scene1'))\n\n\ndp = ...\n\nDialog.register_handlers(dp)\n\nexecutor.start_polling(dp)  # aiogram default start method\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaksimzayats%2Feasy-dialogs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaksimzayats%2Feasy-dialogs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaksimzayats%2Feasy-dialogs/lists"}