Integrations · Django Guide

Add live chat to Django. DeskCrew support widget

DeskCrew adds AI live chat, an AI support chatbot and helpdesk ticketing to a Django project through the official django-deskcrew package on PyPI: a template tag or middleware for the widget, and create_ticket() for contact forms. A single script tag in your base template works too.

01

An official pip package

Install django-deskcrew and add one template tag, or flip one setting and let the middleware do it. Django 4.2 to 5.2, nothing to collect or bundle.

02

AI drafts, humans approve

The AI drafts replies grounded in the knowledge base you publish, and every draft waits in an approval queue until a human sends it.

03

Every conversation is a ticket

Widget chats, emails, and board posts land in one dashboard with full history; visitors who leave get their answer by email.

04

Free plan, no card

The free plan includes the chat widget, a public knowledge base, and ticketing. Start free and upgrade only when you outgrow it.

How to install

How to install DeskCrew on Django

1

Install the official package: pip install django-deskcrew, then add "deskcrew" to INSTALLED_APPS.

2

Add a DESKCREW dict to settings.py with WIDGET_KEY, SITE_URL and an optional BOARD, then put {% load deskcrew %}{% deskcrew_widget %} before </body> in your base template. Prefer no template edit? Set "AUTO_INJECT": True and add deskcrew.middleware.DeskcrewMiddleware to MIDDLEWARE.

3

Run python manage.py deskcrew_register_origin once per environment so the widget is allowed on your domain, then deploy. deskcrew.client.create_ticket(email=, message=, name=) files a ticket from a view, a form or a Celery task.

deskcrew-widget. Django
<script src="https://deskcrew.io/desk.js" data-key="pub_YOUR_KEY" data-board="your-board" defer></script>

pub_YOUR_KEY and your-board are placeholders. Your real widget key and board slug are in your DeskCrew dashboard under Install (free signup, no card).

Note: Prefer no dependency? Paste the tag below into templates/base.html, outside any {% block %}, so a child template cannot drop it.

How it compares

DeskCrew vs the usual suspects

DeskCrewTidioCrispZendesk
Free tierYes. Free plan, no cardYes (limited)Yes (basic)Free trial only
AI includedYes. AI drafts on every plan, human-approvedPaid add-onHigher plansPaid add-on
SetupAbout 2 minutes. One script tag or pluginMinutes. Script tagMinutes. Script tagLonger. Full workspace setup
Price floor$0 free plan · paid from $29/moFree plan; paid tiers aboveFree plan; paid tiers abovePer-agent pricing, no free plan

Competitor cells generalize their public pricing pages. Always check current plans.

DeskCrew has a free plan with no card. Chat widget, public knowledge base, and ticketing included. Every new workspace starts with full Team features free for 14 days, and paid plans start at $29/mo. Full details on the pricing page.

Start free. No cardGet it on PyPIAll integrations