Metadata-Version: 2.1
Name: youtube-lv
Version: 1.0.0
Summary: check youtuber live status
Home-page: https://github.com/phillychi3/youtube_lv
Author: phillychi3
Author-email: phillychi3@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

![image](https://shields.io/pypi/pyversions/youtube-lv)

### how to download

`pip install youtube-lv`

### how to update

`pip install --upgrade youtube-lv`

### how to use

Youtube

```python
from ytlv import youtube
live=youtube("https://www.youtube.com/@ShirakamiFubuki")
print(live)
{
  "link": "url",
  "status": "live status",
  "title": "live title",
  "picture": "live image",
  "timestamp": "timestamp"
}
```

Twitch

```python
from ytlv import twitch
live=twitch("iitifox")
print(live)
{
   "link":"url",
   "status":"LIVE",
   "title":"title",
   "picture":"pictureurl",
   "avatar":"avatar"
}
```
