mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Compare commits
2 commits
dd3f6e1245
...
f7c7362ca2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7c7362ca2 | ||
|
|
cb38d6a02b |
1 changed files with 14 additions and 1 deletions
|
|
@ -80,7 +80,20 @@ Using async_pymongo (Recommended for python3.9+):
|
||||||
print(await app.get_me())
|
print(await app.get_me())
|
||||||
|
|
||||||
|
|
||||||
Using motor:
|
Using official mongodb driver:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from pymongo import AsyncMongoClient
|
||||||
|
from pyrogram import Client
|
||||||
|
|
||||||
|
conn = AsyncMongoClient("mongodb://...")
|
||||||
|
|
||||||
|
async with Client("my_account", mongodb=dict(connection=conn, remove_peers=False)) as app:
|
||||||
|
print(await app.get_me())
|
||||||
|
|
||||||
|
|
||||||
|
Using motor (Deprecated, but still works):
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue