Pre-release
This release is a pre-release and may not be stable for production use.
Baresipy
A python wrapper around baresip
Make voip calls/bots from python!
install
sudo apt-get install baresip
sudo apt-get install ffmpeg
pip install baresipy
usage
scripted calls
from baresipy import BareSIP
from time import sleep
to = "jarbas_laptop@sipx.mattkeys.net"
gateway = "sipx.xxxxx.net"
user = "xxxxx"
pswd = "xxxxxx"
b = BareSIP(user, pswd, gateway)
b.call(to)
while b.running:
sleep(0.5)
if b.call_established:
b.send_dtmf("123")
b.speak("this is jarbas personal assistant speaking. this was a test")
b.speak("Goodbye")
b.hang()
b.quit()
handling events
from baresipy import BareSIP
from time import sleep
from pyjokes import get_joke
class JokeBOT(BareSIP):
def handle_incoming_call(self, number):
self.accept_call()
def handle_call_established(self):
self.speak("Welcome to the jokes bot")
self.speak(get_joke())
self.speak("Goodbye")
self.hang()
gateway = "sipx.xxxxx.net"
user = "xxxxxx"
pswd = "xxxx"
b = JokeBOT(user, pswd, gateway)
while b.running:
sleep(1)
Credits
This work as been sponsored by Matt Keys, eZuce Inc
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
baresipy-1.0.0a3.tar.gz
(20.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file baresipy-1.0.0a3.tar.gz.
File metadata
- Download URL: baresipy-1.0.0a3.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6da9961448a533fe90b4ff34d663593b8fc9a8ea5cd19b9229996933a1a78950
|
|
| MD5 |
d344a683d8c72133a6d33b478978d85b
|
|
| BLAKE2b-256 |
e9f89f6dae3875a6bf2c3b456390261edbefebb975f533c41d59ba6ac24fbae2
|
File details
Details for the file baresipy-1.0.0a3-py3-none-any.whl.
File metadata
- Download URL: baresipy-1.0.0a3-py3-none-any.whl
- Upload date:
- Size: 24.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c675839a70431e3a1c0f93ac1c76216bcec40f18b90ee47a3cef43d85917cab
|
|
| MD5 |
bca1fa79fe7388a41006fbcd0e7c5870
|
|
| BLAKE2b-256 |
6a02deb28c0751a0fcc6a5d81532b51b3e869cc916342ad4410eb459de92c16e
|