Skip to main content

LINE Works SDK for Python

Project description

line-works-sdk

LINE WORKS SDK for Python

Talk API is defined in OpenAPI 3.1.0 (here).

This library uses code automatically generated by openapi-generator-cli.

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

Linter & Formatter

  • 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-3.3.dev202501271155.tar.gz (34.1 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-3.3.dev202501271155-py3-none-any.whl (61.5 kB view details)

Uploaded Python 3

File details

Details for the file line_works_sdk-3.3.dev202501271155.tar.gz.

File metadata

File hashes

Hashes for line_works_sdk-3.3.dev202501271155.tar.gz
Algorithm Hash digest
SHA256 a941deb003b19600bc0d1e033aa3c3544ffd2399ab60f0b26964d42e17dcadc7
MD5 b66f2fab29c4491e44c103cfe7c57322
BLAKE2b-256 7ed9be8f0bfc7d2dc181489e36a9a34da96eba47f21bd5cdafc59591eab8596f

See more details on using hashes here.

File details

Details for the file line_works_sdk-3.3.dev202501271155-py3-none-any.whl.

File metadata

File hashes

Hashes for line_works_sdk-3.3.dev202501271155-py3-none-any.whl
Algorithm Hash digest
SHA256 0b1f7907cf69168b4c78f8a7053226f22d125b4ad9df94e49ebcf68ea08c9238
MD5 de6acb286f5956fc1f0eae260aa8a097
BLAKE2b-256 5983b60e399f59b5c0127d3243b3712455f339b65c667009e80bbece7e51cd82

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