Skip to main content
Version: 0.0.x

VideoSDK Class - Python

Introduction​

The VideoSDK class purpose is to facilitate the initialization and setup of a meeting session within a SDK.

init_meeting​

The init_meeting method is a static method defined within the VideoSDK class

The method serves as an entry point to create and configure a meeting session using various parameters passed via keyword arguments (kwargs). These parameters allow customization of the meeting setup to tailor it according to specific requirements.

Parameters​

Returns​

Example​

from videosdk import VideoSDK, MeetingConfig
meeting_config = MeetingConfig(
meeting_id=MEETING_ID,
name=NAME,
mic_enabled=True,
webcam_enabled=True,
token=VIDEOSDK_TOKEN,
)
meeting = VideoSDK.init_meeting(**meeting_config)

Got a Question? Ask us on discord