Python SDK for ReSMS, a simple and powerful SMS API.
pip install resmsYou need to get an API key on ReSMS Dashboard.
Then import the package and create a new instance of the ReSMS class with your API key.
import resms
resms.api_key = "your_api_key"You can send a SMS using:
resms.sms.send(to="+33123456789", message="Code 123456", senderId="ReSMS")You can send an OTP using:
resms.otp.send(to="+33123456789", message="Your OTP is {CODE}", senderId="ReSMS")
The full documentation is available at docs.resms.dev.
Here is an implementation example of ReSMS Python package: https://github.com/ReSMS-dev/resms-python-example
This project is licensed under the MIT License.
This is a simple SDK for ReSMS. More features and improvements will be added in the future. If you have any suggestions or issues, please tell us on our discord server: Discord.