A lightweight Python package built for automatically posting memes, GIFs, facts, anime content, and other media directly to Telegram channels using bot tokens.
This project is no longer maintained.
The original API services used by this package are now unavailable/dead, which means many endpoints may no longer function correctly.
This repository is preserved for:
- educational purposes
- archive/history of my early Python work
- reference for Telegram automation ideas
This was one of my first published PyPI packages and an early experiment with Telegram content automation.
- Automatic Telegram channel posting
- Anime meme posting support
- Random content endpoints
- Simple Python interface
- Beginner-friendly usage
python3 -m pip install -U AutoPostTelegramfrom AutoPostTelegram import auto
x = auto(TOKEN)
x.animememe(chat="@AnimeMeme")import asyncio
from AutoPostTelegram import auto
x = auto(TOKEN)
while True:
x.animememe(chat="@AnimeMeme")
asyncio.sleep(5)from AutoPostTelegram import auto
print(auto.endpoints())Using asyncio.sleep() incorrectly may block other bot functions.
At the time this package was created, I was still learning asynchronous programming and Telegram automation.
This package was mainly designed for:
- meme channels
- automated posting bots
- Telegram content experiments
AutoPostTelegram represents one of my earliest open-source Python projects and my first experience publishing a package on PyPI.
Even though the backend APIs are no longer active, the project remains public as part of my development journey.
Created by @MKishoreDev
Previously known online as AASFCYBERKING
