当前位置: 首页>>代码示例>>Python>>正文


Python telepot.Bot方法代码示例

本文整理汇总了Python中telepot.Bot方法的典型用法代码示例。如果您正苦于以下问题:Python telepot.Bot方法的具体用法?Python telepot.Bot怎么用?Python telepot.Bot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在telepot的用法示例。


在下文中一共展示了telepot.Bot方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, chat_id=176900492, order_callback=lambda x: x):
		self.order_callback = order_callback
		self.bot = telepot.Bot(BOT_TOKEN)
		self.bittrex_utils = BittrexUtils()
		self.chat_id = None

		# Orders
		self.buying = None
		self.selling = None

		MessageLoop(self.bot, {
			"chat" : self.chat_handler,
			"callback_query": self.callback_query_handler
		}).run_as_thread()

		try:
			with open(".chats", "r") as f:
				self.chat_id = int(f.readlines()[0].strip())
				print(self.chat_id)
		except FileNotFoundError:
			print("No authenticated chats")
		except Exception as e:
			print(e)
		print("Running bot...") 
开发者ID:stephancill,项目名称:mcafee2cash,代码行数:26,代码来源:telegram.py

示例2: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, name=None):

        self.bot = telepot.Bot(TELEGRAM_TOKEN)
        LOG.debug('Telegram: %s', self.bot.getMe())

        if TELEGRAM_WEBHOOK_URL and \
                        TELEGRAM_WEBHOOK_URL != self.bot.getWebhookInfo()['url']:
            self.bot.setWebhook(TELEGRAM_WEBHOOK_URL)
            LOG.debug('Telegram: %s', self.bot.getWebhookInfo())

        super(TelegramBot, self).__init__(name)
        if TELEGRAM_TEMPLATE:
            if os.path.exists(TELEGRAM_TEMPLATE):
                with open(TELEGRAM_TEMPLATE, 'r') as f:
                    self.template = Template(f.read())
            else:
                self.template = Template(TELEGRAM_TEMPLATE)
        else:
            self.template = Template(DEFAULT_TMPL) 
开发者ID:alerta,项目名称:alerta-contrib,代码行数:21,代码来源:alerta_telegram.py

示例3: send

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def send(to, message, **kwargs):
    """
       SITE: https://github.com/nickoala/telepot
       TELEGRAM API: https://core.telegram.org/bots/api

       Installation:
       pip install 'telepot>=10.4'
   """

    available_kwargs_keys = [
        'parse_mode',
        'disable_web_page_preview',
        'disable_notification',
        'reply_to_message_id',
        'reply_markup'
    ]

    available_kwargs = {
        k: v for k, v in kwargs.iteritems() if k in available_kwargs_keys
    }

    bot = telepot.Bot(settings.TELEGRAM_BOT_TOKEN)
    return bot.sendMessage(to, message, **available_kwargs) 
开发者ID:LPgenerator,项目名称:django-db-mailer,代码行数:25,代码来源:bot.py

示例4: main

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def main(config, file_with_msg):
    with open(file_with_msg) as f:
        text_to_send = f.read()
    bot = telepot.Bot(config['telegram_token'])
    mongo = pymongo.MongoClient(host=config['mongo']['host'])
    people = mongo[config['mongo']['db']]['people']
    already_sent = mongo[config['mongo']['db']]['people_sent']
    cursor = people.find({})
    count = 0
    for record in cursor:
        print('>> {}'.format(count))
        print(record)
        if already_sent.find_one({'id': record['id']}) is None:
            already_sent.insert_one({'id': record['id']})
            send(bot, record['id'], text_to_send)
        count += 1 
开发者ID:Fillll,项目名称:pockebot,代码行数:18,代码来源:send_announcement.py

示例5: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, seed_tuple, timeout, is_main=True, config=None):
        super(PocketBot, self).__init__(seed_tuple, timeout)
        self.visit_time = 0
        self.find_url = re.compile('(https?://[^\s]+)')
        self.find_tag = re.compile("#[\w']+")
        self.mongo = db.PockebotDBSlave(config)
        self.is_main = is_main
        self.messages = list()
        self.pocket_client = pocket.PocketbotPocketSlave(config['pocket_token'])
        # For forwarding /feedback messages
        self.stuff_bot = telepot.Bot(config['support_bot_token'])
        self.dev_group_chat = config['developers_group']
        # User state
        self.lang = 'en'
        self.tags_promt = True
        self.set_pockebot_tag = True
        self.session_cnt = 0
        self.audio = False
        self.request_chat_id = None
        self._edit_msg_ident = None
        self._editor = None
        self.waiting_for_menu_action = False
        self.reading_time_tag = True 
