Metadata-Version: 2.1
Name: holodex
Version: 0.3.2
Summary: Holodex api wrapper
Home-page: UNKNOWN
Author: ombe1229
Author-email: h3236516@gmail.com
License: Apache 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# holodex

> Holodex api wrapper

## Example

```py
import asyncio
from holodex.client import HolodexClient


async def main():
    async with HolodexClient() as client:
        gura = await client.channel_info("UCoSrY_IQQVpmIRZ9Xf-y93g")
        print(gura.name)
        print(gura.clip_count)
        print(gura.subscriber_count)


asyncio.run(main())


# Gawr Gura Ch. hololive-EN
# 6943
# 3240000
```

## Installation

```
python -m pip install holodex
```

## Todo

- [ ] Support `/live` endpoint
- [ ] Make easy to get channel id


