Skip to content

Commit

Permalink
Update sms.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CamoCatX authored Oct 24, 2023
1 parent 2b5d4f7 commit c01a599
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sms.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ def free_trial():
print(resp.json())
def paid():
BASE_URL = "https://mpvr96.api.infobip.com"
BASE_URL = ""
API_KEY = "2d86b648c363a5e6562e74e84a832fb4-ab0a6e77-7860-4b6f-95ea-aee61aab437f"
API_KEY = ""
SENDER = input(Fore.GREEN + "Enter sender name: " + Fore.YELLOW)
RECIPIENT = input(Fore.GREEN + "Enter target phone number with country code: " + Fore.YELLOW)
MESSAGE_TEXT = input(Fore.GREEN + "Build your scam letter: " + Fore.YELLOW)
Expand Down Expand Up @@ -163,4 +165,4 @@ def paid():
con = input((Fore.GREEN + "Do you wanna continue?[Y/N]: " + Fore.YELLOW))
if con == "y" or con == "Y":
loop()
loop()
loop()

0 comments on commit c01a599

Please sign in to comment.