Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 907 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 907 Bytes

traq.py

PyPI version

traQ v3 API library for Python >= 3.6.

Generation

./generate.sh 3.0.0-0
# Configure PyPI account and ~/.pypirc
./upload.sh

Usage

A quick example of posting message to a channel:

from traq import ApiClient, Configuration
from traq.api.message_api import MessageApi
from traq.model.post_message_request import PostMessageRequest

if __name__ == '__main__':
    client = ApiClient(Configuration(access_token="your-access-token"))
    m_api = MessageApi(client)
    message = m_api.post_message("channel-id", post_message_request=PostMessageRequest("おいす〜"))
    print(message)

For more, see ./out/README.md

References