python类TeleBot()的实例源码

test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 20 收藏 0 点赞 0 评论 0
def test_send_message_dis_noti(self):
        text = 'CI Test Message'
        tb = telebot.TeleBot(TOKEN)
        ret_msg = tb.send_message(CHAT_ID, text, disable_notification=True)
        assert ret_msg.message_id
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def test_send_message_with_markup(self):
        text = 'CI Test Message'
        tb = telebot.TeleBot(TOKEN)
        markup = types.ReplyKeyboardMarkup()
        markup.add(types.KeyboardButton("1"))
        markup.add(types.KeyboardButton("2"))
        ret_msg = tb.send_message(CHAT_ID, text, disable_notification=True, reply_markup=markup)
        assert ret_msg.message_id
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 25 收藏 0 点赞 0 评论 0
def test_send_message_with_markup_use_string(self):
        text = 'CI Test Message'
        tb = telebot.TeleBot(TOKEN)
        markup = types.ReplyKeyboardMarkup()
        markup.add("1")
        markup.add("2")
        markup.add("3")
        markup.add("4")
        ret_msg = tb.send_message(CHAT_ID, text, disable_notification=True, reply_markup=markup)
        assert ret_msg.message_id
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 23 收藏 0 点赞 0 评论 0
def test_forward_message(self):
        text = 'CI forward_message Test Message'
        tb = telebot.TeleBot(TOKEN)
        msg = tb.send_message(CHAT_ID, text)
        ret_msg = tb.forward_message(CHAT_ID, CHAT_ID, msg.message_id)
        assert ret_msg.forward_from
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 22 收藏 0 点赞 0 评论 0
def test_forward_message_dis_noti(self):
        text = 'CI forward_message Test Message'
        tb = telebot.TeleBot(TOKEN)
        msg = tb.send_message(CHAT_ID, text)
        ret_msg = tb.forward_message(CHAT_ID, CHAT_ID, msg.message_id, disable_notification=True)
        assert ret_msg.forward_from
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 20 收藏 0 点赞 0 评论 0
def test_reply_to(self):
        text = 'CI reply_to Test Message'
        tb = telebot.TeleBot(TOKEN)
        msg = tb.send_message(CHAT_ID, text)
        ret_msg = tb.reply_to(msg, text + ' REPLY')
        assert ret_msg.reply_to_message.message_id == msg.message_id
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def test_register_for_reply(self):
        text = 'CI reply_to Test Message'
        tb = telebot.TeleBot(TOKEN)
        msg = tb.send_message(CHAT_ID, text, reply_markup=types.ForceReply())
        reply_msg = tb.reply_to(msg, text + ' REPLY')

        def process_reply(message):
            assert msg.message_id == message.reply_to_message.message_id

        tb.register_for_reply(msg, process_reply)

        tb.process_new_messages([reply_msg])
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def test_send_location(self):
        tb = telebot.TeleBot(TOKEN)
        lat = 26.3875591
        lon = -161.2901042
        ret_msg = tb.send_location(CHAT_ID, lat, lon)
        assert int(ret_msg.location.longitude) == int(lon)
        assert int(ret_msg.location.latitude) == int(lat)
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def test_send_venue(self):
        tb = telebot.TeleBot(TOKEN)
        lat = 26.3875591
        lon = -161.2901042
        ret_msg = tb.send_venue(CHAT_ID, lat, lon, "Test Venue", "1123 Test Venue address")
        assert ret_msg.venue.title == "Test Venue"
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def test_Chat(self):
        tb = telebot.TeleBot(TOKEN)
        me = tb.get_me()
        msg = tb.send_message(CHAT_ID, 'Test')
        assert me.id == msg.from_user.id
        assert msg.chat.id == int(CHAT_ID)
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 22 收藏 0 点赞 0 评论 0
def test_edit_message_text(self):
        tb = telebot.TeleBot(TOKEN)
        msg = tb.send_message(CHAT_ID, 'Test')
        new_msg = tb.edit_message_text('Edit test', chat_id=CHAT_ID, message_id=msg.message_id)
        assert new_msg.text == 'Edit test'
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def test_edit_message_caption(self):
        file_data = open('../examples/detailed_example/kitten.jpg', 'rb')
        tb = telebot.TeleBot(TOKEN)
        msg = tb.send_document(CHAT_ID, file_data, caption="Test")
        new_msg = tb.edit_message_caption(caption='Edit test', chat_id=CHAT_ID, message_id=msg.message_id)
        assert new_msg.caption == 'Edit test'
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 22 收藏 0 点赞 0 评论 0
def test_get_chat_administrators(self):
        tb = telebot.TeleBot(TOKEN)
        cas = tb.get_chat_administrators(GROUP_ID)
        assert len(cas) > 0
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 22 收藏 0 点赞 0 评论 0
def test_get_chat_members_count(self):
        tb = telebot.TeleBot(TOKEN)
        cn = tb.get_chat_members_count(GROUP_ID)
        assert cn > 1
