Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A Python library for sending SMS messages using Proovl API
Install using pip:
pip install proovl-sms
The following parameters are required to send an SMS message:
user
: Your Proovl API user ID. You can obtain this from your Proovl account.token
: Your Proovl API authentication token. You can obtain this from your Proovl account.from_num
: The sender's name or phone number. This must be registered with Proovl. Leave this blank if you want to use the default sender name.from proovl_sms import Proovl
# Initialize Proovl with your Proovl user, token, and from number
proovl = Proovl(user='your_proovl_user', token='your_proovl_token', from_num='your_from_number')
# Send a single SMS message
response = proovl.send_sms(destination='destination_number', message='Hello, world!')
print(response)
from proovl_sms import Proovl
# Initialize Proovl with your Proovl user, token, and from numbers
proovl = Proovl(user='your_proovl_user', token='your_proovl_token', from_num='your_from_number')
# Send a bulk SMS message
results = proovl.send_bulk_sms(destinations='destination1;destination2;destination3;destination4;destination5', message='Hello, world!')
for result in results:
print(result['number'], result['response'])
The proovl-sms package was developed by Tomas. You can obtain your own Proovl account and API credentials from proovl.com.
FAQs
A Python library for sending SMS messages using Proovl API
We found that proovl-sms demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.