Represents the proxy server configurations for API calls.
| 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. |
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'
)
)