Files
pytchat-fork/README.md
taizan-hokuto e7d637ce42 Modify README
2020-04-16 23:28:56 +09:00

62 lines
1.2 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)
Returns
-------
+ VideoInfo object.
Parameters
----------
- video_id : video id
- session : session object of requests.
## 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