Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
pyBlueVia is an Apache2 Licensed library, written in Python, for making
easier the usage of BlueVia <http://bluevia.com>
_ API.
pyBlueVia implements an Api
class which wraps the BlueVia API,
offering methods for:
To install pyBlueVia:
.. code-block:: bash
$ pip install pyBlueVia
Those are a couple of examples about how to use pyBlueVia to send an SMS and query its delivery status:
.. code-block:: python
# Create the API wrapper
bluevia_client = bluevia.Api(CLIENT_ID, CLIENT_SECRET, ACCESS_TOKEN)
# Send an SMS
sms_id = bluevia_client.send_sms(to='34600000000', message='Hello world!')
# Ask for the delivery status of the sent SMS
delivery_status = bluevia_client.get_sms_delivery_status(sms_id)
print 'Delivery status for the SMS sent to {0}: {1}'.format(delivery_status['address'],
delivery_status['status'])
You can see more usage examples here <https://github.com/telefonicaid/pyBlueVia/tree/master/examples>
_.
Take a look to the whole documentation at https://pybluevia.readthedocs.org/.
FAQs
A Python wrapper around the BlueVia API.
We found that pyBlueVia 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.