Skip to content

Instantly share code, notes, and snippets.

@katieli-waymark
katieli-waymark / line_type_intelligence.py
Created February 12, 2024 21:11
Patient Phone Numbers: Twilio Lookup API Results
import os
from twilio.rest import Client
import pandas as pd
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)
N_PHONE_NUMBERS = 1486