Runion

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Search results

  1. N

    Discord bot and telegram bot

    As another solution you can use something like TDLib to make a robotic client. I prefer Kotlin, so made a small example with this lib https://github.com/KurenaiRyu/tdlight-sdk (This is just for example of using similar clients, not my recommendation) Код: Скопировать в буфер обмена import...
  2. N

    Discord bot and telegram bot

    Here is an example of a bot that sending messages to users in a telegram with phyton Python: Скопировать в буфер обмена import telegram bot = telegram.Bot(token='YOUR_TOKEN') user_ids = ['123456', '7891011', '12131415'] for user_id in user_ids: try...
Top