test_telebot.py 文件源码 项目:PythonTelegram 作者: YongJang 项目源码 文件源码 阅读 19 收藏 0 点赞 0 评论 0
def test_edit_markup(self):
        text = 'CI Test Message'
        tb = telebot.TeleBot(TOKEN)
        markup = types.InlineKeyboardMarkup()
        markup.add(types.InlineKeyboardButton("Google", url="http://www.google.com"))
        markup.add(types.InlineKeyboardButton("Yahoo", url="http://www.yahoo.com"))
        ret_msg = tb.send_message(CHAT_ID, text, disable_notification=True, reply_markup=markup)
        markup.add(types.InlineKeyboardButton("Google2", url="http://www.google.com"))
        markup.add(types.InlineKeyboardButton("Yahoo2", url="http://www.yahoo.com"))
        new_msg = tb.edit_message_reply_markup(chat_id=CHAT_ID, message_id=ret_msg.message_id, reply_markup=markup)
        assert new_msg.message_id
mein.py 文件源码 项目:CodeLabs 作者: TheIoTLearningInitiative 项目源码 文件源码 阅读 16 收藏 0 点赞 0 评论 0
def listener(messages):
    """
    When new messages arrive TeleBot will call this function.
    """
    for m in messages:
        if m.content_type == 'text':
            # print the sent message to the console
            print str(m.chat.first_name) + " [" + str(m.chat.id) + "]: " + m.text
database_update.py 文件源码 项目:noshazambot 作者: nikkonrom 项目源码 文件源码 阅读 17 收藏 0 点赞 0 评论 0
def upload_list(audio_list):
    bot = telebot.TeleBot(config.bot_token)
    filename_mp3 = 'temp.mp3'
    filename_ogg = 'temp.ogg'    
    counter = 0
    start = time.time()

    for audio in list(audio_list):
        try:

            api_query = 'http://api.?.ws/api.php?method=get.audio&ids=' + str(audio[1]) + '_' + str(audio[0]) + '&key=' + config.audio_api_key
            api_callback = requests.get(api_query)
            if api_callback.text == 'wrong ids or Limit exceeded(10)' or api_callback.status_code != 200:
                audio_list.remove(audio)
                continue
            audio_url = (json.loads(api_callback.text))[0][2]
            if get_local_ogg(audio_url, filename_mp3, filename_ogg):
                audio_list.remove(audio)
                continue        

            stop = time.time()
            if stop - start < 1:    #avoiding of exeption: 'Too many requests'
                time.sleep(1)
            start = stop

            audio_file_id = upload_ogg(bot, filename_ogg)
            audio[11] = audio_file_id
            os.remove(filename_ogg)   
        except:
            audio_list.remove(audio)
            if os.path.exists(filename_ogg):
                os.remove(filename_ogg)
            continue

    with open('uploaded_list.txt', 'w') as outfile:
        json.dump(audio_list, outfile)
    return audio_list
telegram.py 文件源码 项目:simple-monitor-alert 作者: Nekmo 项目源码 文件源码 阅读 19 收藏 0 点赞 0 评论 0
def init(self):
        token = self.config.get('token')
        self.bot = telebot.TeleBot(token)
        self.telegram_cache = JSONFile(create_file(os.path.join(get_var_directory(), 'telegram-cache.json'), {
            'chat_ids': {},
            'version': __version__,
        }))
        # print([vars(u.message.chat) for u in updates])
util.py 文件源码 项目:infibot 作者: code2pro 项目源码 文件源码 阅读 21 收藏 0 点赞 0 评论 0
def get_bot():
    '''Return the Telegram bot with token is drawn from config'''
    return telebot.TeleBot(botcfg['TELEGRAM_TOKEN'])
TriggerBotSqlite.py 文件源码 项目:TriggerBot 作者: sanguchi 项目源码 文件源码 阅读 17 收藏 0 点赞 0 评论 0
def check_args():
    print("checking args")
    parser = argparse.ArgumentParser()
    parser.add_argument('-t', '--token', help="Token received from botfather.")
    parser.add_argument('-o', '--owner', help="Telegram chat ID to send status messages.", type=int)
    parser.add_argument('-d', '--dict', help="Keep database as a dict object stored in ram", default=False)
    args = parser.parse_args()
    if(args.dict):
        global triggers_dict
        triggers_dict = True
    if (args.token):
        if (args.owner):
            try:
                dummy_bot = telebot.TeleBot(args.token)
                bot_info = dummy_bot.get_me()
                bot_user, created = TGUserModel.get_or_create(
                    chat_id=bot_info.id,
                    first_name=bot_info.first_name,
                    username=bot_info.username
                )
                bot_user.save()
                try:
                    dummy_bot.send_message(args.owner, "This bot is ready!")
                    bot_cfg = ConfigModel.create(bot_user=bot_user, token=args.token, owner=args.owner)
                    bot_cfg.save()
                except ApiException as ae:
                    print('''Make sure you have started your bot https://telegram.me/{}.
                        And configured the owner variable.
                        ApiException: {}'''.format(bot_info.username, ae))
                    exit(1)
            except ApiException as ApiError:
                print("Invalid token[{}]: {}".format(args.token, ApiError))
                exit(1)
            except Exception as e:
                print(e)
                exit(1)
        else:
            print("Owner ID not supplied")
            exit(1)


问题


面经


文章

微信
公众号

扫码关注公众号