Metadata-Version: 2.4
Name: fbchat-muqit
Version: 1.2.0
Summary: A powerful Facebook Messenger API to interact with Facebook and Messenger.
Author-email: Muhammad MuQiT <togashiyuuta1111@gmail.com>
License: GPL-3.0-or-later
License-File: LICENSE-BSD.md
License-File: LICENSE.md
Keywords: api,asyncio,chat,facebook,fbchat,fbchat-muqit,fca,messenger
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: aenum>=3.1.15
Requires-Dist: aiofiles>=25.1.0
Requires-Dist: aiohttp>=3.11.11
Requires-Dist: aiomqtt>=2.3.0
Requires-Dist: filetype>=1.2.0
Requires-Dist: furo>=2025.9.25
Requires-Dist: msgspec>=0.19.0
Requires-Dist: python-magic>=0.4.27
Requires-Dist: yarl>=1.18.3
Description-Content-Type: text/markdown

<div align="center">

# fbchat-muqit Facebook & Messenger API

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/fbchat-muqit)
[![fbchat-muqit](https://badgen.net/pypi/v/fbchat-muqit/)](https://pypi.org/project/fbchat-muqit/)
[![License: GPLv3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

**fbchat-muqit** An Unofficial Asynchronous Facebook Messenger API designed to interact with Facebook and Messenger. As It is an Unofficial API we are not responsible if you get banned by Facebook. We recommend to use a dummy Facebook account. For more details check the [Documentation](http://fbchat-muqit.rtfd.io/).

</div>

> [!WARNING]
> Due to `end-to-end` encryption sending messages to other Users is not supported anymore. You can send messages to Group Chat, Room Chat and to pages. [See more](https://about.fb.com/news/2024/03/end-to-end-encryption-on-messenger-explained/)
> You may still be able to send messages to another User if the that User account is inactive for many years because `end-to-end` encryption is not applied when sending message to those account unless the account is Opened again. 


## 🛠️ Installation

You can install fbchat-muqit using pip:

```bash
pip install fbchat-muqit

```

For the latest development version:

```bash
pip install git+https://github.com/togashigreat/fbchat-muqit.git 

```


## 📙 Documentation

The API is Documented. [Read The Documentation](http://fbchat-muqit.rtfd.io/). 


## 🔧 Prerequisites

- Python 3.9+
- A Facebook account (It's safer to use old unused account)
- Facebook account cookies 🍪


## 📖 Usage Example

To login in Facebook you will need Facebook account cookies. Since login via email and password is no longer supported. 

To get your Facebook account cookies. First login in your Facebook account and then add [C3C Chrome extension](https://github.com/c3cbot/c3c-ufc-utility) in your browser. Open a your Facebook account in a browser tab and use this extension to get your account cookies. Copy the cookies and save them in a json file. We will use the cookies to interact with Facebook server. We will call this account `Client` account.



A basic example of How to use it.

```python
from fbchat_muqit import Client, Message, EventType

client = Client(cookies_file_path="cookies.json")

@client.event
async def on_message(message: Message):
    # To avoid spam check if sender_id is client's id or not
    if message.sender_id != client.uid:
        # echo the message
        await client.send_message(message.text, message.thread_id)

client.run()

```

Save the code in file `test.py` and now run the code.

```bash
python3 test.py
```

If It logins succesfully then Use another Facebook account to create a messenger group and add both of the accounts to the group. Now, send message to the group and fbchat_muqit Client account will listen to all incoming messages and events. If everything works properly It should reply and react to the message sent by your other account with an emoji. 


### 📄 License

This project is distributed under a dual-license model:

- **BSD-3-Clause License**: Parts of the code are reused and adapted from the original [fbchat](https://github.com/fbchat-dev/fbchat) library, licensed under the BSD-3-Clause License. 
  See [LICENSE-BSD](./LICENSE-BSD.md) for details.

- **GPL v3 License**: New contributions and modifications by Muhammad MuQiT/togashigreat are licensed under the GPL v3.0 License.
See [LICENSE](./LICENSE.md) for details.

### ✉️Contact Me 

- [Facebook](https://facebook.com/muqit.dev)

