- Following advice here: https://docs.python.org/3/howto/logging.html#configuring-logging-for-a-library - Renamed the logger: client -> fbchat - Remove logging_level init parameter from Client - Use print instead of log.info in examples
18 lines
593 B
Python
18 lines
593 B
Python
from fbchat import Client
|
|
|
|
# Subclass fbchat.Client and override required methods
|
|
class EchoBot(Client):
|
|
def onMessage(self, author_id, message_object, thread_id, thread_type, **kwargs):
|
|
self.markAsDelivered(thread_id, message_object.uid)
|
|
self.markAsRead(thread_id)
|
|
|
|
print("{} from {} in {}".format(message_object, thread_id, thread_type.name))
|
|
|
|
# If you're not the author, echo
|
|
if author_id != self.uid:
|
|
self.send(message_object, thread_id=thread_id, thread_type=thread_type)
|
|
|
|
|
|
client = EchoBot("<email>", "<password>")
|
|
client.listen()
|