Skip to main content

Phone call queuing and management for the Django web framework using an Asterisk server

Project description

Description

django-asterisk is a reusable Django app for queuing and managing phone calls, inspired and based on django-mailer. It makes calls through the Management interface of an Asterisk server.

Setup

  • Add the django_asterisk app in settings.INSTALLED_APPS

  • Set the following variables in settings.py:

    AST_HOST = 'localhost'
    AST_USER = 'django'
    AST_PASS = 'mysecret'
    AST_PRIO = 1
    AST_TIMEOUT_ORIGINATE = 30 # sec
    AST_TIMEOUT_HANGUP = 120 # sec
  • Change the default passwords!!

Requirements

Usage

Supposing you have an object called ‘user’ with the ‘phone_number’ attribute, you can create and queue a call like this:

from django_asterisk.models import Call
channel = 'SIP/%s@mysipprovider' % user.phone_number
call = Call(channel=channel, extension=user.phone_number, context='django-out', caller_id='"Django Asterisk Test" <0123456789>', related_object=user)
call.save()

You can later make the call from the admin, by selecting it and executing the “Make call” action.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-asterisk-0.1.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file django-asterisk-0.1.tar.gz.

File metadata

File hashes

Hashes for django-asterisk-0.1.tar.gz
Algorithm Hash digest
SHA256 3f95e6e2af28fe976eeece2c7cfc9f2f95d56ad5acf56e52f9a1879fc735ecb4
MD5 24204f3a9b980d84f01793d54708c4d5
BLAKE2b-256 c6c8a4c69d2e6df2b48919a91c192e6674713265c5feb2efa5d0a392f5287b45

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page