Skip to main content

Unofficial Feishu/Lark Web SDK - WebSocket listener, message search, send, and drive operations

Project description

lark-bridge

Unofficial Feishu/Lark Web SDK using cookie-based authentication. Provides real-time message listening via WebSocket, message search/fetch, sending, and Drive operations.

⚠️ This library is reverse-engineered from Feishu's web client. It is not an official API and may break without notice.

Installation

pip install lark-bridge

Quick Start

import asyncio
from lark_bridge import LarkBridge

bridge = LarkBridge("your_cookie_string_here")

# For enterprise tenants with custom domain:
bridge = LarkBridge("your_cookie_string_here", domain="yourcompany.feishu.cn")

Listen to Messages

async def main():
    async for msg in bridge.listen(watch_chats=["chat_id"]):
        print(f"[{msg['chat_id']}] {msg['from_id']}: {msg['text']}")

asyncio.run(main())

Search History

# Simple: auto-paginate up to limit
result = await bridge.search_messages(
    chat_id="7052636707732193282",
    start_time=1716192000,
    end_time=1716278400,
    limit=50,
)
print(result["msg_ids"])

# Manual pagination:
page = await bridge.search_messages_page(chat_id="7052636707732193282")
while page["has_more"]:
    page = await bridge.search_messages_page(
        chat_id="7052636707732193282",
        page_token=page["page_token"],
    )
    print(page["msg_ids"])

Fetch Messages

messages = await bridge.fetch_messages(["msg_id_1", "msg_id_2"])
for msg in messages:
    print(msg["text"])

Send Message

await bridge.send_message(
    chat_id="7052636707732193282",
    text="Hello!",
    reply_id="optional_msg_id",
    at_user_ids=["user_id"],
)

Drive Operations

folder = await bridge.create_folder("My Folder", parent_token="root_token")
# folder = {"token": "...", "url": "https://domain/drive/folder/..."}

result = await bridge.upload_file(folder["token"], "report.txt", b"file content")
# result = {"file_token": "...", "node_token": "...", "url": "https://domain/file/..."}

Cookie Setup

  1. Open Feishu Web in your browser and log in
  2. Open DevTools (F12) → Application → Cookies
  3. Copy the full cookie string (all key=value pairs joined by ; )
  4. Pass it to LarkBridge("your_cookie_string")

Example cookie format:

cookie = "passport_web_did=YOUR_DID; session=YOUR_SESSION; _csrf_token=YOUR_CSRF_TOKEN"

bridge = LarkBridge(cookie)

Cookie typically stays valid as long as the WebSocket connection is maintained.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lark_bridge-0.2.1.tar.gz (22.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lark_bridge-0.2.1-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file lark_bridge-0.2.1.tar.gz.

File metadata

  • Download URL: lark_bridge-0.2.1.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lark_bridge-0.2.1.tar.gz
Algorithm Hash digest
SHA256 51e31fa078b18e261f10db7cb402467cb60c3b82457e8554dfc8c6ac282308a9
MD5 fb65a582e760f0a4c007592bc33a2e02
BLAKE2b-256 a2d2b5ff4595862d1f4eb897bc042a43d6328dcbda8fc6f228b1848e8bea5a68

See more details on using hashes here.

Provenance

The following attestation bundles were made for lark_bridge-0.2.1.tar.gz:

Publisher: publish.yml on ryanwx/lark-bridge

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lark_bridge-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: lark_bridge-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lark_bridge-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c9173881773d453659e1943c7184a2a04c3f8fe27f2528fb4a5c6ca4e91e2975
MD5 d7481d371d7820509dc4a57594ba6178
BLAKE2b-256 1cbbdb96557b203e24f1528166731e603daaf908af0a28836a29bfb012b80717

See more details on using hashes here.

Provenance

The following attestation bundles were made for lark_bridge-0.2.1-py3-none-any.whl:

Publisher: publish.yml on ryanwx/lark-bridge

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page