This file contains 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
[ | |
{ | |
"response": "success", | |
"id": "1", | |
"name": "A-Bomb", | |
"powerstats": { | |
"intelligence": "38", | |
"strength": "100", | |
"speed": "17", | |
"durability": "80", |
This file contains 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
# sending birthday reminder message to your phone number | |
#with twilio trial account | |
import time | |
import os | |
from twilio.rest import Client | |
from twilio.http.http_client import TwilioHttpClient | |
proxy_client = TwilioHttpClient() | |
proxy_client.session.proxies = {'https': os.environ['https_proxy']} |