Metadata-Version: 2.1
Name: misskey-python
Version: 1.0.1
Summary: misskey api library
Home-page: https://github.com/MiPC-Dev/MiPC
License: MIT
Author: sonyakun
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiofiles (>=23.1.0,<24.0.0)
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: httpx (>=0.24.1,<0.25.0)
Requires-Dist: pytest (>=7.3.1,<8.0.0)
Requires-Dist: pytest-cov (>=4.1.0,<5.0.0)
Requires-Dist: websockets (>=11.0.3,<12.0.0)
Project-URL: Repository, https://github.com/MiPC-Dev/MiPC
Description-Content-Type: text/markdown

# This project has been discontinued.

**When installing, keep in mind that support is not provided by this library.**
# MiPC

![img](assets/icon.png)

MiPC (Misskey Python Client) is a Python client for using MisskeyAPI.

# Examples

##  MiAuth

```python

from MiPC.MiAuth import MiAuth

mia = MiAuth(server="misskey.io", name="TestApp")

url = mia.generate_url()

while True:

   try:

     auth_token = mia.get_token()

     break

   except MisskeyMiAuthFailedException:

     await asyncio.sleep(0.5)

     pass

```

# question
## Q. Why is the pypi registered under a different name(misskey-python) than MiPC?
A. Because the registration was denied due to the name being similar to an existing pypi project.

