Swit.io API client
Project description
Pyswit: Python + Swit.io
Python interface for swit.io
Requirements
This library requires Python 3.6 or later.
Installation
$ pip install pyswit
Examples
from pyswit import Pyswit
# How to get access token: https://developers.swit.io/documentation#authentication
access_token = "<your access token>"
swit = Pyswit(access_token)
# User
print(swit.user.info())
# Create a message
channel_id = "<your_channel_id>" # not channel name
response = swit.message.create(channel_id=channel_id, content="Hello, World!")
# Get message_id
message_id = response["data"]["message"]["message_id"]
# React to a message
swit.message.reaction.create(message_id=message_id, reaction_name=":smile:")
# Comment on a message
swit.message.comment.create(message_id=message_id, content="Comment string here")
Webhook
Pyswit supports webhook.
curl -X POST -H 'Content-type: application/json' --data '{"text":"Hello, World!"}' <your_webhook_url>
The above curl request can be implemented with pyswit as follows.
from pyswit import webhook
webhook_url="<your_webhook_url>"
webhook(url=webhook_url, text="Hello, World!")
Documentation
Swit.io Developer documentation
Currently, Pyswit supports the following API.
HTTP | endpoint | pyswit | ||
---|---|---|---|---|
Users | GET | user.info | swit.user.info() | :white_check_mark: |
Workspaces | [Advanced Only] No plan to support | :x: | ||
Channels | POST | channel.archive | ||
POST | channel.create | |||
POST | channel.createDirect | |||
GET | channel.info | |||
GET | channel.list | swit.channel.list() | :white_check_mark: | |
POST | channel.update | |||
Messages | POST | message.comment.create | swit.message.comment.create() | :white_check_mark: |
GET | message.comment.list | swit.message.comment.list() | :white_check_mark: | |
POST | message.comment.remove | swit.message.comment.remove() | :white_check_mark: | |
POST | message.create | swit.message.create() | :white_check_mark: | |
GET | message.info | swit.message.info() | :white_check_mark: | |
GET | message.list | swit.message.list() | :white_check_mark: | |
POST | message.reaction.create | swit.message.reaction.create() | :white_check_mark: | |
POST | message.reaction.remove | swit.message.reaction.remove() | :white_check_mark: | |
POST | message.remove | swit.message.remove() | :white_check_mark: | |
Ideas | ||||
Projects | POST | project.archive | ||
POST | project.create | |||
GET | project.info | |||
GET | project.list | swit.project.list() | :white_check_mark: | |
GET | project.tagList | |||
POST | project.update | |||
GET | project.user.list | |||
Project buckets | ||||
Tasks | POST | task.assignee.add | ||
POST | task.asignee.remove | |||
POST | task.checklist.create | |||
GET | task.checklist.info | |||
GET | task.checklist.list | |||
POST | task.checklist.remove | |||
POST | task.checklist.update | |||
POST | task.comment.create | |||
GET | task.comment.list | |||
POST | task.comment.remove | |||
POST | task.comment.update | |||
POST | task.create | swit.task.create() | :white_check_mark: | |
POST | task.follow.add | |||
POST | task.follow.remove | |||
GET | task.info | swit.task.info() | :white_check_mark: | |
GET | task.list | swit.task.list() | :white_check_mark: | |
GET | task.listByColumn | swit.task.listByColumn() | :white_check_mark: | |
POST | task.move | swit.task.move() | :white_check_mark: | |
GET | task.myTaskList | swit.task.myTaskList() | :white_check_mark: | |
POST | task.remove | swit.task.remove() | :white_check_mark: | |
POST | task.update | swit.task.update() | :white_check_mark: | |
Posts | [Advanced Only] No plan to support | :x: | ||
Boards | [Advanced Only] No plan to support | :x: | ||
Custom fileds | ||||
Approvals |
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file pyswit-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: pyswit-0.0.4-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f56a2242942c42cf1633e62776da0786339d91f270e4c6b3f94004fefb93449 |
|
MD5 | 8eadfe6f46ab0f2dec6e5720bb93f7f1 |
|
BLAKE2b-256 | f67358ad31a892337d64661b84740f02b78b6fd3786463d7df34bb075fa31662 |