Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Comment thread
abao168899 marked this conversation as resolved.
response = client.sms('+491771783130', 'Hello, this is a test message!', {'json': True})
Comment thread
abao168899 marked this conversation as resolved.
print(response)
```

#### Support
Expand Down