This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from twilio.rest import Client | |
page = requests.get('https://www.codecademy.com/profileName') | |
# Twilio Data | |
twilioNum = '+11234563667' | |
twilioSID = 'SID_HERE' | |
twilioToken = 'TOKEN_HERE' | |
chrisNum = '+11234563667' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define file locations: | |
## dir C:\bb_content\storage\ /b /a /s > storage.txt | |
storageFileLoc = r"C:\Users\jfeocco\Downloads\dupage\storage.txt" | |
## select concat('C:/bb_content/storage', STORAGE_FILENAME) from XYF_BLOBS; -- COPY/PASTE INTO dbStorage.txt | |
dbStorageFileLoc = r"C:\Users\jfeocco\Downloads\dupage\dbStorage.txt" | |
# Open storage files | |
stor = open(storageFileLoc, encoding='utf8') | |
dbStor = open(dbStorageFileLoc, encoding='utf8') |