docs: update README.md

pull/3/head
yupix 2 years ago
parent 4c7a20f718
commit 2a3648037f
No known key found for this signature in database
GPG Key ID: 2FF705F5C56D9C06

@ -7,12 +7,27 @@
MiPAのCoreとなるライブラリです MiPAのCoreとなるライブラリです
## サポートしているMisskey
# サポートしているMisskey
- [Misskey Official v12](https://github.com/misskey-dev/misskey) - [Misskey Official v12](https://github.com/misskey-dev/misskey)
- [Ayuskey latest](https://gtihub.com/teamblackcrystal/misskey) - [Ayuskey latest](https://gtihub.com/teamblackcrystal/misskey)
## 使い方
```python
import asyncio
from mipac.client import Client
async def main():
client = Client(url, token)
await client.http.login()
note = await client.action.note.action.send('Hello World')
print(note.author.name, note.content)
if __name__ == '__main__':
asyncio.run(main())
```
### Collaborators ### Collaborators

Loading…
Cancel
Save