· 3 years ago · Jun 20, 2022, 06:40 PM
1import os
2from colorama import Fore
3import platform
4import requests
5import time
6
7def perday():
8 resp = requests.post('https://textbelt.com/text', {
9 'phone': phone_num,
10 'message': msg,
11 'key': 'textbelt',})
12 print(resp.json())
13
14def unlimited():
15 resp = requests.post('https://textbelt.com/text', {
16 'phone': phone_num,
17 'message': msg,
18 'key': 'e1518e2265f09dc16a7b84aa320e418f4309b0acdw3sSg6DxDJOiPU6qbC8NsRaH',
19 })
20 print(resp.json())
21
22if platform.system() == "Windows":
23 clear = "cls"
24else:
25 clear = "clear"
26
27print(Fore.GREEN+"""
281) One/SMS/PerDay
292) Unlimited/SMS (Private API Key)
30""")
31
32option = int(input())
33phone_num=input("Enter your phone number : ")
34msg = input("Enter your msg = ")
35
36if option == 1:
37 os.system(clear)
38 perday()
39
40elif option == 2:
41 os.system(clear)
42 print("You mustn't use private API keys from other peoples because they can be read your traffic!")
43 exit()
44 #unlimited()
45else:
46 print("Wrong selection. Exiting!")
47 exit()
48