Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 733 Bytes

File metadata and controls

30 lines (22 loc) · 733 Bytes

ProxySettings

Represents the proxy server configurations for API calls.

Properties

Name Type Tag Description
address str required The proxy server URL.
port int optional The port to connect to the proxy server.
username str optional Username for proxy authentication.
password str optional Password for proxy authentication.

Usage Example

from vimeoapi.vimeoapi_client import VimeoapiClient
from vimeoapi.http.proxy_settings import ProxySettings

client = VimeoapiClient(
    proxy_settings=ProxySettings(
        address='http://localhost',
        port=8888,
        username='user',
        password='pass'
     )
)