Skip to main content
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.0a5.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

baresipy-1.0.0a5-py3-none-any.whl (38.4 kB view details)

Uploaded Python 3

File details

Details for the file baresipy-1.0.0a5.tar.gz.

File metadata

  • Download URL: baresipy-1.0.0a5.tar.gz
  • Upload date:
  • Size: 31.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for baresipy-1.0.0a5.tar.gz
Algorithm Hash digest
SHA256 272c617a9f248ee0d8880b42e738e67df07e42a81e8766edf560dc32783b3ae6
MD5 47005350628f860b7923d27939c1b476
BLAKE2b-256 c5887ad6cff0567b0bbd8badc914b97e67ef755bdb4daa986fe2ee4470b0aa12

See more details on using hashes here.

File details

Details for the file baresipy-1.0.0a5-py3-none-any.whl.

File metadata

  • Download URL: baresipy-1.0.0a5-py3-none-any.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for baresipy-1.0.0a5-py3-none-any.whl
Algorithm Hash digest
SHA256 90c2677be1406c0df57b715f4ce3bf04303edfc31fc71323c9a45a4ad94d62c6
MD5 31ccf33b8921fa3f19a95d434e34aa80
BLAKE2b-256 595ad42253c670f8365088ee6be6d1881facb707296314e8f4d0b7ab08867d69

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page