-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.py
64 lines (63 loc) · 2.13 KB
/
providers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# List of phone carriers
# Select from:
# "AT&T", "Boost Mobile", "C-Spire", "Cricket Wireless",
# "Consumer Cellular", "Google Project Fi", "Metro PCS",
# "Mint Mobile", "Page Plus", "Republic Wireless", "Sprint",
# "Straight Talk", "T-Mobile", "Ting", "Tracfone", "U.S.
# Cellular", "Verizon", "Virgin Mobile", "Xfinity Mobile"
PROVIDERS = {
"AT&T": {"sms": "txt.att.net", "mms": "mms.att.net", "mms_support": True},
"Boost Mobile": {
"sms": "sms.myboostmobile.com",
"mms": "myboostmobile.com",
"mms_support": True,
},
"C-Spire": {"sms": "cspire1.com", "mms_support": False},
"Cricket Wireless": {
"sms": "sms.cricketwireless.net ",
"mms": "mms.cricketwireless.net",
"mms_support": True,
},
"Consumer Cellular": {"sms": "mailmymobile.net", "mms_support": False},
"Google Project Fi": {"sms": "msg.fi.google.com", "mms_support": False},
"Metro PCS": {"sms": "mymetropcs.com", "mms_support": True},
"Mint Mobile": {"sms": "mailmymobile.net", "mms_support": False},
"Page Plus": {
"sms": "vtext.com",
"mms": "mypixmessages.com",
"mms_support": True,
},
"Republic Wireless": {
"sms": "text.republicwireless.com",
"mms_support": False,
},
"Sprint": {
"sms": "messaging.sprintpcs.com",
"mms": "pm.sprint.com",
"mms_support": True,
},
"Straight Talk": {
"sms": "vtext.com",
"mms": "mypixmessages.com",
"mms_support": True,
},
"T-Mobile": {"sms": "tmomail.net", "mms_support": False},
"Ting": {"sms": "message.ting.com", "mms_support": False},
"Tracfone": {"sms": "", "mms": "mmst5.tracfone.com", "mms_support": True},
"U.S. Cellular": {
"sms": "email.uscc.net",
"mms": "mms.uscc.net",
"mms_support": True,
},
"Verizon": {"sms": "vtext.com", "mms": "vzwpix.com", "mms_support": True},
"Virgin Mobile": {
"sms": "vmobl.com",
"mms": "vmpix.com",
"mms_support": True,
},
"Xfinity Mobile": {
"sms": "vtext.com",
"mms": "mypixmessages.com",
"mms_support": True,
},
}