Files
pytchat-fork/README.md
taizan-hokuto 679f2e9bb8 Modify README
2020-04-17 00:07:20 +09:00

64 lines
1.1 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Install
```bash
pip install yvi
```
## Usage
```python
import yvi
info = yvi.get_info(video_id = "xxxxxxxx")
info.get_title()
info.get_channel_id()
```
## Function
### get_info(video_id, session)
Parameters
----------
- video_id : video id
- session : session object of requests.
Returns
-------
+ VideoInfo object.
## Attributes of VideoInfo object
### get_duration()
- 動画の長さ秒。アーカイブのみ。ライブ動画または待機画面の場合、0が返ります。
### get_title()
- 動画タイトル
### get_title_escaped()
- 動画タイトル(絵文字なし。GUIライブラリ等で絵文字が含まれていてエラーが出る場合はこちらを使用してください)
### get_channel_id()
- チャンネルID
### get_thumbnail()
- 動画サムネイルURL
### get_owner_name()
- 配信者名
### get_owner_name_escaped()
- 配信者名(絵文字なし)
### get_owner_image()
-   配信者プロフィール画像URL
### get_user_name()
- 視聴者名
### get_user_name_escaped()
- 視聴者名(絵文字なし)
### get_user_image()
- 視聴者プロフィール画像URL