开发者ID:Fillll,项目名称:pockebot,代码行数:25,代码来源:main_app.py

示例6: main

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def main():

    global bot
    
    startupThread = threading.Thread(target=startUpWork, args=())
    startupThread.daemon = True
    startupThread.start()
    
    if internetOn():
        try:
            bot = telepot.Bot(access_token)
            bot.message_loop(handle)
            bot.sendMessage(CHAT_ID, str(current_system_time.strftime("%d|%m|%Y-%H|%M|%S")) + ': '+ USER + ' is online ^_^')
            print ('[*] Listening ...')
            try:
                while 1:
                    time.sleep(5)
            except KeyboardInterrupt:
                print '[*] Eclipse completed...'
        except Exception as e:
            pass 
开发者ID:mehulj94,项目名称:BrainDamage,代码行数:23,代码来源:eclipse.py

示例7: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, config_file):

		print('[*] Getting config...')
		self.conf = dict()
		self.get_conf(config_file)
		print('[+] Done!\n')

		# Check if CEF_Syslog is enabled
		if self.conf['cef_syslog_enable']:
			print '[+] Syslog Enabled'
			self.syslog = syslog.Syslog(self.conf['cef_syslog_server'])

		# Check if Telegram is enabled
		if self.conf['telegram_enable']:
			print '[+] Telegram Enabled'
			self.bot = telepot.Bot(self.conf['api'])

		# Check if Zabbix is enabled
		if self.conf['zabbix_enable']:
			print '[+] Zabbix Enabled'
			print 'Notifications ',self.conf['notifications']
			print 'Advanced ',self.conf['zabbix_advantage_keys']
		print 

		print('[*] Getting rules...')
		self.get_file_rules()
		print('[+] Done!\n')

		self.rules = json.loads(open(self.conf['rules']).read())

		# List of all senders, enabled or not
		self.senders = [self.send_zabbix, self.send_cef_syslog, self.send_telegram]


		print('[*] A.R.T.L.A.S Started!\n') 
开发者ID:mthbernardes,项目名称:ARTLAS,代码行数:37,代码来源:artlas.py

示例8: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, token, chat_id, show_last_update=True):
        self.bot = telepot.Bot(token)
        self.chat_id = chat_id
        self.text = self.prev_text = '<< Init tg_tqdm bar >>'
        self.message_id = self.bot.sendMessage(chat_id, self.text)['message_id']
        self.show_last_update = show_last_update 
开发者ID:ermakovpetr,项目名称:tg_tqdm,代码行数:8,代码来源:_tg_tqdm.py

示例9: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self):
		Log.i("Initializing PAW app")
		self._init_paw_telepot()
		self._bot = telepot.Bot(self.TELEGRAM_TOKEN) 
开发者ID:nkming2,项目名称:google-search-telegram-bot,代码行数:6,代码来源:paw_app.py

示例10: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self):
		Log.i("Initializing standalone app")
		self._bot = telepot.Bot(self.TELEGRAM_TOKEN)
		self._answerer = telepot.helper.Answerer(self._bot) 
开发者ID:nkming2,项目名称:google-search-telegram-bot,代码行数:6,代码来源:standalone_app.py

示例11: do_settings

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def do_settings():
    global radius_by_default,radius_step,radius_max,messages, POKEMONS, POKEMON_NUM,about,bot,log_queue,log_to_file,ignored_default,log_notifications,max_notis_per_user_and_cycle,time_between_cycles
    with open('{}/res/telebotsettings.json'.format(workdir)) as f:
        telecfg = json.load(f)

    language = telecfg["language"]
    radius_by_default = int(telecfg["radius_by_default"])
    radius_step = telecfg["radius_step"]
    radius_max = telecfg["radius_max"]
    max_notis_per_user_and_cycle = telecfg["max_notis_per_user_and_cycle"]
    time_between_cycles = telecfg["time_between_cycles"]
    log_notifications = telecfg["log_notifications"]

    log_to_file = telecfg["log_to_file"]

    bot = telepot.Bot(str(telecfg["TELEGRAM_BOT_TOKEN"]))
    about = telecfg["info_about"]

    ignored_default = telecfg["ignored_by_default"]
    if type(ignored_default) == unicode:
        print(time.strftime('[%H:%M:%S] ' + '[!] Warning, the ignored_by_default setting in telebotsettings.json should be now a array like [1,2,3] instead of a string like "1,2,3"'))
        sys.exit()

    with open('{}/res/languages/{}.json'.format(workdir, language)) as f:
        messages = json.load(f)

    with open('{}/webres/static/{}.json'.format(workdir, language)) as f:
        POKEMONS = json.load(f) 
