A Django library for integrating Twilio telephony services, supporting SMS, voice, and MMS. Current version 0.14.3.4 is in maintenance mode; no active development since 2018.
pip install django-twilioNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic SMS reply view using the twilio_view decorator. Requires TwiML from twilio SDK.
Use `from twilio.twiml.messaging_response import MessagingResponse` and return a TwilioResponse object (the decorator expects a TwilioResponse-like object).
Import `MessagingResponse` from `twilio.twiml.messaging_response` and use `@twilio_view` with Django views returning TwiML.
Ensure your view returns a TwilioResponse object (or a Django HttpResponse with content_type='text/xml').