Logo Lanfrica

troubleman96/panga_safari_api

Domain:

mobility

Record type:

software
Creator:
tro
Host:
# Panga Safari API 🚌 A comprehensive Django REST API for the Panga Safari transportation system, featuring user authentication, trip planning, route management, and real-time transport information for Tanzania's public transportation network. --- ## πŸ“‹ Table of Contents - Overview - Project Structure - Quick Start - Base URLs - API Documentation - Frontend Integration Guide - Architecture - Apps Overview - Security Features - Authentication & Permissions --- ## 🎯 Overview Panga Safari API is a complete backend solution for managing Tanzania's public transportation system. It provides: - βœ… **User Authentication** - JWT-based auth with email verification - βœ… **Trip Planning** - Advanced route finding with pathfinding algorithms - βœ… **Rate Limiting** - 10 free trip plans per IP, unlimited for authenticated users - βœ… **Admin Protection** - Admin-only endpoints for data management - βœ… **Stop & Route Management** - Complete CRUD operations for transportation network - βœ… **Fare Calculation** - Automatic fare calculation based on distance and vehicle type - βœ… **Photo Management** - Upload photos for stops, routes, and transfer hubs - βœ… **Search History** - Analytics and search tracking --- ## πŸ“ Project Structure ``` panga-safari-api/ β”œβ”€β”€ apps/ β”‚ β”œβ”€β”€ accounts/ # User authentication & profile management β”‚ β”‚ β”œβ”€β”€ README.md # Accounts API documentation β”‚ β”‚ β”œβ”€β”€ models.py # User model β”‚ β”‚ β”œβ”€β”€ views.py # Authentication views β”‚ β”‚ β”œβ”€β”€ urls.py # Account endpoints β”‚ β”‚ └── services.py # Email services β”‚ β”‚ β”‚ └── Trip/ # Transportation & route planning β”‚ β”œβ”€β”€ README.md # Trip API documentation β”‚ β”œβ”€β”€ models.py # Transport models (Stop, Route, etc.) β”‚ β”œβ”€β”€ views.py # Trip planning views β”‚ β”œβ”€β”€ urls.py # Trip endpoints β”‚ └── services/ β”‚ └── pathfinder.py # Route finding algorithm β”‚ β”œβ”€β”€ config/ # Django configuration β”‚ β”œβ”€β”€ settings.p …