Skip to main content

A django Whatsapp chatbot session manager

Project description

WhatsApp Chatbot Session Flow

Overview

This package provides a Django-based session management system for building a WhatsApp chatbot. It enables:

  • Dynamic page-based navigation
  • Session tracking
  • Dynamic method execution for custom tasks (e.g., adding to cart)
  • Middleware support
  • Admin integration

Installation

Install the package via pip:

pip install chatbot_session_flow

Environment Variables

Set the following environment variables in your shell or a .env file:

export pub_key=""
export secret=""
export SECRET_KEY="xx56r_@x_jb8(rqiw5+xw^+@l#m(=%9h+!98k1o$ex3_zogx"
export MODE=dev
export DEBUG=True
export DB_NAME=<dbname>
export DB_USER=<db connection user>
export DB_PASSWORD=<database password>
export DB_HOST="<database connection host>"
export DB_PORT=<database running port>
export NGUMZO_API_KEY=<your api key if using ngumzo APIs>
export DYNAMIC_METHOD_VIEWS="<your_app.dynamic_methods>"

Django Settings

Add it to your INSTALLED_APPS:

INSTALLED_APPS = [
    ...,
    'chatbot_session_flow',
]

Add middleware to enable session handling:

MIDDLEWARE = [
    ...,
    'chatbot_session_flow.middleware.WhatsappSessionMiddleware',
]

Migrations

Run the migrations:

python manage.py makemigrations chatbot_session_flow
python manage.py migrate chatbot_session_flow

Internal Logic

The chatbot flow is managed through a sequence of Page instances. Each page can reference the next, allowing dynamic navigation. Sessions are tied to users via the Session and Stepper models.

Dynamic Methods

Custom tasks such as saving data, calling APIs, or formatting messages are handled by dynamic methods specified in a dynamic file defined by DYNAMIC_METHOD_VIEWS. These include:

  • sendWhatsappMessage(session, phoneNumber, message) – your logic to send messages.
  • formatRequest(request) – used by middleware to shape incoming data.
  • Any task-specific functions (e.g., add_to_cart) that can be dynamically executed.

Dynamic Method Example

# your_app/dynamic_methods.py

def add_to_cart(session, page, message, *args, **kwargs):
    print(f"Adding product to cart for user {session.user.phoneNumber}")
    return "Item added to cart"

Call it dynamically:

from chatbot_session_flow.views import perform_dynamic_action

response = perform_dynamic_action(session, page, "Item name")

Dynamic Message Templating

Use collected data within page content dynamically:

Hello {firstName}, your order has been placed!

The values in {} are replaced by corresponding session or user data.

Models

Profile

Handles user identity:

from chatbot_session_flow.models import Profile

profile = Profile.objects.create(
    firstName="John",
    lastName="Doe",
    phoneNumber="+1234567890",
    email="john@example.com"
)

Session

Tracks the user’s chatbot session:

session = Session.objects.create(user=profile, isValidSession=True)
print(session.is_session_expired())

Page

Each page drives a single step in the conversation:

page = Page.objects.create(title="Welcome", pageType="text", content="Hello {firstName}")

Common Issues & Fixes

No Migrations Detected

  • Ensure your environment is correct.
  • Use pip install -e . if developing locally.
  • Run:
    python manage.py makemigrations chatbot_session_flow
    python manage.py migrate
    

Dynamic Methods Not Found or Not Executing

  • Confirm the file path in DYNAMIC_METHOD_VIEWS is correct.
  • Check that the function name matches the task attribute in your Page.
  • Ensure the function signature accepts dynamic args/kwargs:
    def custom_task(session, page, message, *args, **kwargs):
        ...
    

known Issues

  • As of yet there are no knows issues but you are encouragedd to test and create github issues for any issues faced in your development.
  • Feel free to reachout To me via email kamadennis05@gmail.com

Conclusion

This package offers a powerful framework for building WhatsApp-based conversational flows with dynamic logic and session handling. Feel free to contribute or extend the package to fit your business logic!

Project details


Download files

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

Source Distribution

chatbot_session_flow-0.1.13.tar.gz (11.4 kB view details)

Uploaded Source

Built Distribution

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

chatbot_session_flow-0.1.13-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file chatbot_session_flow-0.1.13.tar.gz.

File metadata

  • Download URL: chatbot_session_flow-0.1.13.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for chatbot_session_flow-0.1.13.tar.gz
Algorithm Hash digest
SHA256 657f409f5636386ca0bb94afaf05e9b391f7f7fb957a6a632bbef0842d18215b
MD5 bd13a93137e17b9457a7475d2339ca19
BLAKE2b-256 a4959a0e56f4ac0841c97247df6745f5de3d3cac4e89486d840af42425bd45fc

See more details on using hashes here.

File details

Details for the file chatbot_session_flow-0.1.13-py3-none-any.whl.

File metadata

File hashes

Hashes for chatbot_session_flow-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 0e580f154c4294cb8337b53fa1e479e39c9faf45f57247d08d9ecf4cf24e66d4
MD5 d1411ef2ac4a42638bb00c4918a81c4e
BLAKE2b-256 d6d2872938e588f93cc74d1018058e967179fec9f5bc6dfa5e9de68968e75140

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 Pingdom Monitoring Sentry Error logging StatusPage Status page