Get and put users (scraping) to the target group/channel efficiently, correctly and safety.
#include <std/disclaimer.h>
/*
* Your Telegram account may get banned.
* We are not responsible for any improper use of this userbot.
* This userbot is specific for scraping members with some helpfull commands.
*
* If you ended up spamming groups, getting reported left and right,
* and you ended up in being fight with Telegram
* and at the end Telegram Team deleted your account. DON'T BLAME US.
*
* No personal support will be provided / We won't spoon feed you.
* If you need help ask in our support group
* and we or our friends will try to help you.
*/
Details
- Python 3.9.x
- Linux (Recommend Debian/Ubuntu)
- Telegram
API_ID
andAPI_HASH
from API development tools
Generate STRING_SESSION
using @strgen_bot or replit or run locally python3 strgen.py
To deploy please visit our channel at @kastaid.
Create and save config.env
file at main directory and fill with the example config file at sample_config.env.
# Production
pip3 install -r requirements.txt
python3 -m getter
# Development
pip3 install -r requirements.txt
pip3 install -r requirements-dev.txt
python3 -m run --watch
More commands python3 -m run -h
Clone the repo, then create and save plugin at ./getter/plugins/plugin_name.py
.
This Example Works Everywhere. (e.g. Groups, Personal Chats)
from . import kasta_cmd
@kasta_cmd(pattern="hi")
async def _(event):
await event.eor("Hello **World**.")
This Example Works Only In Personal Chats.
from . import kasta_cmd
@kasta_cmd(pattern="hi", func=lambda e: e.is_private)
async def _(event):
await event.eor("Hello **World**.")
This Example Works Only In Channels.
from . import kasta_cmd
@kasta_cmd(pattern="hi", func=lambda e: e.is_channel and e.chat.broadcast)
async def _(event):
await event.eor("Hello **World**.")
This Example Works Only In Groups.
from . import kasta_cmd
@kasta_cmd(pattern="hi", func=lambda e: e.is_group)
async def _(event):
await event.eor("Hello **World**.")
This Example Works Only In Groups or Channels.
from . import kasta_cmd
@kasta_cmd(pattern="hi", func=lambda e: not e.is_private)
async def _(event):
await event.eor("Hello **World**.")
This project is open source and free to use under the license. However, if you are using this project and happy with it or just want to encourage me to continue creating stuff please donate!
- LonamiWebs - Telethon
- MarshalX - pytgcalls
- TeamUltroid - Team Ultroid
- UsergeTeam - UsergeTeam
- Dragon-Userbot - Dragon Userbot
- TgCatUB - CatUserbot
- userbotindo - Userbot Indonesia Community
- illvart - Core Developer
- notudope - Core Developer
and everyone 🦄
If you would like to help out with some code, check the details.
This project is licensed under the GNU Affero General Public License v3.0. See the LICENSE file for details.