Welcome to the Banjo Documentation!

Banjo is a wrapper for Django. It provides a simplified subset of Django’s functionality.

Contents:

Set Up

To install Banjo: pip3 install django-banjo

To write a Banjo app, create this file structure:

  • /app
    • models.py

    • views.py

Banjo Server

To run a Banjo server: banjo

To run a Banjo server in debug mode: banjo --debug

To run a Banjo server on a specific port: banjo --p 8001

Banjo Shell

To enter the Banjo shell: banjo --shell