add stream_module

This commit is contained in:
awe
2025-11-18 12:26:48 +03:00
commit c67ac45617
1353 changed files with 253533 additions and 0 deletions

8
web_viewer/.venv/bin/pip3 Executable file
View File

@ -0,0 +1,8 @@
#!/home/awe/Documents/radar_frontend/web_viewer/.venv/bin/python3.12
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())