From 7553ff4d17a8e3bc66c3ae6ee08d22f84a635868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=95=8A=E7=88=86?= <157203576+abao168899@users.noreply.github.com> Date: Tue, 15 Oct 2024 01:49:29 +0800 Subject: [PATCH] Update README.md "Update README with installation instructions" --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 20e06c0..8fe8f30 100644 --- a/README.md +++ b/README.md @@ -83,8 +83,9 @@ print(client.balance()) from sms77api.Sms77api import Sms77api import os -client = Sms77api(os.environ.get('SMS77_API_KEY', 'FallbackValueIfMissing')) -print(client.sms('+491771783130', 'Hi friend!', {'json': True})) +client = Sms77api(os.environ.get('SMS77_API_KEY', 'YourAPIKey')) +response = client.sms('+491771783130', 'Hello, this is a test message!', {'json': True}) +print(response) ``` #### Support