Skip to content

Instantly share code, notes, and snippets.

View cgrinham's full-sized avatar
🏠
Working from home

Christie Grinham cgrinham

🏠
Working from home
View GitHub Profile
@cgrinham
cgrinham / vicidial_python.py
Last active August 31, 2022 12:51
Vicidial Python Wrapper
import os
import requests
SERVER_URL = os.getenv("VICIDIAL_SERVER_URL", "")
USER = os.getenv("VICIDIAL_USER", "")
PASSWORD = os.getenv("VICIDIAL_PASSWORD", "")
HTTP_PROXY = os.getenv("HTTP_PROXY", "")
HTTPS_PROXY = os.getenv("HTTPS_PROXY", "")