
CS-Fundamentals
A curated collection of Computer Science fundamentals (PDFs, notes, cheatsheets, interview question banks) for placement preparation, covering seven core subjects plus general resources.
It provides a complete, documented path from Zebra reader configuration to persistent storage and real-time visualization, using standard Django components and including simulator/diagnostic tools for development without hardware.
A professional, enterprise-focused web interface designed for Zebra FX7500/FX9600 fixed RFID readers. This is a functional model with full database persistence, allowing for long-term data storage and integration with external business systems.
Designed for inventory tracking, warehouse management, asset monitoring, and ERP systems integration.
flowchart LR
Reader["Zebra Reader"] -- "HTTP POST" --> API["Django API"]
API -- "ORM" --> DB["SQL / PostgreSQL"]
DB --> Dashboard["Tailwind Dashboard"]
Dashboard -- "Polling" --> API
This application is built on the Django framework, meaning it uses a powerful ORM (Object-Relational Mapper) to handle data. It is NOT just a visual sample; every tag read is stored in a structured database.
By default, the project uses SQLite (db.sqlite3), which requires zero configuration and is perfect for small deployments or edge devices.
Because it uses Django, you can easily switch to a professional database engine. Simply modify the DATABASES section in scanner_zebra_rfid/settings.py:
# Example for PostgreSQL
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'your_db_name',
'USER': 'your_user',
'PASSWORD': 'your_password',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
Note: Ensure you install the appropriate driver (e.g., psycopg2 for Postgres or mysqlclient for MySQL).
Enterprise-focused Python interface for Zebra FX RFID readers with real-time tag ingestion, persistent storage, and inventory monitoring
Similar projects matched by category, topics, and programming language.

A curated collection of Computer Science fundamentals (PDFs, notes, cheatsheets, interview question banks) for placement preparation, covering seven core subjects plus general resources.
Recensa is a self-hosted web viewer that indexes Claude Code session transcripts into a local SQLite database, enabling full-text search, replay, and audit of all past agent conversations without uploading data anywhere.
Talivia is an open-source, self-hosted analytics platform that combines web analytics, session replay, and customer revenue tracking from multiple payment providers.