Sto spostando il mio bot Twitch da Python 2.7 a Python 3.5. Continuo a ricevere l'errore: a bytes like object is required not 'str'
sulla seconda riga del codice qui sotto.Python - è richiesto un byte come oggetto, non str
twitchdata = irc.recv(1204)
data = twitchdata.split(":")[1]
twitchuser = data.split("!")[0]
twitchmsg = twitchdata.split(":")[2]
chat = str(twitchuser) +": "+ str(twitchmsg)
print(chat) #prints chat to console
Vedi anche: Ned Batcheler [Pragmatico Unicode, o, Come faccio a fermare il dolore?] (Http://bit.ly/unipain) – delnan