From bad8e54bf81d259cafa7b548dec6b3a9ecdabcfd Mon Sep 17 00:00:00 2001 From: Kevin F Date: Tue, 6 Dec 2022 20:17:09 +0000 Subject: [PATCH] make sending more intuitive --- appconfig.py | 2 +- send.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/appconfig.py b/appconfig.py index b2fe416..95bd3e8 100644 --- a/appconfig.py +++ b/appconfig.py @@ -2,7 +2,7 @@ import os import sys from base64 import urlsafe_b64encode -VERSION = '1.0.1' +VERSION = '1.0.2' base_url = "https://api.monerosms.com/" proxies = {} diff --git a/send.py b/send.py index 130ca5f..c143542 100644 --- a/send.py +++ b/send.py @@ -6,7 +6,8 @@ from appconfig import base_url, user, proxies def send_message(num): if not num: - num = int(input("Enter number to text, EOF to finish: ")) + num = int(input("Enter number to text: ")) + print("Enter the message to send, then EOF (Ctrl+D) to send") body = '' try: for i in sys.stdin: