https://github.com/phillychi3/youtube_lv
youtuber live status
https://github.com/phillychi3/youtube_lv
api twitch webscraping youtube youtube-api
Last synced: about 1 year ago
JSON representation
youtuber live status
- Host: GitHub
- URL: https://github.com/phillychi3/youtube_lv
- Owner: phillychi3
- License: apache-2.0
- Created: 2021-02-09T19:55:30.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T13:39:28.000Z (almost 2 years ago)
- Last Synced: 2025-05-31T07:59:13.495Z (about 1 year ago)
- Topics: api, twitch, webscraping, youtube, youtube-api
- Language: Python
- Homepage: https://pypi.org/project/youtube-lv
- Size: 432 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vtuber - youtube-lv - get the youtube live status (Dev Tools)
README

### 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)
# return Youtube class
```
#### Youtube class
channellink :str
link: str | None
status: str | None
islive: bool
title: str | None
picture: str | None
timestamp: float | None
#### Youtube status
"LIVE" | "READY_TO_LIVE" | "ERROR"| None
```python
from ytlv import youtube
live=youtube_lives("https://www.youtube.com/@ShirakamiFubuki/streams")
print(live)
# return Youtube_lives class
```
#### Youtube class
[
channellink: str
link: str | None
picture: list[str] | None
title: str | None
]
Twitch
```python
from ytlv import twitch
live=twitch("iitifox")
print(live)
# return twitch class
```
#### Twitch class
link: str
status: str | None
islive: bool
title: str | None
picture: str | None
avatar: str | None
#### Twitch status
"LIVE" | "ERROR" | None