This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
fbchat/examples/basic_usage.py
2020-01-09 17:21:07 +01:00

16 lines
312 B
Python

import fbchat
# Log the user in
session = fbchat.Session.login("<email>", "<password>")
print("Own id: {}".format(session.user_id))
# Create helper User class
user = fbchat.Thread(session=session, id=session.user_id)
# Send a message to yourself
user.send_text("Hi me!")
# Log the user out
session.logout()