Files
giglez/requirements.txt
leetcrypt 9f73595b20 feat: RTL_433 protocol database import - iteration 1/5
- Expanded protocol database from 18 → 299 signatures (16.6x increase)
- Imported 281 protocols from RTL_433 open-source database (286 total devices)
- Created automated import script: scripts/import_rtl433_protocols.py
- Generated rtl433_protocols_imported.py with timing/frequency/modulation data
- Updated protocol_database.py to include RTL433_PROTOCOLS
- All 26 tests passing

Breakdown by category:
  - Weather: 116 protocols
  - Sensors: 36 protocols
  - TPMS: 25 protocols
  - Security: 23 protocols
  - Home Automation: 18 protocols
  - Other: 50+ protocols

Frequency coverage:
  - 433.92 MHz: 248 protocols
  - 315.00 MHz: 32 protocols
  - 915.00 MHz: 1 protocol

This provides comprehensive coverage of Sub-GHz IoT devices for accurate
identification from raw RF captures.
2026-02-14 18:55:55 -08:00

55 lines
736 B
Plaintext

# Core dependencies
pyserial==3.5
aioserial==1.3.1
# Database
psycopg2-binary==2.9.9
sqlalchemy==2.0.25
geoalchemy2==0.14.3
alembic==1.13.1
# GPS and Android
python-for-android==2024.1.21
# Web framework
fastapi==0.109.0
uvicorn[standard]==0.27.0
pydantic==2.5.3
# Data processing
numpy==1.26.3
scipy==1.11.4
pandas==2.1.4
# Signal processing
scikit-learn==1.4.0
# File formats
python-dotenv==1.0.0
# Testing
pytest==7.4.4
pytest-asyncio==0.23.3
pytest-cov==4.1.0
# Utilities
python-dateutil==2.8.2
pytz==2023.3
requests==2.31.0
# Logging
loguru==0.7.2
# Configuration
pyyaml==6.0.1
toml==0.10.2
# API documentation
python-multipart==0.0.6
# Geographic calculations
geopy==2.4.1
# JSON schema validation
jsonschema==4.20.0