Client for kokoro.io
Project description
What is this
This is a client for kokoro.io which is a chat service (maybe going to be) best ever.
I know that you want to join as soon as possible, please ask me or supermomonga-san about how to create account.
Requirements
Python3.6+
kokoro.io account(using your access token)
Install
$ pip install kokoroio
Configure
You must set an access token to sign in to kokoro.io by three way like follows.
Set environ path named KOKOROIO_ACCESS_TOKEN.
Set your access token to any file your choice and pass it’s file name to Kokoroio constructor as env_path.
Pass directly Kokoroio constructor as access_token.
Usage
Once you create Kokoroio instance, you can request from two way syncronous or asyncronous.
from kokoroio import Kokoroio
client = Kokoroio(access_token='xxxxxxx')
client.channels.get() # You received a response!
If an endpoint requires path parameters, you need to pass path parameters as arguments for request method.
# Assuming you want to post a message to channel whose channel_id is 'hogehoge'.
# In this case, url is `channels/hogehoge`.
o = client.channels.send_message(channle_id='hogehoge')
# So you can request with a payload.
o(message='hi')
And you can find every client’s methods.
clients.channels.method_names
clients.channels.methods
Syncronous request
You will get requests's HttpResponse object.
If you want to know about response object, please refer requests doc.
Example
client.channels.get()
Asyncronous request
Different from syncronous version, request method has a prefix like channels.aget() and you don’t need to create new event loop at every request.
You will get aiohttp's ClientResponse object because using aiohttp internally.
If you want to know about aiohttp, please refer aiohttp doc.
Example
client.channels.aget()
Test
Sorry now I have no test😭
About kokoro.io’s API detail
You can find all of current API detail from the official apidoc.
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
Built Distribution
File details
Details for the file kokoroio-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: kokoroio-0.0.3-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 458a132afd92238d44521509d554f9853ce968ef53072069037a03f10fc7f329 |
|
MD5 | 96cd0fdfe1103753217677f1003229d1 |
|
BLAKE2b-256 | 2ad22a2a0879e6a558c53cf956459b88c6fd3027e99373626cce956effa0f044 |