A Calckey client wrapper for python
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Twann a1086d50a3
reverse calckeyc back to mipac
5 months ago
.github/workflows feat: change python version 6 months ago
.vscode new readme 5 months ago
calckey reverse calckeyc back to mipac 5 months ago
.editorconfig feat: add .editorconfig 6 months ago
.flake8 new readme 5 months ago
.gitattributes new readme 5 months ago
.gitignore chore: 些細な変更 6 months ago
.onedev-buildspec.yml new readme 5 months ago
CHANGELOG.md calckey port 5 months ago
LICENSE chore: add LICENSE 1 year ago
MANIFEST.in calckey port 5 months ago
README.md svg logo 5 months ago
pyproject.toml fix typo in pyproject.toml 5 months ago
requirements.txt reverse calckeyc back to mipac 5 months ago
setup.cfg calckey port 5 months ago
setup.py calckey port 5 months ago
versioneer.py feat: バージョン管理にgitを使うように 6 months ago

README.md

Calckey.py

Python wrapper for Calckey.

import asyncio

from mipac.client import Client

async def main():
    client = Client(url, token)
    await client.http.login()
    note = await client.api.note.action.send('Hello World')
    print(note.author.username, note.content)

if __name__ == '__main__':
    asyncio.run(main())

logo