开发者ID:seikur0,项目名称:PGO-mapscan-opt,代码行数:30,代码来源:telebot.py

示例12: send_message

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def send_message(chat_id, text, disable_notification=False, reply_markup=None, disable_web_page_preview=False):
    try:
        if reply_markup is None:
            bot.sendMessage(chat_id, text, parse_mode='HTML', disable_notification=disable_notification, disable_web_page_preview=disable_web_page_preview)
        else:
            bot.sendMessage(chat_id, text, parse_mode='HTML', disable_notification=disable_notification, disable_web_page_preview=disable_web_page_preview, reply_markup=reply_markup)
    except BotWasBlockedError:
        print_log("[!] Bot was blocked. Couldn't send message.")
    except TelegramError as e:
        print_log("[!] An error happened while sending message " + str(e.json))
    except Exception as e:
        print_log("[!] An unkown error happened while sending message, error: {}".format(e)) 
开发者ID:seikur0,项目名称:PGO-mapscan-opt,代码行数:14,代码来源:telebot.py

示例13: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, token):
        """

        :param token: a bot authorization token, can be obtained from the @BotFather bot.
        """
        super(TelegramBot, self).__init__()

        self._token = token
        self._bot = telepot.Bot(token)
        self._chat_id_to_session = {} 
开发者ID:lukalabs,项目名称:cakechat,代码行数:12,代码来源:telegram_bot_client.py

示例14: __init__

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def __init__(self, t_channel=None, config=None):
        super(Reddit2TelegramSender, self).__init__()
        if config is None:
            with open('configs/prod.yml') as f:
                config = yaml.load(f.read())
        self.config = config
        self.telepot_bot = telepot.Bot(self.config['telegram']['token'])
        if t_channel is None:
            t_channel = '@r_channels_test'
        self.t_channel = t_channel
        self._make_mongo_connections()
        time.sleep(2) 
开发者ID:Fillll,项目名称:reddit2telegram,代码行数:14,代码来源:__init__.py

示例15: run

# 需要导入模块: import telepot [as 别名]
# 或者: from telepot import Bot [as 别名]
def run(message, matches, chat_id, step):
    if matches == 'add':
        if r.sismember('groups', chat_id):
            bot.sendMessage(chat_id, ln['admin']['add']["0"])
        else:
            r.sadd('groups', chat_id)
            bot.sendMessage(chat_id, ln['admin']['add']["1"])
    elif matches == 'rem':
        if r.sismember('groups', chat_id):
            r.srem('groups', chat_id)
            bot.sendMessage(chat_id, ln['admin']['rem']['0'])
        else:
            bot.sendMessage(chat_id, ln['admin']['rem']['1'])
    elif matches == 'leave':
        bot.leaveChat(chat_id)
    elif matches == 'stats':
        mmd = ['photo', 'video', 'voice', 'video_note', 'contact', 'sticker',
               'audio', 'text', 'location', 'document', 'new_chat_member']
        text = 'Stats Bot:'
        i = 0
        for x in mmd:
            get = r.get('msg:{}'.format(x))
            text += '\n>{} : {}'.format(x, get)
            i = i + int(get)
        text += '\n>All Message : {}'.format(i)
        text += '\n>pv members: {}'.format(r.scard('spntapv'))
        text += '\n>Groups: {}'.format(r.scard('groups'))
        bot.sendMessage(chat_id, text)
    elif matches == 'fbc':
        if 'reply_to_message' in message:
            m = message['reply_to_message']
            gp = r.smembers('groups')
            i = 0
            for x in gp:
                try:
                    send = bot.forwardMessage(x, m['chat']['id'], m['message_id'])
                    if send:
                        i += 1
                except:
                    pass
            bot.sendMessage(chat_id, 'به {} گروه ارسال شد'.format(i)) 
开发者ID:MOHAMADKHOSHNAVA,项目名称:spntaBot,代码行数:43,代码来源:admin.py


注:本文中的telepot.Bot方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。