vlivepy.Channel

class vlivepy.Channel(channel_code: str, session: Optional[vlivepy.session.UserSession] = None)[source]

Bases: vlivepy.model.DataModel

This is the object represents a post of VLIVE

Parameters
  • channel_code (str) – Unique id of channel.

  • session (UserSession, optional) – Session for loading data with permission, defaults to None.

session

Optional. Session for loading data with permission.

Type

UserSession

property background_color

Background color(hex) of the channel.

Return type

str

property channel_code

Unique id of channel.

Return type

str

property channel_cover_image

Cover image url of the channel.

Return type

str

property channel_description

Description of the channel.

Return type

str

property channel_name

Name of the channel.

Return type

str

property channel_profile_image

Profile image url of the channel.

Return type

str

decode_channel_code()int[source]

Decode channel code to unique channel seq

Return type

int

groupedBoards()vlivepy.model.GroupedBoards[source]

Load grouped board list of the channel

Return type

GroupedBoards

property member_count

Count of members in channel.

Return type

int

property open_at

Epoch timestamp about channel opened(created) time.

Returns

property post_count

Count of post in channel.

Return type

int

property prohibited_word_exact_list

Prohibited word (EXACT) in the channel.

Return type

str

property prohibited_word_like_list

Prohibited word (LIKE) in the channel.

Return type

str

property qr_code

QR code image url of the channel.

Return type

str

property representative_color

Representative color(hex) of the channel.

Return type

str

property show_upcoming

Boolean value for using upcoming in the channel

Return type

bool

property sns_share_img

SNS Share image url of the channel.

Return type

str

property use_member_level

Boolean value for using member level in the channel

Return type

bool

property video_comment_count

Count of video comment in channel.

Return type

int

property video_count

Count of video in channel.

Return type

int

property video_like_count

Count of like in channel.

Return type

int

property video_play_count

Count of video play times in channel.

Return type

int