Skip to main content

LINE Works SDK for Python

Project description

line-works-sdk

LINE Works SDK for Python

Requirements

Python 3.11+

Installation

$ pip install line-works-sdk

dev version

https://pypi.org/project/line-works-sdk/#history

$ pip install line-works-sdk==x.x.devyyyymmddHHMM

Usage

from line_works.client import LineWorks
from line_works.mqtt.enums.packet_type import PacketType
from line_works.mqtt.models.packet import MQTTPacket
from line_works.mqtt.models.payload.message import MessagePayload
from line_works.tracer import LineWorksTracer


def receive_publish_packet(w: LineWorks, p: MQTTPacket) -> None:
    payload = p.payload

    if not isinstance(payload, MessagePayload):
        return

    if not payload.channel_no:
        return

    print(f"{payload!r}")

    if payload.loc_args1 == "test":
        w.send_text_message(payload.channel_no, "ok")

    elif payload.loc_args1 == "/msg":
        w.send_text_message(payload.channel_no, f"{payload!r}")

    if payload.notification_type == NotificationType.NOTIFICATION_STICKER:
        w.send_text_message(payload.channel_no, "スタンプ")
        w.send_text_message(payload.channel_no, f"{payload.sticker=}")

        w.send_sticker_message(payload.channel_no, payload.sticker)


WORKS_ID = "YOUR WORKS ID"
PASSWORD = "YOUR WORKS PASSWORD"

works = LineWorks(works_id=WORKS_ID, password=PASSWORD)

my_info = works.get_my_info()
print(f"{my_info=}")

tracer = LineWorksTracer(works=works)
tracer.add_trace_func(PacketType.PUBLISH, receive_publish_packet)
tracer.trace()

sample_usage

sample_usage_2

Contributors

GitHub Actions

The following linter results are detected by GitHub Actions.

  • ruff
  • mypy

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

line_works_sdk-2.1.dev202501241531.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

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

line_works_sdk-2.1.dev202501241531-py3-none-any.whl (19.6 kB view details)

Uploaded Python 3

File details

Details for the file line_works_sdk-2.1.dev202501241531.tar.gz.

File metadata

File hashes

Hashes for line_works_sdk-2.1.dev202501241531.tar.gz
Algorithm Hash digest
SHA256 c90a593476c11b5f61880782f996f6a3ec31c7b62c84432290f41d92c641ff79
MD5 7293a8f7033a5ed5c350a6d8973c3b61
BLAKE2b-256 7f139b30759902b4beb1c9d804c56bf1c109f3896c8dfc7f34c89ee34916d3ea

See more details on using hashes here.

File details

Details for the file line_works_sdk-2.1.dev202501241531-py3-none-any.whl.

File metadata

File hashes

Hashes for line_works_sdk-2.1.dev202501241531-py3-none-any.whl
Algorithm Hash digest
SHA256 b55c1adf7f3692c05e9391bd5b9fbb69cf3a160bc60730d790bc5fccd000d4fe
MD5 050168db9241e6b1bad54eae1eb94f2b
BLAKE2b-256 1782d43e336d54106c8c7beb394696de2714b9ab4c0a9d239d5a2db9683f603f

See more details on using hashes here.

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