Removed deprecations Removed new event system Added documentation for all events Added FAQ Changed Client.uid to Client.id Improved User model Prepared for support of pages
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
# -*- coding: UTF-8 -*-
|
|
|
|
from fbchat import Client
|
|
from fbchat.models import *
|
|
|
|
client = Client('<email>', '<password>')
|
|
|
|
# Fetches a list of all users you're currently chatting with, as `User` objects
|
|
users = client.fetchAllUsers()
|
|
|
|
print("users' IDs: {}".format(user.uid for user in users))
|
|
print("users' names: {}".format(user.name for user in users))
|
|
|
|
|
|
# If we have a user id, we can use `getUserInfo` to fetch a `User` object
|
|
user = client.fetchUserInfo('<user id>')['<user id>']
|
|
# We can also query both mutiple users together, which returns list of `User` objects
|
|
users = client.fetchUserInfo('<1st user id>', '<2nd user id>', '<3rd user id>')
|
|
|
|
print("user's name: {}".format(user.name))
|
|
print("users' names: {}".format(users[k].name for k in users))
|
|
|
|
|
|
# `searchForUsers` searches for the user and gives us a list of the results,
|
|
# and then we just take the first one, aka. the most likely one:
|
|
user = client.searchForUsers('<name of user>')[0]
|
|
|
|
print('user ID: {}'.format(user.uid))
|
|
print("user's name: {}".format(user.name))
|
|
print("user's photo: {}".format(user.photo))
|
|
print("Is user client's friend: {}".format(user.is_friend))
|
|
|
|
|
|
# Fetches a list of the 20 top threads you're currently chatting with
|
|
threads = client.fetchThreadList()
|
|
# Fetches the next 10 threads
|
|
threads += client.fetchThreadList(offset=20, amount=10)
|
|
|
|
print("Thread's INFO: {}".format(threads))
|
|
|
|
|
|
# Gets the last 10 messages sent to the thread
|
|
messages = client.fetchThreadMessages(offset=0, amount=10, thread_id='<thread id>', thread_type=ThreadType)
|
|
# Since the message come in reversed order, reverse them
|
|
messages.reverse()
|
|
|
|
# Prints the content of all the messages
|
|
for message in messages:
|
|
print(message.body)
|
|
|
|
|
|
# Here should be an example of `getUnread`
|