{"id":14633134,"url":"https://github.com/TelegramPlayGround/pyrogram","last_synced_at":"2025-09-06T22:30:59.669Z","repository":{"id":106798443,"uuid":"450562844","full_name":"TelegramPlayground/pyrogram","owner":"TelegramPlayground","description":"PyroGram (https://github.com/pyrogram/pyrogram) FORK | Telegram MTProto API framework in Python for users and bots ","archived":false,"fork":false,"pushed_at":"2025-08-27T13:40:32.000Z","size":73772,"stargazers_count":153,"open_issues_count":34,"forks_count":38,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-08-27T22:45:02.935Z","etag":null,"topics":["bot-api","hacktoberfest","mtproto","pyrogram","pyrotgfork","python","python3","telegram","telegram-api"],"latest_commit_sha":null,"homepage":"https://telegramplayground.github.io/pyrogram/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"pyrogram/pyrogram","license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TelegramPlayground.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","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},"funding":{"custom":["https://PyroTGFork.t.me/2"]}},"created_at":"2022-01-21T16:30:05.000Z","updated_at":"2025-08-27T21:48:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"78b06966-8e34-44d0-81cc-afd3e28b72de","html_url":"https://github.com/TelegramPlayground/pyrogram","commit_stats":null,"previous_names":[],"tags_count":91,"template":false,"template_full_name":null,"purl":"pkg:github/TelegramPlayground/pyrogram","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TelegramPlayground%2Fpyrogram","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TelegramPlayground%2Fpyrogram/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TelegramPlayground%2Fpyrogram/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TelegramPlayground%2Fpyrogram/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TelegramPlayground","download_url":"https://codeload.github.com/TelegramPlayground/pyrogram/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TelegramPlayground%2Fpyrogram/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273973374,"owners_count":25200575,"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-09-06T02:00:13.247Z","response_time":2576,"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":["bot-api","hacktoberfest","mtproto","pyrogram","pyrotgfork","python","python3","telegram","telegram-api"],"created_at":"2024-09-09T17:01:03.353Z","updated_at":"2025-09-06T22:30:59.658Z","avatar_url":"https://github.com/TelegramPlayground.png","language":"Python","readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/TelegramPlayground/pyrogram\"\u003e\n        \u003cimg src=\"https://raw.githubusercontent.com/pyrogram/artwork/master/artwork/pyrogram-logo.png\" alt=\"Pyrogram\" width=\"128\"\u003e\n    \u003c/a\u003e\n    \u003cbr\u003e\n    \u003cb\u003eTelegram MTProto API Framework for Python\u003c/b\u003e\n    \u003cbr\u003e\n    \u003ca href=\"https://telegramplayground.github.io/pyrogram/\"\u003e\n        Documentation\n    \u003c/a\u003e\n    •\n    \u003ca href=\"https://telegramplayground.github.io/pyrogram/releases/changes-in-this-fork.html\"\u003e\n        Releases\n    \u003c/a\u003e\n    •\n    \u003ca href=\"https://PyroTGFork.t.me/2\"\u003e\n        News\n    \u003c/a\u003e\n\u003c/p\u003e\n\n## Pyrogram\n\n\u003e Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots\n\n``` python\nfrom pyrogram import Client, filters\n\napp = Client(\"my_account\")\n\n\n@app.on_message(filters.private)\nasync def hello(client, message):\n    await message.reply(\"Hello from Pyrogram!\")\n\n\napp.run()\n```\n\n**Pyrogram** is a modern, elegant and asynchronous [MTProto API](https://telegramplayground.github.io/pyrogram/topics/mtproto-vs-botapi)\nframework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot\nidentity (bot API alternative) using Python.\n\n### Key Features\n\n- **Ready**: Install Pyrogram with pip and start building your applications right away.\n- **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages.\n- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.\n- **Fast**: Boosted up by [TgCrypto](https://github.com/TelegramPlayGround/pyrogram-tgcrypto), a high-performance cryptography library written in C.  \n- **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support.\n- **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience).\n- **Powerful**: Full access to Telegram's API to execute any official client action and more.\n\n### Installing\n\n``` bash\npip3 install pyrotgfork\n```\n\n### Resources\n\n- Check out [the docs](https://telegramplayground.github.io/pyrogram) to learn more about Pyrogram, get started right\naway and discover more in-depth material for building your client applications.\n- Join the official channel at [PyroTGFork](https://PyroTGFork.t.me/2) and stay tuned for news, updates and announcements.\n","funding_links":["https://PyroTGFork.t.me/2"],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTelegramPlayGround%2Fpyrogram","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTelegramPlayGround%2Fpyrogram","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTelegramPlayGround%2Fpyrogram/lists"}