Metadata-Version: 2.1
Name: hololive
Version: 0.1.4
Summary: Gets hololive streams
Home-page: https://github.com/marnixah/hololive-python-api
Author: Marnixah
Author-email: hololive@marnixah.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/marnixah/hololive-python-api/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# hololive-python-api

Gets stream info from holodex(no longer limited to only hololive)
## Installation
```bash
pip install hololive
```

## Usage

```python
from hololive import hololive
streams = await hololive.get_live(limit=5)

for stream in streams:
  print(stream.title)
# -----------------
# 【APEX】カスタム3日目【#あの伝WIN】
# 【APEX】 casual & arena rank?
# 【APEX】V最協決定戦カスタム4 #KGSWIN 【ぶいすぽ / 花芽すみれ】
# 【APEX】最協カスタム4日目→ソロランク修行【ふぇありす/弦月藤士郎/パカエル】
# 【Portal 2】 😈마왕적 포탈! 👾 魔王的ポータル😈 【NIJISANJI KR】
  ```


