-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
30 lines (25 loc) · 994 Bytes
/
requirements.txt
File metadata and controls
30 lines (25 loc) · 994 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
25
26
27
28
29
30
# Browser Data Extractor - Python Dependencies
# Python 3.8+ required
# Windows API interactions - Core dependency for DPAPI, CNG, and token impersonation
PythonForWindows>=1.0.0
# Cryptography library - For AES-GCM and ChaCha20-Poly1305 decryption
pycryptodome>=3.19.0
# Process management - For browser process termination
psutil>=5.9.0
# Note: The following modules are part of Python standard library:
# - sqlite3 (database operations)
# - ctypes (Windows DLL interactions)
# - json (JSON parsing)
# - pathlib (file path operations)
# - zipfile (ZIP archive creation)
# - multiprocessing (parallel processing support)
# - struct (binary data parsing)
# - binascii (binary/hex conversions)
# - io (byte stream operations)
# - shutil (file operations)
# - subprocess (process execution)
# - time (timing operations)
# - os (operating system interface)
# - sys (system-specific parameters)
# Optional: For building standalone executable
# pyinstaller>=6.0.0