
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Modern Python client library for the Sipsentric (Simwood Partner, formerly Nimvelo) API
A modern Python client library for Sipcentric (Simwood Partner, formerly Nimvelo) API.
from sipcentric import Sipcentric
api = Sipcentric(username="myusername", password="mypassword")
print api.sms.post(_from="0123", to="03301201200", body="Hello World!")
sudo pip install sipcentric
You may need to install simplejson
if you don't have it already.
git clone git@github.com:faelix/sipcentric.git && cd sipcentric
sudo python setup.py install
Get account details
from sipcentric import Sipcentric
api = Sipcentric(username="myusername", password="mypassword")
print api.account.get()
Connect to the streaming api
from sipcentric import Sipcentric
api = Sipcentric(username="myusername", password="mypassword")
stream = api.Stream
def callHandler(call):
print 'Incoming call from ' + call['callerIdName'] + ' (' + call['callerIdNumber'] + ')'
def smsHandler(sms):
print sms['excerpt'] + ' from: ' + sms['from']
stream.register(type='incomingcall', callback=callHandler)
stream.register(type='smsreceived', callback=smsHandler)
stream.connect()
This project was forked from Nimvelo's original project (for Python 2.7)
python-client. The name was
changed to sipcentric
after discussion with the development team at Simwood.
FAQs
Modern Python client library for the Sipsentric (Simwood Partner, formerly Nimvelo) API
We found that sipcentric 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.