-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
24 lines (24 loc) · 870 Bytes
/
requirements.txt
File metadata and controls
24 lines (24 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# IMEI Validator & Info Lookup Tool - Requirements
# ================================================
#
# This tool is designed to use only Python standard library modules
# for maximum compatibility and security in forensic environments.
#
# Minimum Python Version: 3.7+
#
# Standard Library Modules Used:
# - re (regex operations)
# - sys (system interface)
# - os (operating system interface)
# - logging (audit trail and debugging)
# - argparse (command-line interface)
# - csv (batch export functionality)
# - datetime (timestamps and session management)
# - typing (type hints for code quality)
# - pathlib (modern path operations)
# - unittest (testing framework)
# - tempfile (test fixtures)
#
# No external dependencies required!
# This ensures the tool can run in isolated forensic environments
# without requiring internet access or package installation.