Как объединить несколько каналов, используя код twitchdev python - PullRequest
0 голосов
/ 09 марта 2020

Я пытаюсь перевести бота, используя twitchdev python код: https://github.com/twitchdev/chat-samples/blob/master/python/chatbot.py

Мне удалось получать сообщения из каналов и отправлять переведенный текст, но я не могу присоединиться несколько каналов.

То, что я сделал ниже, - это создание списка каналов и использование вызовов для l oop, но он присоединяется только к последнему каналу.

Я попытался составить другой список каналов в def on_welcome(self, c, e), но он также работает на последнем канале (когда я печатаю self.channels в def on_welcome(self, c, e), он печатает пустой список, а когда я печатаю self.channel, он печатает только последний канал)

Любые предложения добро пожаловать.

import sys
import irc.bot
import requests
import config

class TwitchBot(irc.bot.SingleServerIRCBot):
    def __init__(self, username, client_id, token, channels):
        for channel in channels
            self.client_id = client_id
            self.token = token
            self.channel = '#' + channel

            # Get the channel id, we will need this for v5 API calls
            url = 'https://api.twitch.tv/kraken/users?login=' + channel
            headers = {'Client-ID': client_id, 'Accept': 'application/vnd.twitchtv.v5+json'}
            r = requests.get(url, headers=headers).json()
            self.channel_id = r['users'][0]['_id']

            # Create IRC bot connection
            server = 'irc.chat.twitch.tv'
            port = 6667
            print 'Connecting to ' + server + ' on port ' + str(port) + '...'
            irc.bot.SingleServerIRCBot.__init__(self, [(server, port, 'oauth:'+token)], username, username)


    def on_welcome(self, c, e):
        print 'Joining ' + self.channel

        # You must request specific capabilities before you can use them
        c.cap('REQ', ':twitch.tv/membership')
        c.cap('REQ', ':twitch.tv/tags')
        c.cap('REQ', ':twitch.tv/commands')
        c.join(self.channel)

    def on_pubmsg(self, c, e):

        # If a chat message starts with an exclamation point, try to run it as a command
        if e.arguments[0][:1] == '!':
            cmd = e.arguments[0].split(' ')[0][1:]
            print 'Received command: ' + cmd
            self.do_command(e, cmd)
        return

    def do_command(self, e, cmd):
        c = self.connection

        # Provide basic information to viewers for specific commands
        elif cmd == "raffle":
            message = "This is an example bot, replace this text with your raffle text."
            c.privmsg(self.channel, message)
        elif cmd == "schedule":
            message = "This is an example bot, replace this text with your schedule text."            
            c.privmsg(self.channel, message)


def main():
    if len(sys.argv) != 5:
        print("Usage: twitchbot <username> <client id> <token> <channel>")
        sys.exit(1)

    username  = config.twitch['botname']
    client_id = config.twitch['cliendID']
    token     = config.twitch['oauth']
    channels   = ["channel1", "channel2"]

    bot = TwitchBot(username, client_id, token, channels)
    bot.start()

if __name__ == "__main__":
    main()
...