{"id":25746158,"url":"https://github.com/bohd4nx/emojisaver","last_synced_at":"2025-05-11T12:47:40.115Z","repository":{"id":277780733,"uuid":"933471178","full_name":"bohd4nx/EmojiSaver","owner":"bohd4nx","description":"Telegram bot that saves animated stickers (.tgs) and custom emojis, converts them to .json (Lottie), packs everything into a neat archive, and delivers it to the user.","archived":false,"fork":false,"pushed_at":"2025-05-07T21:40:44.000Z","size":28,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-11T12:47:33.896Z","etag":null,"topics":["emoji","lottie-animation","lottie-telegram","stickers","telegram","tgs"],"latest_commit_sha":null,"homepage":"https://t.me/EmojiSaverBot","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/bohd4nx.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,"zenodo":null}},"created_at":"2025-02-16T03:09:58.000Z","updated_at":"2025-05-07T21:40:47.000Z","dependencies_parsed_at":"2025-05-07T22:36:26.911Z","dependency_job_id":null,"html_url":"https://github.com/bohd4nx/EmojiSaver","commit_stats":null,"previous_names":["bohd4nx/emojisaverbot","bohd4nx/emojisaver"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohd4nx%2FEmojiSaver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohd4nx%2FEmojiSaver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohd4nx%2FEmojiSaver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohd4nx%2FEmojiSaver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bohd4nx","download_url":"https://codeload.github.com/bohd4nx/EmojiSaver/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253568676,"owners_count":21928908,"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":["emoji","lottie-animation","lottie-telegram","stickers","telegram","tgs"],"created_at":"2025-02-26T11:30:02.456Z","updated_at":"2025-05-11T12:47:40.102Z","avatar_url":"https://github.com/bohd4nx.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Telegram Emoji \u0026 Sticker Downloader\n\n[![Python](https://img.shields.io/badge/Python-3.11%2B-blue)](https://www.python.org/downloads/)\n[![aiogram](https://img.shields.io/badge/aiogram-3.17.0-green)](https://docs.aiogram.dev/)\n[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n\nThis Telegram bot allows users to extract and download animated emoji and stickers in both TGS (Telegram format) and\nJSON (Lottie) formats, making them available for editing in animation software.\n\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://t.me/EmojiSaverBot\"\u003e🤖 @EmojiSaverBot\u003c/a\u003e\n\u003c/p\u003e\n\n\u003c/div\u003e\n\n## ✨ Features\n\n- 🎯 **Extract Animated Emoji** - Download custom emoji from messages\n- 🎭 **Convert Stickers** - Transform animated stickers to editable formats\n- 🔄 **Multiple Emoji Support** - Process several emoji in a single message\n- 📦 **Dual Format Export** - Get both TGS and JSON formats in one archive\n\n## 🛠 Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/bohd4nx/EmojiSaver.git\n   cd EmojiSaverBot\n   ```\n\n2. **Install dependencies**\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n3. **Configure environment**\n    - Create or modify `data/config.py`:\n\n   ```python\n   from dataclasses import dataclass\n   \n   @dataclass(frozen=True)\n   class Config:\n       # API credentials from https://my.telegram.org/apps\n       API_ID: str = \"your_api_id\"\n       API_HASH: str = \"your_api_hash\"\n       \n       # Bot token from @BotFather\n       BOT_TOKEN: str = \"your_bot_token\"\n       \n       # Phone number in international format\n       PHONE_NUMBER: str = \"+1234567890\"\n       \n       # Directory for temporary files\n       DOWNLOAD_DIR: str = \"../temp\"\n   \n   config = Config()\n   ```\n\n## 🚀 Usage\n\n### Running the Bot\n\n```bash\npython main.py\n```\n\n### User Guide\n\n| Command  | Description                |\n|----------|----------------------------|\n| `/start` | Initialize the bot         |\n| `/help`  | Display usage instructions |\n\n#### 📱 Using with Emoji\n\n1. Send any message containing custom animated emoji\n2. The bot will automatically extract and convert all emoji\n3. Download the ZIP archive containing both formats\n\n#### 🎭 Using with Stickers\n\n1. Forward any animated sticker to the bot\n2. The bot will convert it to editable format\n3. Download and enjoy!\n\n## 🧩 Development\n\nWant to contribute? Great! Here's how:\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch4\u003eMade with ❤️ by \u003ca href=\"https://t.me/bohd4nx\"\u003e@bohd4nx\u003c/a\u003e\u003c/h4\u003e\n  \u003cp\u003e\n    \u003ca href=\"https://github.com/bohd4nx/EmojiSaver\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/stars/bohd4nx/EmojiSaverBot?style=social\" alt=\"GitHub stars\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbohd4nx%2Femojisaver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbohd4nx%2Femojisaver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbohd4nx%2Femojisaver/lists"}