Skip to content

MrMKN/fast2sms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast2 SMS

Python client for FAST2 SMS API

Client setup

from fast2sms import F2Client

# Initialize The Client 
f2 = F2Client(api_key="YOUR_API_KEY")


response = f2.quick_sms(
    numbers="999999999, 1111111111, 8888888888", # You can use multiple number split with coma 
    msg="Hey This Is Test Message",
)

print(response.text) # return is json value 

Installing

pip install fast2sms

Dependencies

• requests

• Python 3+

Support