diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..87c219e
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,28 @@
+# Универсальное поведение строк
+* text=auto
+
+# Windows
+*.bat text eol=crlf
+*.cmd text eol=crlf
+
+# Явное указание для популярных расширений
+*.py text eol=lf
+*.js text eol=lf
+*.ts text eol=lf
+*.sh text eol=lf
+*.html text eol=lf
+*.css text eol=lf
+*.md text eol=lf
+*.yml text eol=lf
+*.json text eol=lf
+
+# Исключаем двоичные файлы (оставляем как есть)
+*.jpg binary
+*.png binary
+*.gif binary
+*.ico binary
+*.pdf binary
+*.zip binary
+*.rar binary
+*.exe binary
+*.dll binary
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 16126f0..fe95be3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,37 @@
# Changelog
+## [v2.0.0] — 2025-08-08
+
+### 🎨 Полная модернизация интерфейса:
+- **Переход с tkinter на PySide6** - современный и красивый интерфейс
+- **Ультрасовременный дизайн** с использованием Material Design принципов
+- **Модульная архитектура** - код разделен на логические компоненты
+- **Адаптивный интерфейс** с поддержкой различных разрешений экрана
+
+### ✨ Новые возможности:
+- **Современные кнопки** с иконками и hover-эффектами
+- **Прогресс-бар** с анимацией для отслеживания процесса сканирования
+- **Контекстное меню** с быстрыми действиями (копирование, очистка)
+- **Статус-бар** с информативными сообщениями
+- **Вкладки в окне статистики** (графики, таблица, детали)
+
+### 📊 Улучшенная визуализация:
+- **Интерактивные графики** с matplotlib и PySide6
+- **Цветовая схема** в стиле Flat UI с приятными оттенками
+- **Типографика** с использованием Segoe UI шрифтов
+- **Анимации и переходы** для плавного взаимодействия
+
+### 🔧 Технические улучшения:
+- **Многопоточность** с QThread для неблокирующего интерфейса
+- **Сигналы и слоты** для эффективной коммуникации между компонентами
+- **Обработка ошибок** с информативными диалогами
+- **Экспорт данных** в CSV с временными метками
+
+### 🐞 Исправления:
+- Устранены проблемы с производительностью при больших проектах
+- Исправлены ошибки отображения в различных ОС
+- Улучшена совместимость с Windows 10/11
+
## [v1.2.0] — 2025-05-02
### ✨ Новое:
diff --git a/README.md b/README.md
index d682544..d7b1100 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
> 📅 Дата релиза: 2025-05-02
-- ✅ Новый модуль статистики
+- ☑️ Новый модуль статистики (Анализ проектов по дате) -- очень сырой
- 📈 Графики по времени создания проектов
- 📚 Анализ импортируемых библиотек
- 🛡 Поддержка вложенных структур
@@ -12,16 +12,22 @@
➡ Посмотреть полный [Changelog](CHANGELOG.md)
+#
+
+
**Program provides**:
-
+
+
+
+
# py-import-scanner
@@ -107,5 +113,3 @@
Этот проект распространяется под лицензией MIT. Подробности можно найти в файле `LICENSE`.
```
-
-Теперь ты можешь скопировать и вставить этот файл `README.md` в свой репозиторий!
diff --git a/gui/__init__.py b/gui/__init__.py
new file mode 100644
index 0000000..0dcb039
--- /dev/null
+++ b/gui/__init__.py
@@ -0,0 +1,9 @@
+"""
+GUI модуль для py_import_parser
+Содержит современный интерфейс на PySide6
+"""
+
+from .main_window import MainWindow
+from .stats_window import StatsWindow
+
+__all__ = ['MainWindow', 'StatsWindow']
diff --git a/gui/main_window.py b/gui/main_window.py
new file mode 100644
index 0000000..30776e3
--- /dev/null
+++ b/gui/main_window.py
@@ -0,0 +1,524 @@
+"""
+Главное окно приложения с современным PySide6 интерфейсом
+"""
+
+import os
+import re
+import threading
+from threading import Event
+from collections import Counter
+import matplotlib.pyplot as plt
+from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
+from PySide6.QtWidgets import (QApplication, QMainWindow, QWidget, QVBoxLayout,
+ QHBoxLayout, QPushButton, QTextEdit, QLabel,
+ QProgressBar, QFileDialog, QMenu, QMessageBox,
+ QFrame, QSplitter, QScrollArea)
+from PySide6.QtCore import Qt, QThread, Signal, QTimer
+from PySide6.QtGui import QFont, QPalette, QColor, QAction, QIcon
+import pyperclip
+from colorama import init
+import queue
+from concurrent.futures import ThreadPoolExecutor, as_completed
+import ast
+
+from utils import read_gitignore, is_ignored, find_projects
+
+init(autoreset=True)
+
+class ScanWorker(QThread):
+ """Поток для сканирования файлов"""
+ progress_updated = Signal(str)
+ scan_completed = Signal(dict)
+ error_occurred = Signal(str)
+
+ def __init__(self, directory, stop_event):
+ super().__init__()
+ self.directory = directory
+ self.stop_event = stop_event
+
+ def run(self):
+ try:
+ imports_count = {}
+ task_queue = queue.Queue()
+
+ # Сканирование файлов
+ self.scan_directory_for_imports_parallel(
+ self.directory,
+ self.progress_updated.emit,
+ task_queue,
+ self.stop_event
+ )
+
+ # Получение результатов
+ while not task_queue.empty():
+ try:
+ task_type, data = task_queue.get_nowait()
+ if task_type == 'imports':
+ imports_count.update(data)
+ except queue.Empty:
+ break
+
+ self.scan_completed.emit(imports_count)
+
+ except Exception as e:
+ self.error_occurred.emit(str(e))
+
+ def scan_directory_for_imports_parallel(self, directory, progress_callback, task_queue, stop_event):
+ """Сканирование директории с параллельной обработкой"""
+ if stop_event.is_set():
+ return
+
+ excluded_dirs = get_gitignore_excluded_dirs()
+ py_files = []
+
+ # Поиск всех Python файлов
+ for root, dirs, files in os.walk(directory):
+ if stop_event.is_set():
+ return
+
+ # Исключаем ненужные папки
+ dirs[:] = [d for d in dirs if not is_excluded_directory(d, excluded_dirs)]
+
+ for file in files:
+ if file.endswith('.py'):
+ py_files.append(os.path.join(root, file))
+
+ progress_callback(f"Найдено {len(py_files)} Python файлов...")
+
+ # Параллельная обработка файлов
+ imports_count = {}
+ with ThreadPoolExecutor(max_workers=os.cpu_count()) as executor:
+ future_to_file = {
+ executor.submit(find_imports_in_file, file_path): file_path
+ for file_path in py_files
+ }
+
+ completed = 0
+ for future in as_completed(future_to_file):
+ if stop_event.is_set():
+ return
+
+ completed += 1
+ progress_callback(f"Обработано {completed}/{len(py_files)} файлов...")
+
+ try:
+ imports = future.result()
+ for imp in imports:
+ imports_count[imp] = imports_count.get(imp, 0) + 1
+ except Exception as e:
+ continue
+
+ task_queue.put(('imports', imports_count))
+
+
+class MainWindow(QMainWindow):
+ """Главное окно приложения"""
+
+ def __init__(self):
+ super().__init__()
+ self.stop_event = Event()
+ self.scan_worker = None
+ self.imports_count = {}
+ self.project_data = {}
+ self.project_data_ready = False
+
+ self.init_ui()
+ self.setup_styles()
+
+ def init_ui(self):
+ """Инициализация пользовательского интерфейса"""
+ self.setWindowTitle("Python Import Parser - Анализ импортов")
+ self.setMinimumSize(1000, 700)
+
+ # Центральный виджет
+ central_widget = QWidget()
+ self.setCentralWidget(central_widget)
+
+ # Главный layout
+ main_layout = QVBoxLayout(central_widget)
+ main_layout.setSpacing(10)
+ main_layout.setContentsMargins(20, 20, 20, 20)
+
+ # Заголовок
+ title_label = QLabel("Python Import Parser")
+ title_label.setFont(QFont("Segoe UI", 24, QFont.Bold))
+ title_label.setAlignment(Qt.AlignCenter)
+ title_label.setStyleSheet("color: #2c3e50; margin-bottom: 10px;")
+ main_layout.addWidget(title_label)
+
+ # Подзаголовок
+ subtitle_label = QLabel("Анализ и статистика импортов в Python проектах")
+ subtitle_label.setFont(QFont("Segoe UI", 12))
+ subtitle_label.setAlignment(Qt.AlignCenter)
+ subtitle_label.setStyleSheet("color: #7f8c8d; margin-bottom: 20px;")
+ main_layout.addWidget(subtitle_label)
+
+ # Панель управления
+ control_frame = QFrame()
+ control_frame.setFrameStyle(QFrame.StyledPanel)
+ control_frame.setStyleSheet("""
+ QFrame {
+ background-color: #ecf0f1;
+ border-radius: 10px;
+ padding: 15px;
+ }
+ """)
+
+ control_layout = QHBoxLayout(control_frame)
+
+ # Кнопки
+ self.browse_btn = QPushButton("📁 Выбрать папку")
+ self.browse_btn.setFont(QFont("Segoe UI", 11))
+ self.browse_btn.clicked.connect(self.browse_directory)
+ self.browse_btn.setStyleSheet("""
+ QPushButton {
+ background-color: #3498db;
+ color: white;
+ border: none;
+ padding: 12px 20px;
+ border-radius: 6px;
+ font-weight: bold;
+ }
+ QPushButton:hover {
+ background-color: #2980b9;
+ }
+ QPushButton:pressed {
+ background-color: #21618c;
+ }
+ """)
+
+ self.scan_btn = QPushButton("🔍 Сканировать")
+ self.scan_btn.setFont(QFont("Segoe UI", 11))
+ self.scan_btn.clicked.connect(self.start_scan)
+ self.scan_btn.setEnabled(False)
+ self.scan_btn.setStyleSheet("""
+ QPushButton {
+ background-color: #27ae60;
+ color: white;
+ border: none;
+ padding: 12px 20px;
+ border-radius: 6px;
+ font-weight: bold;
+ }
+ QPushButton:hover {
+ background-color: #229954;
+ }
+ QPushButton:pressed {
+ background-color: #1e8449;
+ }
+ QPushButton:disabled {
+ background-color: #bdc3c7;
+ color: #7f8c8d;
+ }
+ """)
+
+ self.stop_btn = QPushButton("⏹ Остановить")
+ self.stop_btn.setFont(QFont("Segoe UI", 11))
+ self.stop_btn.clicked.connect(self.stop_scan)
+ self.stop_btn.setEnabled(False)
+ self.stop_btn.setStyleSheet("""
+ QPushButton {
+ background-color: #e74c3c;
+ color: white;
+ border: none;
+ padding: 12px 20px;
+ border-radius: 6px;
+ font-weight: bold;
+ }
+ QPushButton:hover {
+ background-color: #c0392b;
+ }
+ QPushButton:pressed {
+ background-color: #a93226;
+ }
+ QPushButton:disabled {
+ background-color: #bdc3c7;
+ color: #7f8c8d;
+ }
+ """)
+
+ self.stats_btn = QPushButton("📊 Статистика")
+ self.stats_btn.setFont(QFont("Segoe UI", 11))
+ self.stats_btn.clicked.connect(self.show_stats)
+ self.stats_btn.setEnabled(False)
+ self.stats_btn.setStyleSheet("""
+ QPushButton {
+ background-color: #9b59b6;
+ color: white;
+ border: none;
+ padding: 12px 20px;
+ border-radius: 6px;
+ font-weight: bold;
+ }
+ QPushButton:hover {
+ background-color: #8e44ad;
+ }
+ QPushButton:pressed {
+ background-color: #7d3c98;
+ }
+ QPushButton:disabled {
+ background-color: #bdc3c7;
+ color: #7f8c8d;
+ }
+ """)
+
+ control_layout.addWidget(self.browse_btn)
+ control_layout.addWidget(self.scan_btn)
+ control_layout.addWidget(self.stop_btn)
+ control_layout.addWidget(self.stats_btn)
+ control_layout.addStretch()
+
+ main_layout.addWidget(control_frame)
+
+ # Прогресс бар
+ self.progress_label = QLabel("Готов к работе")
+ self.progress_label.setFont(QFont("Segoe UI", 10))
+ self.progress_label.setStyleSheet("color: #2c3e50; margin-top: 10px;")
+ main_layout.addWidget(self.progress_label)
+
+ self.progress_bar = QProgressBar()
+ self.progress_bar.setVisible(False)
+ self.progress_bar.setStyleSheet("""
+ QProgressBar {
+ border: 2px solid #bdc3c7;
+ border-radius: 5px;
+ text-align: center;
+ background-color: #ecf0f1;
+ }
+ QProgressBar::chunk {
+ background-color: #3498db;
+ border-radius: 3px;
+ }
+ """)
+ main_layout.addWidget(self.progress_bar)
+
+ # Разделитель
+ splitter = QSplitter(Qt.Vertical)
+
+ # Область вывода
+ output_frame = QFrame()
+ output_frame.setFrameStyle(QFrame.StyledPanel)
+ output_frame.setStyleSheet("""
+ QFrame {
+ background-color: white;
+ border: 2px solid #bdc3c7;
+ border-radius: 8px;
+ }
+ """)
+
+ output_layout = QVBoxLayout(output_frame)
+
+ output_label = QLabel("Результаты анализа:")
+ output_label.setFont(QFont("Segoe UI", 12, QFont.Bold))
+ output_label.setStyleSheet("color: #2c3e50; margin-bottom: 5px;")
+ output_layout.addWidget(output_label)
+
+ self.output_text = QTextEdit()
+ self.output_text.setFont(QFont("Consolas", 10))
+ self.output_text.setStyleSheet("""
+ QTextEdit {
+ background-color: #f8f9fa;
+ border: 1px solid #dee2e6;
+ border-radius: 5px;
+ padding: 10px;
+ color: #2c3e50;
+ }
+ """)
+ self.output_text.setContextMenuPolicy(Qt.CustomContextMenu)
+ self.output_text.customContextMenuRequested.connect(self.show_context_menu)
+ output_layout.addWidget(self.output_text)
+
+ splitter.addWidget(output_frame)
+ main_layout.addWidget(splitter)
+
+ # Статус бар
+ self.statusBar().showMessage("Готов к работе")
+
+ def setup_styles(self):
+ """Настройка стилей приложения"""
+ self.setStyleSheet("""
+ QMainWindow {
+ background-color: #f5f6fa;
+ }
+ """)
+
+ def browse_directory(self):
+ """Выбор директории для сканирования"""
+ directory = QFileDialog.getExistingDirectory(
+ self,
+ "Выберите папку с Python проектами",
+ os.getcwd()
+ )
+
+ if directory:
+ self.selected_directory = directory
+ self.scan_btn.setEnabled(True)
+ self.progress_label.setText(f"Выбрана папка: {directory}")
+ self.statusBar().showMessage(f"Выбрана папка: {directory}")
+
+ def start_scan(self):
+ """Запуск сканирования"""
+ if not hasattr(self, 'selected_directory'):
+ QMessageBox.warning(self, "Предупреждение", "Сначала выберите папку для сканирования!")
+ return
+
+ self.stop_event.clear()
+ self.scan_btn.setEnabled(False)
+ self.stop_btn.setEnabled(True)
+ self.browse_btn.setEnabled(False)
+ self.progress_bar.setVisible(True)
+ self.progress_bar.setRange(0, 0) # Неопределенный прогресс
+
+ self.output_text.clear()
+ self.output_text.append("🔍 Начинаю сканирование...\n")
+
+ # Запуск потока сканирования
+ self.scan_worker = ScanWorker(self.selected_directory, self.stop_event)
+ self.scan_worker.progress_updated.connect(self.update_progress)
+ self.scan_worker.scan_completed.connect(self.scan_completed)
+ self.scan_worker.error_occurred.connect(self.scan_error)
+ self.scan_worker.start()
+
+ def stop_scan(self):
+ """Остановка сканирования"""
+ self.stop_event.set()
+ if self.scan_worker and self.scan_worker.isRunning():
+ self.scan_worker.terminate()
+ self.scan_worker.wait()
+
+ self.scan_btn.setEnabled(True)
+ self.stop_btn.setEnabled(False)
+ self.browse_btn.setEnabled(True)
+ self.progress_bar.setVisible(False)
+ self.progress_label.setText("Сканирование остановлено")
+ self.statusBar().showMessage("Сканирование остановлено")
+
+ def update_progress(self, message):
+ """Обновление прогресса"""
+ self.progress_label.setText(message)
+ self.output_text.append(f"📝 {message}")
+ self.output_text.ensureCursorVisible()
+
+ def scan_completed(self, imports_count):
+ """Завершение сканирования"""
+ self.imports_count = imports_count
+ self.scan_btn.setEnabled(True)
+ self.stop_btn.setEnabled(False)
+ self.browse_btn.setEnabled(True)
+ self.progress_bar.setVisible(False)
+ self.stats_btn.setEnabled(True)
+
+ self.progress_label.setText("Сканирование завершено!")
+ self.statusBar().showMessage("Сканирование завершено")
+
+ # Отображение результатов
+ self.display_results(imports_count)
+
+ def scan_error(self, error_message):
+ """Обработка ошибки сканирования"""
+ QMessageBox.critical(self, "Ошибка", f"Произошла ошибка при сканировании:\n{error_message}")
+ self.scan_btn.setEnabled(True)
+ self.stop_btn.setEnabled(False)
+ self.browse_btn.setEnabled(True)
+ self.progress_bar.setVisible(False)
+
+ def display_results(self, imports_count):
+ """Отображение результатов анализа"""
+ if not imports_count:
+ self.output_text.append("❌ Импорты не найдены")
+ return
+
+ total_imports = sum(imports_count.values())
+ self.output_text.append(f"\n✅ Найдено {len(imports_count)} уникальных библиотек")
+ self.output_text.append(f"📊 Общее количество импортов: {total_imports}\n")
+
+ # Сортировка по количеству
+ sorted_imports = sorted(imports_count.items(), key=lambda x: x[1], reverse=True)
+
+ self.output_text.append("🏆 Топ-10 самых популярных библиотек:")
+ for i, (lib, count) in enumerate(sorted_imports[:10], 1):
+ percentage = (count / total_imports) * 100
+ self.output_text.append(f"{i:2d}. {lib:20s} - {count:4d} ({percentage:5.1f}%)")
+
+ if len(sorted_imports) > 10:
+ self.output_text.append(f"\n... и еще {len(sorted_imports) - 10} библиотек")
+
+ def show_stats(self):
+ """Показать окно статистики"""
+ if not self.imports_count:
+ QMessageBox.information(self, "Информация", "Сначала выполните сканирование!")
+ return
+
+ # Здесь будет вызов окна статистики
+ QMessageBox.information(self, "Статистика", "Окно статистики будет реализовано в следующем обновлении!")
+
+ def show_context_menu(self, position):
+ """Показать контекстное меню"""
+ menu = QMenu(self)
+
+ copy_action = QAction("📋 Копировать", self)
+ copy_action.triggered.connect(self.copy_to_clipboard)
+ menu.addAction(copy_action)
+
+ clear_action = QAction("🗑 Очистить", self)
+ clear_action.triggered.connect(self.output_text.clear)
+ menu.addAction(clear_action)
+
+ menu.exec_(self.output_text.mapToGlobal(position))
+
+ def copy_to_clipboard(self):
+ """Копирование в буфер обмена"""
+ text = self.output_text.toPlainText()
+ if text:
+ pyperclip.copy(text)
+ self.statusBar().showMessage("Текст скопирован в буфер обмена", 2000)
+
+
+# Вспомогательные функции (перенесены из main.py)
+def get_gitignore_excluded_dirs(gitignore_path='.gitignore'):
+ excluded_dirs = []
+ try:
+ with open(gitignore_path, 'r', encoding='utf-8') as f:
+ excluded_dirs = [line.strip() for line in f.readlines() if line.strip() and not line.startswith('#')]
+ except FileNotFoundError:
+ pass
+ return excluded_dirs
+
+def is_excluded_directory(directory, excluded_dirs):
+ if any(excluded_dir in directory for excluded_dir in excluded_dirs):
+ return True
+ return False
+
+def find_imports_in_file(file_path):
+ imports = []
+ excluded = {
+ '__future__', 'warnings', 'io', 'typing', 'collections', 'contextlib', 'types', 'abc', 'forwarding',
+ 'ssl', 'distutils', 'operator', 'pathlib', 'dataclasses', 'inspect', 'socket', 'shutil', 'attr',
+ 'tempfile', 'zipfile', 'betterproto', 'the', 'struct', 'base64', 'optparse', 'textwrap', 'setuptools',
+ 'pkg_resources', 'multidict', 'enum', 'copy', 'importlib', 'traceback', 'six', 'binascii', 'stat',
+ 'errno', 'grpclib', 'posixpath', 'zlib', 'pytz', 'bisect', 'weakref', 'winreg', 'fnmatch', 'site',
+ 'email', 'html', 'mimetypes', 'locale', 'calendar', 'shlex', 'unicodedata', 'babel', 'pkgutil', 'ipaddress',
+ 'arq', 'rsa', 'handlers', 'opentele', 'states', 'os', 'utils', 'database', 'time', 'models', 'loader', 'keyboards',
+ 'sys', 're', 'data', 'commands', 'functions', 'config', 'roop', 'keras', 'configparser', ''
+ }
+
+ try:
+ with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:
+ tree = ast.parse(f.read(), filename=file_path)
+
+ for node in ast.walk(tree):
+ if isinstance(node, ast.Import):
+ for alias in node.names:
+ lib = alias.name.split('.')[0]
+ if lib and lib not in excluded and lib.isidentifier():
+ imports.append(lib)
+ elif isinstance(node, ast.ImportFrom):
+ if node.module:
+ lib = node.module.split('.')[0]
+ if lib and lib not in excluded and lib.isidentifier():
+ imports.append(lib)
+
+ except Exception:
+ pass
+
+ return imports
diff --git a/gui/stats_window.py b/gui/stats_window.py
new file mode 100644
index 0000000..0e631ef
--- /dev/null
+++ b/gui/stats_window.py
@@ -0,0 +1,525 @@
+"""
+Окно статистики с современным PySide6 интерфейсом
+"""
+
+import os
+import ast
+import datetime
+import pandas as pd
+import matplotlib.pyplot as plt
+from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
+from matplotlib.figure import Figure
+from PySide6.QtWidgets import (QMainWindow, QWidget, QVBoxLayout, QHBoxLayout,
+ QPushButton, QLabel, QTabWidget, QTableWidget,
+ QTableWidgetItem, QFrame, QScrollArea, QTextEdit)
+from PySide6.QtCore import Qt, QThread, Signal
+from PySide6.QtGui import QFont, QPixmap
+import seaborn as sns
+
+from utils import read_gitignore, is_ignored, find_projects
+
+IGNORED_DIRS = {'.git', '__pycache__', '.idea', '.vscode', '.venv', '.eggs'}
+
+
+class StatsWorker(QThread):
+ """Поток для анализа статистики"""
+ progress_updated = Signal(str)
+ analysis_completed = Signal(dict)
+ error_occurred = Signal(str)
+
+ def __init__(self, directory):
+ super().__init__()
+ self.directory = directory
+
+ def run(self):
+ try:
+ # Анализ структуры проекта
+ structure = self.analyze_project_structure(self.directory)
+
+ # Парсинг Python файлов
+ project_stats = self.parse_python_files(self.directory)
+
+ results = {
+ 'structure': structure,
+ 'project_stats': project_stats
+ }
+
+ self.analysis_completed.emit(results)
+
+ except Exception as e:
+ self.error_occurred.emit(str(e))
+
+ def analyze_project_structure(self, directory):
+ """Анализ структуры проекта"""
+ self.progress_updated.emit("Анализирую структуру проекта...")
+
+ ignored_paths = read_gitignore(directory)
+
+ structure = {
+ 'total_files': 0,
+ 'total_dirs': 0,
+ 'py_files': 0,
+ 'py_files_venv': 0,
+ 'other_files': 0,
+ 'folders': []
+ }
+
+ venv_like = ('venv', '.venv', 'env', '.env', '__pycache__', '.git', '.idea', '.vscode', '.mypy_cache')
+
+ for root, dirs, files in os.walk(directory):
+ # исключаем сразу ненужные папки
+ dirs[:] = [d for d in dirs if d not in venv_like and not is_ignored(os.path.join(root, d), ignored_paths)]
+
+ structure['total_dirs'] += len(dirs)
+ structure['total_files'] += len(files)
+
+ for file in files:
+ file_path = os.path.join(root, file)
+ if file.endswith('.py'):
+ if any(p in file_path for p in venv_like) or is_ignored(file_path, ignored_paths):
+ structure['py_files_venv'] += 1
+ else:
+ structure['py_files'] += 1
+ else:
+ structure['other_files'] += 1
+
+ relative_root = os.path.relpath(root, directory)
+ structure['folders'].append(relative_root)
+
+ return structure
+
+ def parse_python_files(self, projects_dir, export=True, max_files=5000, max_depth=6):
+ """Парсинг Python файлов"""
+ self.progress_updated.emit("Парсинг Python файлов...")
+
+ project_stats = {}
+ scanned_files = 0
+
+ for root, dirs, files in os.walk(projects_dir):
+ # Удаление игнорируемых директорий
+ dirs[:] = [d for d in dirs if d not in IGNORED_DIRS]
+
+ # Ограничение глубины
+ rel_root = os.path.relpath(root, projects_dir)
+ depth = rel_root.count(os.sep)
+ if depth > max_depth:
+ continue
+
+ py_files = [f for f in files if f.endswith(".py")]
+ if not py_files:
+ continue
+
+ project_name = rel_root.replace(os.sep, " / ") if rel_root != "." else "ROOT"
+
+ if project_name not in project_stats:
+ project_stats[project_name] = {
+ "py_count": 0,
+ "libs": set(),
+ "created": None,
+ "dirs": set()
+ }
+
+ for file in py_files:
+ file_path = os.path.join(root, file)
+ scanned_files += 1
+ project_stats[project_name]["py_count"] += 1
+
+ # Обработка даты
+ try:
+ creation_time = os.path.getctime(file_path)
+ creation_date = datetime.datetime.fromtimestamp(creation_time)
+
+ if project_stats[project_name]["created"] is None:
+ project_stats[project_name]["created"] = creation_date
+ elif creation_date < project_stats[project_name]["created"]:
+ project_stats[project_name]["created"] = creation_date
+ except:
+ pass
+
+ # Анализ импортов
+ try:
+ with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:
+ tree = ast.parse(f.read(), filename=file_path)
+
+ for node in ast.walk(tree):
+ if isinstance(node, ast.Import):
+ for alias in node.names:
+ lib = alias.name.split('.')[0]
+ if lib and lib.isidentifier():
+ project_stats[project_name]["libs"].add(lib)
+ elif isinstance(node, ast.ImportFrom):
+ if node.module:
+ lib = node.module.split('.')[0]
+ if lib and lib.isidentifier():
+ project_stats[project_name]["libs"].add(lib)
+ except:
+ pass
+
+ # Добавление директории
+ project_stats[project_name]["dirs"].add(os.path.dirname(file_path))
+
+ return project_stats
+
+
+class StatsWindow(QMainWindow):
+ """Окно статистики"""
+
+ def __init__(self, imports_count, parent=None):
+ super().__init__(parent)
+ self.imports_count = imports_count
+ self.stats_worker = None
+
+ self.init_ui()
+ self.setup_styles()
+
+ def init_ui(self):
+ """Инициализация пользовательского интерфейса"""
+ self.setWindowTitle("Статистика проекта - Python Import Parser")
+ self.setMinimumSize(1200, 800)
+
+ # Центральный виджет
+ central_widget = QWidget()
+ self.setCentralWidget(central_widget)
+
+ # Главный layout
+ main_layout = QVBoxLayout(central_widget)
+ main_layout.setSpacing(15)
+ main_layout.setContentsMargins(20, 20, 20, 20)
+
+ # Заголовок
+ title_label = QLabel("📊 Статистика проекта")
+ title_label.setFont(QFont("Segoe UI", 20, QFont.Bold))
+ title_label.setAlignment(Qt.AlignCenter)
+ title_label.setStyleSheet("color: #2c3e50; margin-bottom: 10px;")
+ main_layout.addWidget(title_label)
+
+ # Вкладки
+ self.tab_widget = QTabWidget()
+ self.tab_widget.setStyleSheet("""
+ QTabWidget::pane {
+ border: 2px solid #bdc3c7;
+ border-radius: 8px;
+ background-color: white;
+ }
+ QTabBar::tab {
+ background-color: #ecf0f1;
+ padding: 10px 20px;
+ margin-right: 2px;
+ border-top-left-radius: 6px;
+ border-top-right-radius: 6px;
+ font-weight: bold;
+ }
+ QTabBar::tab:selected {
+ background-color: #3498db;
+ color: white;
+ }
+ QTabBar::tab:hover {
+ background-color: #2980b9;
+ color: white;
+ }
+ """)
+
+ # Вкладка с графиками
+ self.create_charts_tab()
+
+ # Вкладка с таблицей
+ self.create_table_tab()
+
+ # Вкладка с детальной статистикой
+ self.create_details_tab()
+
+ main_layout.addWidget(self.tab_widget)
+
+ # Кнопки управления
+ button_layout = QHBoxLayout()
+
+ self.export_btn = QPushButton("📄 Экспорт в CSV")
+ self.export_btn.setFont(QFont("Segoe UI", 11))
+ self.export_btn.clicked.connect(self.export_to_csv)
+ self.export_btn.setStyleSheet("""
+ QPushButton {
+ background-color: #27ae60;
+ color: white;
+ border: none;
+ padding: 12px 20px;
+ border-radius: 6px;
+ font-weight: bold;
+ }
+ QPushButton:hover {
+ background-color: #229954;
+ }
+ """)
+
+ self.close_btn = QPushButton("❌ Закрыть")
+ self.close_btn.setFont(QFont("Segoe UI", 11))
+ self.close_btn.clicked.connect(self.close)
+ self.close_btn.setStyleSheet("""
+ QPushButton {
+ background-color: #e74c3c;
+ color: white;
+ border: none;
+ padding: 12px 20px;
+ border-radius: 6px;
+ font-weight: bold;
+ }
+ QPushButton:hover {
+ background-color: #c0392b;
+ }
+ """)
+
+ button_layout.addWidget(self.export_btn)
+ button_layout.addStretch()
+ button_layout.addWidget(self.close_btn)
+
+ main_layout.addLayout(button_layout)
+
+ def setup_styles(self):
+ """Настройка стилей приложения"""
+ self.setStyleSheet("""
+ QMainWindow {
+ background-color: #f5f6fa;
+ }
+ """)
+
+ def create_charts_tab(self):
+ """Создание вкладки с графиками"""
+ charts_widget = QWidget()
+ charts_layout = QVBoxLayout(charts_widget)
+
+ # Создание графиков
+ self.create_imports_chart()
+ self.create_pie_chart()
+
+ charts_layout.addWidget(self.imports_canvas)
+ charts_layout.addWidget(self.pie_canvas)
+
+ self.tab_widget.addTab(charts_widget, "📈 Графики")
+
+ def create_table_tab(self):
+ """Создание вкладки с таблицей"""
+ table_widget = QWidget()
+ table_layout = QVBoxLayout(table_widget)
+
+ # Таблица с данными
+ self.table = QTableWidget()
+ self.table.setStyleSheet("""
+ QTableWidget {
+ background-color: white;
+ border: 1px solid #dee2e6;
+ border-radius: 5px;
+ gridline-color: #dee2e6;
+ }
+ QHeaderView::section {
+ background-color: #f8f9fa;
+ padding: 8px;
+ border: 1px solid #dee2e6;
+ font-weight: bold;
+ }
+ """)
+
+ self.populate_table()
+ table_layout.addWidget(self.table)
+
+ self.tab_widget.addTab(table_widget, "📋 Таблица")
+
+ def create_details_tab(self):
+ """Создание вкладки с детальной статистикой"""
+ details_widget = QWidget()
+ details_layout = QVBoxLayout(details_widget)
+
+ # Текстовое поле с детальной информацией
+ self.details_text = QTextEdit()
+ self.details_text.setFont(QFont("Consolas", 10))
+ self.details_text.setStyleSheet("""
+ QTextEdit {
+ background-color: #f8f9fa;
+ border: 1px solid #dee2e6;
+ border-radius: 5px;
+ padding: 10px;
+ color: #2c3e50;
+ }
+ """)
+
+ self.populate_details()
+ details_layout.addWidget(self.details_text)
+
+ self.tab_widget.addTab(details_widget, "📝 Детали")
+
+ def create_imports_chart(self):
+ """Создание графика импортов"""
+ if not self.imports_count:
+ return
+
+ # Создание фигуры
+ fig = Figure(figsize=(10, 6))
+ ax = fig.add_subplot(111)
+
+ # Подготовка данных
+ sorted_imports = sorted(self.imports_count.items(), key=lambda x: x[1], reverse=True)
+ top_imports = sorted_imports[:15] # Топ-15
+
+ libraries = [item[0] for item in top_imports]
+ counts = [item[1] for item in top_imports]
+
+ # Создание графика
+ bars = ax.bar(libraries, counts, color='#3498db', alpha=0.8)
+ ax.set_title('Топ-15 самых популярных библиотек', fontsize=14, fontweight='bold')
+ ax.set_xlabel('Библиотеки', fontsize=12)
+ ax.set_ylabel('Количество импортов', fontsize=12)
+
+ # Поворот подписей
+ ax.tick_params(axis='x', rotation=45)
+
+ # Добавление значений на столбцы
+ for bar, count in zip(bars, counts):
+ height = bar.get_height()
+ ax.text(bar.get_x() + bar.get_width()/2., height + 0.01,
+ f'{count}', ha='center', va='bottom', fontweight='bold')
+
+ fig.tight_layout()
+
+ # Создание canvas
+ self.imports_canvas = FigureCanvas(fig)
+
+ def create_pie_chart(self):
+ """Создание круговой диаграммы"""
+ if not self.imports_count:
+ return
+
+ # Создание фигуры
+ fig = Figure(figsize=(8, 6))
+ ax = fig.add_subplot(111)
+
+ # Подготовка данных
+ sorted_imports = sorted(self.imports_count.items(), key=lambda x: x[1], reverse=True)
+ top_imports = sorted_imports[:10] # Топ-10
+
+ # Группировка остальных
+ other_count = sum(count for _, count in sorted_imports[10:])
+ if other_count > 0:
+ top_imports.append(('Остальные', other_count))
+
+ libraries = [item[0] for item in top_imports]
+ counts = [item[1] for item in top_imports]
+
+ # Цвета
+ colors = plt.cm.Set3(np.linspace(0, 1, len(libraries)))
+
+ # Создание круговой диаграммы
+ wedges, texts, autotexts = ax.pie(counts, labels=libraries, autopct='%1.1f%%',
+ colors=colors, startangle=90)
+ ax.set_title('Распределение импортов', fontsize=14, fontweight='bold')
+
+ # Настройка текста
+ for autotext in autotexts:
+ autotext.set_color('white')
+ autotext.set_fontweight('bold')
+
+ fig.tight_layout()
+
+ # Создание canvas
+ self.pie_canvas = FigureCanvas(fig)
+
+ def populate_table(self):
+ """Заполнение таблицы данными"""
+ if not self.imports_count:
+ return
+
+ # Подготовка данных
+ sorted_imports = sorted(self.imports_count.items(), key=lambda x: x[1], reverse=True)
+ total_imports = sum(self.imports_count.values())
+
+ # Настройка таблицы
+ self.table.setRowCount(len(sorted_imports))
+ self.table.setColumnCount(4)
+ self.table.setHorizontalHeaderLabels(['Место', 'Библиотека', 'Количество', 'Процент'])
+
+ # Заполнение данных
+ for i, (lib, count) in enumerate(sorted_imports):
+ percentage = (count / total_imports) * 100
+
+ self.table.setItem(i, 0, QTableWidgetItem(str(i + 1)))
+ self.table.setItem(i, 1, QTableWidgetItem(lib))
+ self.table.setItem(i, 2, QTableWidgetItem(str(count)))
+ self.table.setItem(i, 3, QTableWidgetItem(f"{percentage:.1f}%"))
+
+ # Автоматическая подгонка размеров
+ self.table.resizeColumnsToContents()
+
+ def populate_details(self):
+ """Заполнение детальной информации"""
+ if not self.imports_count:
+ return
+
+ total_imports = sum(self.imports_count.values())
+ unique_libs = len(self.imports_count)
+
+ details = f"""
+📊 ДЕТАЛЬНАЯ СТАТИСТИКА ИМПОРТОВ
+{'='*50}
+
+📈 ОБЩАЯ ИНФОРМАЦИЯ:
+• Всего уникальных библиотек: {unique_libs}
+• Общее количество импортов: {total_imports}
+• Среднее количество импортов на библиотеку: {total_imports/unique_libs:.1f}
+
+🏆 ТОП-20 САМЫХ ПОПУЛЯРНЫХ БИБЛИОТЕК:
+{'='*50}
+"""
+
+ sorted_imports = sorted(self.imports_count.items(), key=lambda x: x[1], reverse=True)
+
+ for i, (lib, count) in enumerate(sorted_imports[:20], 1):
+ percentage = (count / total_imports) * 100
+ details += f"{i:2d}. {lib:25s} - {count:4d} импортов ({percentage:5.1f}%)\n"
+
+ details += f"""
+📋 ПОЛНЫЙ СПИСОК БИБЛИОТЕК:
+{'='*50}
+"""
+
+ for i, (lib, count) in enumerate(sorted_imports, 1):
+ percentage = (count / total_imports) * 100
+ details += f"{i:3d}. {lib:25s} - {count:4d} ({percentage:5.1f}%)\n"
+
+ self.details_text.setText(details)
+
+ def export_to_csv(self):
+ """Экспорт данных в CSV"""
+ if not self.imports_count:
+ return
+
+ try:
+ # Создание DataFrame
+ data = []
+ total_imports = sum(self.imports_count.values())
+
+ for lib, count in self.imports_count.items():
+ percentage = (count / total_imports) * 100
+ data.append({
+ 'Библиотека': lib,
+ 'Количество_импортов': count,
+ 'Процент': round(percentage, 2)
+ })
+
+ df = pd.DataFrame(data)
+ df = df.sort_values('Количество_импортов', ascending=False)
+
+ # Сохранение файла
+ filename = f"import_statistics_{datetime.datetime.now().strftime('%Y%m%d_%H%M%S')}.csv"
+ df.to_csv(filename, index=False, encoding='utf-8-sig')
+
+ from PySide6.QtWidgets import QMessageBox
+ QMessageBox.information(self, "Успех", f"Данные экспортированы в файл: {filename}")
+
+ except Exception as e:
+ from PySide6.QtWidgets import QMessageBox
+ QMessageBox.critical(self, "Ошибка", f"Ошибка при экспорте: {str(e)}")
+
+
+# Функция для открытия окна статистики (совместимость с существующим кодом)
+def open_stats_window(parent, imports_count):
+ """Открытие окна статистики"""
+ stats_window = StatsWindow(imports_count, parent)
+ stats_window.show()
+ return stats_window
diff --git a/project_stats.csv b/project_stats.csv
new file mode 100644
index 0000000..bfcc249
--- /dev/null
+++ b/project_stats.csv
@@ -0,0 +1,1159 @@
+name,stack,dirs,date,py_count
+A - OLD / Chrome Anti-Detect,"['selenium', 'time', 'undetected_chromedriver']",['A - OLD\\Chrome Anti-Detect'],2024-07-17 01:53:59,2
+A - OLD / Discord / Discord_bot,"['asyncio', 'config', 'datetime', 'discord', 'example', 'json', 'os', 'requests', 'sqlite3', 'time']",['A - OLD\\Discord\\Discord_bot'],2024-01-15 04:51:04,3
+A - OLD / Network / PortScanner,"['Queue', 'argparse', 'colorama', 'ctypes', 'datetime', 'os', 'queue', 'shutil', 'signal', 'socket', 'struct', 'sys', 'threading', 'time']",['A - OLD\\Network\\PortScanner'],2024-01-15 04:51:04,3
+A - OLD / Other / GameBot,"['cv2', 'fuzzywuzzy', 'mss', 'numpy', 'pyautogui', 'pytesseract', 'rods', 'time', 'utils']",['A - OLD\\Other\\GameBot'],2024-01-15 04:51:04,1
+A - OLD / Other / Turtle,"['PIL', 'colorsys', 'math', 'matplotlib', 'random', 'turtle']",['A - OLD\\Other\\Turtle'],2024-01-15 04:51:09,5
+A - OLD / Other / YouTube-Viewer,"['concurrent', 'fake_headers', 'faker', 'glob', 'io', 'json', 'logging', 'os', 'psutil', 're', 'requests', 'shutil', 'sys', 'tabulate', 'textwrap', 'time', 'undetected_chromedriver', 'wmi', 'youtubeviewer']",['A - OLD\\Other\\YouTube-Viewer'],2024-02-23 15:09:04,2
+A - OLD / Other / YouTube-Viewer / youtubeviewer,"['bypass', 'calendar', 'colors', 'contextlib', 'datetime', 'features', 'flask', 'glob', 'hashlib', 'json', 'os', 'platform', 'random', 'requests', 'selenium', 'shutil', 'sqlite3', 'subprocess', 'sys', 'time', 'undetected_chromedriver', 'warnings']",['A - OLD\\Other\\YouTube-Viewer\\youtubeviewer'],2024-02-23 15:09:04,11
+A - OLD / Other / Вышка-экономика / Ex_IFX / fas,[],['A - OLD\\Other\\Вышка-экономика\\Ex_IFX\\fas'],2024-01-15 04:50:41,1
+A - OLD / Other / Вышка-экономика / эконометрика - вывод графиков,"['datetime', 'pandas_datareader', 'time']",['A - OLD\\Other\\Вышка-экономика\\эконометрика - вывод графиков'],2024-01-15 04:51:09,2
+A - OLD / Other / Вышка-экономика / эконометрика - вывод графиков / Курсач - Графики - Finance,"['datetime', 'os', 'pandas_datareader', 'seaborn', 'time']",['A - OLD\\Other\\Вышка-экономика\\эконометрика - вывод графиков\\Курсач - Графики - Finance'],2024-01-15 04:51:09,2
+A - OLD / Parsing / Requests / CombotParser,"['bs4', 'json', 'requests', 'sqlite3', 'time', 'urllib', 'urllib3']",['A - OLD\\Parsing\\Requests\\CombotParser'],2024-01-15 04:51:09,1
+A - OLD / Parsing / Requests / WebParserSport,"['bs4', 'requests']",['A - OLD\\Parsing\\Requests\\WebParserSport'],2024-01-15 04:50:41,3
+A - OLD / Parsing / Selenium / AvitoBot,"['bs4', 'fake_useragent', 'logging', 'os', 'pickle', 'proxy', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'sqlite3', 'sys', 'time', 'unittest']",['A - OLD\\Parsing\\Selenium\\AvitoBot'],2024-01-15 04:51:09,4
+A - OLD / Parsing / Selenium / Mvidia_parser,"['bs4', 'csv', 'googletrans', 'json', 'logging', 're', 'requests', 'selenium', 'sqlite3', 'ssl', 'test1', 'time', 'unicodedata', 'urllib3']",['A - OLD\\Parsing\\Selenium\\Mvidia_parser'],2024-01-15 04:51:09,2
+A - OLD / PyKwork / SQLiTrainer,"['flask', 'sqlite3']",['A - OLD\\PyKwork\\SQLiTrainer'],2025-01-18 23:22:31,2
+A - OLD / SPORT_1X / auto_1x,"['asyncio', 'bs4', 'captcha', 'config', 'configparser', 'contextlib', 'datetime', 'fake_useragent', 'logging', 'os', 'pickle', 'pyrogram', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'sqlite3', 'sys', 'telethon', 'threading', 'time', 'tkinter', 'unittest']",['A - OLD\\SPORT_1X\\auto_1x'],2024-01-15 04:51:09,6
+A - OLD / SPORT_1X / auto_1x / AutoReg_Vak_Sms,"['asyncio', 'bs4', 'configparser', 'datetime', 'fake_useragent', 'logging', 'os', 'pickle', 'proxy', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'sqlite3', 'sys', 'test', 'threading', 'time', 'unittest']",['A - OLD\\SPORT_1X\\auto_1x\\AutoReg_Vak_Sms'],2024-01-15 04:51:09,4
+A - OLD / SPORT_1X / auto_1x / tkinter,"['Pmw', '_tkinter', 'fileinput', 'pickle', 'time', 'tkinter']",['A - OLD\\SPORT_1X\\auto_1x\\tkinter'],2024-01-15 04:51:10,8
+A - OLD / SPORT_1X / fotbal_api_parser,"['asyncio', 'calendar', 'json', 'openpyxl', 'requests', 'sqlite3', 'time']",['A - OLD\\SPORT_1X\\fotbal_api_parser'],2024-01-15 04:51:10,4
+A - OLD / SPORT_1X / бот футбол_py,"['black_list_football', 'conf_football', 'configparser', 'connect_1xstavka_football', 'mysql', 'pprint', 'python_mysql_dbconfig', 'requests', 'telebot', 'time', 'traceback']",['A - OLD\\SPORT_1X\\бот футбол_py'],2024-01-15 04:51:10,5
+A - OLD / TELEGRAM_OLD / Aiogram_Copy_Forward,"['aiogram', 'asyncio', 'config', 'datetime', 'googletrans', 'logging', 'random', 're', 'sqlite3']",['A - OLD\\TELEGRAM_OLD\\Aiogram_Copy_Forward'],2024-01-15 04:51:10,2
+A - OLD / TELEGRAM_OLD / Bot_21_stavka_pyrogram,"['logging', 'pyrogram', 'pytube', 're', 'sqlite3']",['A - OLD\\TELEGRAM_OLD\\Bot_21_stavka_pyrogram'],2024-01-15 04:51:11,5
+A - OLD / TELEGRAM_OLD / Instagram_DP_Saver_Bot-main,"['consts', 'instaloader', 'logging', 'os', 're', 'telegram', 'time', 'traceback']",['A - OLD\\TELEGRAM_OLD\\Instagram_DP_Saver_Bot-main'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / message_forward_bot,"['aiogram', 'asyncio', 'config', 'datetime', 'logging', 'os', 'sqlite3', 'tiktok_downloader', 'youtube_dl']",['A - OLD\\TELEGRAM_OLD\\message_forward_bot'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main,"['aiogram', 'apscheduler', 'asyncio', 'database', 'handlers', 'logging', 'middlewares', 'sqlalchemy', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main'],2024-01-15 04:50:41,2
+A - OLD / TELEGRAM_OLD / omutchan-main / database,[],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\database'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / omutchan-main / database / contexts,"['aiogram', 'contextlib', 'database', 'dataclasses', 'datetime', 'enum', 'sqlalchemy', 'sys', 'typing', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\database\\contexts'],2024-01-15 04:50:41,9
+A - OLD / TELEGRAM_OLD / omutchan-main / database / models,"['__future__', 'base', 'bill', 'chat', 'database', 'logging', 'luser', 'payment', 'personal_rp', 'rank', 're', 'reward', 'sqlalchemy', 'typing', 'user']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\database\\models'],2024-01-15 04:51:11,10
+A - OLD / TELEGRAM_OLD / omutchan-main / filters,"['aiogram', 'handlers', 're', 'typing', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\filters'],2024-01-15 04:51:11,4
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers,"['aiogram', 'handlers']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers'],2024-01-15 04:51:11,1
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / cbq_groups,"['aiogram', 'database', 'datetime', 'filters', 'glQiwiApi', 'handlers', 'keyboards', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\cbq_groups'],2024-01-15 04:51:11,5
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / cbq_groups / shop,"['aiogram', 'database', 'datetime', 'keyboards', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\cbq_groups\\shop'],2024-01-15 04:51:11,11
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / errors,"['aiogram', 'handlers', 'logging']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\errors'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups,"['aiogram', 'any', 'balance', 'bonus', 'bot_stat', 'buy', 'database', 'donate', 'farm', 'filters', 'gender', 'info', 'lrp', 'migrate', 'nick', 'ping', 'reputation', 'rp', 'stat', 'subscribe', 'top_charts', 'transfer', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups'],2024-01-15 04:51:11,3
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / balance,"['aiogram', 'database', 'dataclasses', 'handlers', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\balance'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / bonus,"['aiogram', 'database', 'dataclasses', 'datetime', 'handlers', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\bonus'],2024-01-15 04:51:11,3
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / bot_stat,"['aiogram', 'database', 'dataclasses', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\bot_stat'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / buy,"['aiogram', 'apscheduler', 'database', 'dataclasses', 'datetime', 'glQiwiApi', 'handlers', 'keyboards', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\buy'],2024-01-15 04:51:11,10
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / donate,"['aiogram', 'database', 'dataclasses', 'datetime', 'handlers', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\donate'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / farm,"['aiogram', 'database', 'dataclasses', 'datetime', 'keyboards', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\farm'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / gender,"['aiogram', 'database', 'dataclasses', 'handlers', 'keyboards']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\gender'],2024-01-15 04:51:11,3
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / info,"['aiogram', 'database', 'dataclasses', 'datetime', 'handlers', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\info'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / lrp,"['aiogram', 'database', 'dataclasses', 'handlers', 'keyboards', 're', 'typing', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\lrp'],2024-01-15 04:51:11,5
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / nick,"['aiogram', 'database', 'dataclasses', 'handlers', 're', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\nick'],2024-01-15 04:51:11,4
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / ping,"['aiogram', 'dataclasses', 'random']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\ping'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / reputation,"['aiogram', 'database', 'dataclasses', 'handlers', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\reputation'],2024-01-15 04:51:11,3
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / rp,"['aiogram', 'database', 'dataclasses', 'handlers', 'keyboards', 're', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\rp'],2024-01-15 04:51:11,5
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / stat,"['aiogram', 'database', 'dataclasses', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\stat'],2024-01-15 04:51:11,3
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / subscribe,"['aiogram', 'database', 'dataclasses', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\subscribe'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / top_charts,"['aiogram', 'database', 'dataclasses']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\top_charts'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / transfer,"['aiogram', 'database', 'dataclasses', 'handlers', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\groups\\transfer'],2024-01-15 04:51:11,3
+A - OLD / TELEGRAM_OLD / omutchan-main / handlers / users,"['aiogram', 'start']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\handlers\\users'],2024-01-15 04:51:11,2
+A - OLD / TELEGRAM_OLD / omutchan-main / keyboards,[],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\keyboards'],2024-01-15 04:51:11,1
+A - OLD / TELEGRAM_OLD / omutchan-main / keyboards / default,[],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\keyboards\\default'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / omutchan-main / keyboards / inline,['aiogram'],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\keyboards\\inline'],2024-01-15 04:51:11,7
+A - OLD / TELEGRAM_OLD / omutchan-main / middlewares,"['aiogram', 'apscheduler', 'asyncio', 'cbq_groups', 'database', 'datetime', 'dignity', 'html', 'init_database', 'sqlalchemy', 'statistic', 'throttling', 'update_db', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\middlewares'],2024-01-15 04:51:11,8
+A - OLD / TELEGRAM_OLD / omutchan-main / states,[],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\states'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / omutchan-main / utils,"['aiogram', 'aiohttp', 'dataclasses', 'datetime', 'environs', 'pytz', 'sqlalchemy', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\utils'],2024-01-15 04:51:11,4
+A - OLD / TELEGRAM_OLD / omutchan-main / utils / misc,"['__future__', 'aiogram', 'apscheduler', 'asyncio', 'database', 'dataclasses', 'datetime', 'emoji', 'glQiwiApi', 'io', 'logging', 'matplotlib', 'pytz', 'random', 'sqlalchemy', 'throttling', 'typing', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\utils\\misc'],2024-01-15 04:51:12,8
+A - OLD / TELEGRAM_OLD / omutchan-main / utils / misc / consts,"['__future__', 'dataclasses', 'random', 're', 'typing', 'utils']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\utils\\misc\\consts'],2024-01-15 04:50:41,4
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages,"['StringIO', '__future__', 'copy', 'functools', 'imp', 'importlib', 'io', 'itertools', 'operator', 'os', 'pkgutil', 'struct', 'sys', 'threading', 'types']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages'],2024-01-15 04:51:14,3
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / aiogram,"['aiogram', 'aiohttp', 'asyncio', 'bot', 'dispatcher', 'os', 'platform', 'rapidjson', 'sys', 'ujson', 'utils', 'uvloop']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\aiogram'],2024-01-15 04:51:12,2
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / aiohttp,"['_helpers', '_http_parser', '_websocket', 'abc', 'aiodns', 'aiohttp', 'aiosignal', 'argparse', 'async_timeout', 'asyncio', 'asynctest', 'attr', 'base64', 'base_protocol', 'binascii', 'brotli', 'cchardet', 'charset_normalizer', 'client', 'client_exceptions', 'client_proto', 'client_reqrep', 'client_ws', 'codecs', 'collections', 'concurrent', 'connector', 'contextlib', 'cookiejar', 'datetime', 'email', 'enum', 'formdata', 'frozenlist', 'functools', 'gc', 'gunicorn', 'hashlib', 'hdrs', 'helpers', 'html', 'http', 'http_exceptions', 'http_parser', 'http_websocket', 'http_writer', 'idna_ssl', 'importlib', 'inspect', 'io', 'ipaddress', 'itertools', 'json', 'keyword', 'locks', 'log', 'logging', 'math', 'mimetypes', 'multidict', 'multipart', 'netrc', 'os', 'pathlib', 'payload', 'payload_streamer', 'pickle', 'platform', 'pytest', 'random', 're', 'resolver', 'signal', 'socket', 'ssl', 'streams', 'string', 'struct', 'sys', 'tcp_helpers', 'tempfile', 'test_utils', 'time', 'tokio', 'traceback', 'tracing', 'typedefs', 'types', 'typing', 'typing_extensions', 'unittest', 'urllib', 'uuid', 'uvloop', 'warnings', 'weakref', 'web', 'web_app', 'web_exceptions', 'web_fileresponse', 'web_log', 'web_middlewares', 'web_protocol', 'web_request', 'web_response', 'web_routedef', 'web_runner', 'web_server', 'web_urldispatcher', 'web_ws', 'worker', 'yarl', 'zlib']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\aiohttp'],2024-01-15 04:51:12,45
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / aiosignal,['frozenlist'],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\aiosignal'],2024-01-15 04:51:12,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / asynch,"['asynch', 'asyncio', 'collections', 'connection', 'itertools', 'logging', 'pool', 'ssl', 'typing', 'urllib']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\asynch'],2024-01-15 04:51:12,5
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / async_timeout,"['asyncio', 'enum', 'sys', 'types', 'typing', 'typing_extensions', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\async_timeout'],2024-01-15 04:51:12,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / attr,"['_cmp', '_compat', '_config', '_funcs', '_make', '_next_gen', '_version_info', 'abc', 'collections', 'contextlib', 'converters', 'copy', 'enum', 'exceptions', 'functools', 'inspect', 'linecache', 'operator', 'platform', 're', 'sys', 'threading', 'types', 'typing', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\attr'],2024-01-15 04:51:12,13
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / attrs,['attr'],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\attrs'],2024-01-15 04:51:13,6
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / babel,"['StringIO', '__future__', 'array', 'ast', 'babel', 'bisect', 'cPickle', 'cStringIO', 'cdecimal', 'codecs', 'collections', 'copy', 'datetime', 'decimal', 'gettext', 'io', 'itertools', 'locale', 'os', 'pickle', 'pytz', 're', 'sys', 'textwrap', 'threading', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\babel'],2024-01-15 04:51:13,12
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / certifi,"['argparse', 'certifi', 'core', 'importlib', 'os', 'sys', 'types', 'typing']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\certifi'],2024-01-15 04:51:14,3
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / charset_normalizer,"['_multibytecodec', 'api', 'assets', 'cd', 'charset_normalizer', 'codecs', 'collections', 'constant', 'encodings', 'functools', 'hashlib', 'importlib', 'json', 'legacy', 'logging', 'md', 'models', 'os', 're', 'typing', 'unicodedata', 'utils', 'version']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\charset_normalizer'],2024-01-15 04:51:14,9
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / clickhouse_cityhash,[],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\clickhouse_cityhash'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / dateutil,"['__future__', '_common', '_version', 'calendar', 'datetime', 'dateutil', 'fractions', 'functools', 'heapq', 'itertools', 'math', 'operator', 're', 'six', 'sys', 'tz', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\dateutil'],2024-01-15 04:51:14,8
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / dotenv,"['IPython', 'abc', 'cli', 'click', 'codecs', 'collections', 'contextlib', 'io', 'ipython', 'json', 'logging', 'main', 'os', 'parser', 're', 'shlex', 'shutil', 'subprocess', 'sys', 'tempfile', 'typing', 'variables', 'version']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\dotenv'],2024-01-15 04:51:14,8
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / environs,"['collections', 'contextlib', 'dj_database_url', 'dj_email_url', 'django_cache_url', 'dotenv', 'functools', 'inspect', 'json', 'logging', 'marshmallow', 'os', 'pathlib', 're', 'types', 'typing', 'urllib']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\environs'],2024-01-15 04:51:14,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / frozenlist,"['_frozenlist', 'collections', 'functools', 'os', 'sys', 'types', 'typing']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\frozenlist'],2024-01-15 04:51:14,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / greenlet,"['__future__', '_greenlet']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\greenlet'],2024-01-15 04:51:14,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / idna,"['bisect', 'codec', 'codecs', 'core', 'intranges', 'package_data', 're', 'typing', 'unicodedata', 'uts46data']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\idna'],2024-01-15 04:51:14,8
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / kiwisolver,['_cext'],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\kiwisolver'],2024-01-15 04:51:14,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / leb128,['typing'],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\leb128'],2024-01-15 04:51:14,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / lz4,"['_version', 'version']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\lz4'],2024-01-15 04:51:14,2
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / magic_filter,"['attrdict', 'functools', 'magic', 'magic_filter', 'operator', 'pkg_resources', 're', 'typing']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\magic_filter'],2024-01-15 04:51:14,6
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / marshmallow,"['__future__', 'abc', 'collections', 'copy', 'datetime', 'decimal', 'email', 'enum', 'functools', 'inspect', 'ipaddress', 'itertools', 'json', 'marshmallow', 'math', 'numbers', 'operator', 'packaging', 'pprint', 're', 'typing', 'uuid', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\marshmallow'],2024-01-15 04:51:14,13
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / multidict,"['_abc', '_compat', '_multidict', '_multidict_py', 'abc', 'array', 'collections', 'os', 'platform', 'sys', 'types']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\multidict'],2024-01-15 04:51:14,5
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / numpy,"['__future__', '_globals', '_version', 'builtins', 'core', 'ctypes', 'enum', 'glob', 'hypothesis', 'json', 'lib', 'matrixlib', 'numpy', 'os', 'pathlib', 'pytest', 'sys', 'tempfile', 'testing', 'version', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\numpy'],2024-01-15 04:51:14,12
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / packaging,"['_elffile', '_manylinux', '_parser', '_structures', '_tokenizer', 'abc', 'ast', 'collections', 'contextlib', 'ctypes', 'dataclasses', 'enum', 'functools', 'importlib', 'itertools', 'logging', 'markers', 'operator', 'os', 'platform', 're', 'specifiers', 'struct', 'subprocess', 'sys', 'sysconfig', 'tags', 'typing', 'urllib', 'utils', 'version', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\packaging'],2024-01-15 04:51:16,13
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / PIL,"['IPython', 'JpegImagePlugin', 'JpegPresets', 'MpoImagePlugin', 'PIL', 'PcxImagePlugin', 'PyQt5', 'PyQt6', 'PySide2', 'PySide6', 'TiffImagePlugin', 'TiffTags', '__future__', '_binary', '_deprecate', '_util', 'array', 'atexit', 'base64', 'builtins', 'calendar', 'cffi', 'codecs', 'collections', 'colorsys', 'copy', 'defusedxml', 'enum', 'features', 'fractions', 'functools', 'io', 'itertools', 'logging', 'math', 'mmap', 'numbers', 'numpy', 'olefile', 'operator', 'os', 'packaging', 'pathlib', 'random', 're', 'shlex', 'shutil', 'struct', 'subprocess', 'sys', 'tempfile', 'time', 'tkinter', 'warnings', 'zlib']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\PIL'],2024-01-15 04:51:16,94
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pip,"['importlib', 'os', 'pip', 'runpy', 'sys', 'typing', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\pip'],2024-01-15 04:51:18,3
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pkg_resources,"['__main__', '_imp', 'collections', 'email', 'errno', 'functools', 'imp', 'importlib', 'inspect', 'io', 'itertools', 'linecache', 'ntpath', 'operator', 'os', 'pkg_resources', 'pkgutil', 'platform', 'plistlib', 'posixpath', 're', 'stat', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'time', 'types', 'warnings', 'zipfile', 'zipimport']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\pkg_resources'],2024-01-15 04:51:18,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pyparsing,"['abc', 'actions', 'collections', 'common', 'contextlib', 'copy', 'core', 'datetime', 'diagram', 'enum', 'exceptions', 'functools', 'helpers', 'html', 'inspect', 'itertools', 'operator', 'os', 'pathlib', 'pdb', 'pprint', 're', 'results', 'string', 'sys', 'testing', 'threading', 'traceback', 'types', 'typing', 'unicode', 'util', 'warnings', 'weakref']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\pyparsing'],2024-01-15 04:51:18,10
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pytz,"['UserDict', 'bisect', 'collections', 'datetime', 'doctest', 'os', 'pkg_resources', 'pprint', 'pytz', 'sets', 'struct', 'sys', 'threading', 'time']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\pytz'],2024-01-15 04:51:18,6
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pytz_deprecation_shim,"['_common', '_exceptions', '_impl', 'backports', 'datetime', 'dateutil', 'pytz', 'sys', 'warnings', 'zoneinfo']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\pytz_deprecation_shim'],2024-01-15 04:51:19,8
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / setuptools,"['_deprecation_warning', '_distutils_hack', '_imp', '_importlib', '_itertools', '_path', '_reqs', 'base64', 'builtins', 'collections', 'configparser', 'contextlib', 'ctypes', 'dis', 'distutils', 'email', 'extern', 'fnmatch', 'functools', 'glob', 'hashlib', 'html', 'http', 'importlib', 'importlib_metadata', 'inspect', 'io', 'itertools', 'json', 'logging', 'marshal', 'monkey', 'numbers', 'numpy', 'operator', 'org', 'os', 'pathlib', 'pickle', 'pkg_resources', 'platform', 'posixpath', 'py34compat', 're', 'setuptools', 'shlex', 'shutil', 'socket', 'subprocess', 'sys', 'tarfile', 'tempfile', 'textwrap', 'tokenize', 'types', 'typing', 'unicodedata', 'urllib', 'warnings', 'winreg', 'zipfile']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\setuptools'],2024-01-15 04:51:19,30
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / sqlalchemy,"['codecs', 'datetime', 'engine', 'inspect', 'inspection', 'logging', 'pool', 're', 'schema', 'sql', 'sqlalchemy', 'sys', 'types', 'util']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\sqlalchemy'],2024-01-15 04:51:20,8
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / tzdata,[],['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\tzdata'],2024-01-15 04:51:21,1
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / tzlocal,"['_winreg', 'backports', 'calendar', 'datetime', 'os', 'pytz_deprecation_shim', 're', 'subprocess', 'sys', 'time', 'tzlocal', 'warnings', 'winreg', 'zoneinfo']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\tzlocal'],2024-01-15 04:51:21,5
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / wheel,"['__future__', 'base64', 'collections', 'csv', 'ctypes', 'email', 'glob', 'hashlib', 'io', 'logging', 'macosx_libfile', 'metadata', 'os', 'pkg_resources', 're', 'setuptools', 'shutil', 'stat', 'sys', 'sysconfig', 'textwrap', 'time', 'typing', 'util', 'vendored', 'warnings', 'wheel', 'wheelfile', 'zipfile']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\wheel'],2024-01-15 04:51:21,8
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / yarl,"['_quoting', '_quoting_c', '_quoting_py', '_url', 'codecs', 'collections', 'functools', 'idna', 'ipaddress', 'math', 'multidict', 'os', 're', 'string', 'sys', 'typing', 'urllib', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\yarl'],2024-01-15 04:51:21,4
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / _distutils_hack,"['importlib', 'os', 'sys', 'traceback', 'warnings']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Lib\\site-packages\\_distutils_hack'],2024-01-15 04:51:21,2
+A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Scripts,"['os', 'site', 'sys']",['A - OLD\\TELEGRAM_OLD\\omutchan-main\\venvs\\Scripts'],2024-01-15 04:51:21,1
+A - OLD / TELEGRAM_OLD / Pinterest bot,[],['A - OLD\\TELEGRAM_OLD\\Pinterest bot'],2024-01-15 04:51:21,1
+A - OLD / TELEGRAM_OLD / pinterest_donwloader,"['bs4', 'concurrent', 'cv2', 'json', 'numpy', 'os', 'pydotmap', 're', 'requests', 'sys', 'tqdm']",['A - OLD\\TELEGRAM_OLD\\pinterest_donwloader'],2024-01-15 04:51:23,1
+A - OLD / TELEGRAM_OLD / PRIZE_bot,"['aiogram', 'asyncio', 'config', 'datetime', 'logging', 'os', 're', 'sqlite3', 'threading', 'time']",['A - OLD\\TELEGRAM_OLD\\PRIZE_bot'],2024-01-15 04:51:23,3
+A - OLD / TELEGRAM_OLD / pyuserbot-master,"['PIL', 'asyncio', 'configparser', 'download', 'gtts', 'io', 'math', 'os', 'pathlib', 'platform', 'pyrogram', 'random', 'requests', 'shutil', 'socket', 'sqlite3', 'string', 'struct', 'subprocess', 'sys', 'time', 'userbot', 'utils']",['A - OLD\\TELEGRAM_OLD\\pyuserbot-master'],2024-01-15 04:51:23,3
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram,"['aiogram', 'data', 'filters', 'handlers', 'loader', 'models']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / data,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\data'],2024-01-15 04:50:41,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / filters,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\filters'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\handlers'],2024-01-15 04:51:23,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / errors,"['aiogram', 'logging']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\handlers\\errors'],2024-01-15 04:50:41,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / groups,"['aiogram', 'loader']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\handlers\\groups'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / supergroups,"['aiogram', 'data', 'keyboards', 'loader', 'logging', 'models', 'peewee', 'utils']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\handlers\\supergroups'],2024-01-15 04:51:23,6
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / users,"['aiogram', 'data', 'keyboards', 'loader', 'models', 'utils']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\handlers\\users'],2024-01-15 04:51:23,6
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / keyboards,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\keyboards'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / keyboards / inline,['aiogram'],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\keyboards\\inline'],2024-01-15 04:51:23,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / models,"['datetime', 'peewee', 'utils']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\models'],2024-01-15 04:51:23,4
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / utils / db_api,"['peewee', 'sqlite']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\utils\\db_api'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / utils / misc,['logging'],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram\\utils\\misc'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old,"['aiogram', 'data', 'filters', 'handlers', 'loader', 'models']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / data,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\data'],2024-01-15 04:50:41,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / filters,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\filters'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\handlers'],2024-01-15 04:51:23,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / errors,"['aiogram', 'logging']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\handlers\\errors'],2024-01-15 04:50:41,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / groups,"['aiogram', 'loader']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\handlers\\groups'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / supergroups,"['aiogram', 'data', 'keyboards', 'loader', 'logging', 'models', 'peewee', 'utils']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\handlers\\supergroups'],2024-01-15 04:51:23,6
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / users,"['aiogram', 'data', 'keyboards', 'loader', 'models', 'utils']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\handlers\\users'],2024-01-15 04:51:23,6
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / keyboards,[],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\keyboards'],2024-01-15 04:50:41,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / keyboards / inline,['aiogram'],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\keyboards\\inline'],2024-01-15 04:51:23,1
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / models,"['datetime', 'peewee', 'utils']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\models'],2024-01-15 04:51:23,4
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / utils / db_api,"['peewee', 'sqlite']",['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\utils\\db_api'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / utils / misc,['logging'],['A - OLD\\TELEGRAM_OLD\\subscribebot_aiogram\\subscribebot_aiogram_old\\utils\\misc'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / Telebot_Video_Donwloader,"['bs4', 'fake_useragent', 'logging', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'telebot', 'time', 'youtube_dl']",['A - OLD\\TELEGRAM_OLD\\Telebot_Video_Donwloader'],2024-01-15 04:51:23,5
+A - OLD / TELEGRAM_OLD / Telebot_Video_Donwloader / videodonwloader / videodonwloader,"['itemadapter', 'scrapy']",['A - OLD\\TELEGRAM_OLD\\Telebot_Video_Donwloader\\videodonwloader\\videodonwloader'],2024-01-15 04:50:41,5
+A - OLD / TELEGRAM_OLD / Telebot_Video_Donwloader / videodonwloader / videodonwloader / spiders,['scrapy'],['A - OLD\\TELEGRAM_OLD\\Telebot_Video_Donwloader\\videodonwloader\\videodonwloader\\spiders'],2024-01-15 04:51:23,2
+A - OLD / TELEGRAM_OLD / TGPars-main,"['configparser', 'csv', 'os', 'pandas', 'random', 'requests', 'sys', 'telethon', 'time', 'traceback']",['A - OLD\\TELEGRAM_OLD\\TGPars-main'],2024-01-15 04:51:23,4
+A - OLD / TELEGRAM_OLD / TikTok Bot by @its_niks,"['aiogram', 'configparser', 'datetime', 'db', 'keyboards', 'os', 're', 'requests', 'sqlite3', 'tiktok_downloader', 'time', 'urllib']",['A - OLD\\TELEGRAM_OLD\\TikTok Bot by @its_niks'],2024-01-15 04:51:23,3
+A - OLD / TELEGRAM_OLD / ttsaverbotbot,"['aiogram', 'aiohttp', 'asyncio', 'datetime', 'db', 'io', 'json', 'keyboards', 'os', 'peewee', 're', 'tiktok_dl', 'time', 'typing', 'urllib', 'utils']",['A - OLD\\TELEGRAM_OLD\\ttsaverbotbot'],2024-01-15 04:51:23,5
+A - OLD / TELEGRAM_OLD / Vk_aiogram_Donwloader,"['aiogram', 'asyncio', 'config', 'datetime', 'logging', 'os', 'pickle', 're', 'shutil', 'sqlite3', 'tiktok_downloader', 'youtube_dl', 'yt_dlp']",['A - OLD\\TELEGRAM_OLD\\Vk_aiogram_Donwloader'],2024-01-15 04:51:23,6
+A - OLD / TELEGRAM_OLD / zayavki bot,"['aiogram', 'config', 'datetime', 'pymysql']",['A - OLD\\TELEGRAM_OLD\\zayavki bot'],2024-01-15 04:51:23,3
+A - OLD / TELEGRAM_OLD / _,"['aiogram', 'asyncio', 'colorama', 'dp', 'logging', 'sqlite3', 'typing']",['A - OLD\\TELEGRAM_OLD\\_'],2024-01-15 04:51:23,1
+"A - OLD / TELEGRAM_OLD / скрипт, который даёт доступ в закрытый чат после выполнения условий Подписка на каналы","['aiogram', 'asyncio', 'config', 'sqlite3', 'sqlitehelper', 'time']","['A - OLD\\TELEGRAM_OLD\\скрипт, который даёт доступ в закрытый чат после выполнения условий Подписка на каналы']",2024-01-15 04:51:23,3
+A - OLD / WomanDayOpenAi,"['aiogram', 'asyncio', 'config', 'logging', 'openai', 'random', 'sqlite3', 'time']",['A - OLD\\WomanDayOpenAi'],2024-03-03 00:56:20,3
+ALL comp paramentrs,"['cx_Freeze', 'os', 'platform', 'psutil', 'socket', 'subprocess', 'sys', 'uuid']",['ALL comp paramentrs'],2024-08-07 08:02:15,2
+amnezia-time-tracker,"['PIL', 'app', 'argparse', 'datetime', 'json', 'os', 'pathlib', 'requests', 'subprocess', 'sys', 'typing', 'uvicorn']",['amnezia-time-tracker'],2025-08-06 13:58:41,9
+amnezia-time-tracker / app,"['app', 'collections', 'contextlib', 'fastapi', 'starlette', 'time', 'typing', 'uvicorn']",['amnezia-time-tracker\\app'],2025-08-06 21:39:34,2
+amnezia-time-tracker / app / api,[],['amnezia-time-tracker\\app\\api'],2025-08-06 10:59:45,1
+amnezia-time-tracker / app / api / v1,"['app', 'datetime', 'fastapi', 'typing']",['amnezia-time-tracker\\app\\api\\v1'],2025-07-31 15:26:14,2
+amnezia-time-tracker / app / api / v1 / endpoints,[],['amnezia-time-tracker\\app\\api\\v1\\endpoints'],2025-07-31 15:26:14,1
+amnezia-time-tracker / app / api / v1 / routers,"['app', 'datetime', 'fastapi', 'os', 'pathlib', 'shutil', 'typing']",['amnezia-time-tracker\\app\\api\\v1\\routers'],2025-08-05 21:42:07,12
+amnezia-time-tracker / app / auth,"['app', 'datetime', 'fastapi', 'jose', 'os', 'passlib', 'secrets', 'typing']",['amnezia-time-tracker\\app\\auth'],2025-07-31 18:55:18,2
+amnezia-time-tracker / app / core,"['app', 'celery', 'constants', 'fastapi', 'functools', 'pydantic_settings', 'secrets', 'starlette', 'threading', 'time', 'typing']",['amnezia-time-tracker\\app\\core'],2025-07-31 15:26:14,9
+amnezia-time-tracker / app / db,"['app', 'connection', 'contextlib', 'dataclasses', 'datetime', 'pydantic', 're', 'sqlite3', 'threading', 'typing', 'unicodedata']",['amnezia-time-tracker\\app\\db'],2025-07-31 15:26:14,9
+amnezia-time-tracker / app / db / migrations,"['app', 'os', 'sqlite3', 'typing']",['amnezia-time-tracker\\app\\db\\migrations'],2025-07-31 15:33:21,6
+amnezia-time-tracker / app / db / repositories,"['app', 'company_repository', 'datetime', 'project_repository', 'time_entry_repository', 'token_repository', 'typing', 'user_repository']",['amnezia-time-tracker\\app\\db\\repositories'],2025-08-05 21:17:22,7
+amnezia-time-tracker / app / middlewares,"['app', 'contextlib', 'fastapi', 'redis', 'starlette', 'time']",['amnezia-time-tracker\\app\\middlewares'],2025-08-05 10:28:33,2
+amnezia-time-tracker / app / models,[],['amnezia-time-tracker\\app\\models'],2025-07-31 15:26:14,1
+amnezia-time-tracker / app / schemas,"['app', 'collections', 'dataclasses', 'datetime', 'pydantic', 're', 'typing']",['amnezia-time-tracker\\app\\schemas'],2025-07-31 15:26:14,9
+amnezia-time-tracker / app / services,"['PIL', 'app', 'cv2', 'dataclasses', 'datetime', 'hashlib', 'json', 'numpy', 'os', 'pathlib', 'time', 'typing']",['amnezia-time-tracker\\app\\services'],2025-07-31 15:26:14,4
+amnezia-time-tracker / app / tasks,"['app', 'datetime', 'email', 'json', 'os', 'smtplib', 'typing']",['amnezia-time-tracker\\app\\tasks'],2025-08-06 13:54:01,4
+amnezia-time-tracker / app / utils,"['PIL', 'app', 'collections', 'colorlog', 'contextlib', 'ctypes', 'dataclasses', 'datetime', 'enum', 'fastapi', 'functools', 'hashlib', 'json', 'logging', 'mimetypes', 'os', 'pathlib', 'pydantic', 're', 'secrets', 'shutil', 'sqlite3', 'sys', 'threading', 'time', 'traceback', 'typing', 'uuid', 'validators']",['amnezia-time-tracker\\app\\utils'],2025-07-31 15:26:14,15
+amnezia-time-tracker / app / workers,[],['amnezia-time-tracker\\app\\workers'],2025-07-31 15:26:14,1
+amnezia-time-tracker / client_desktop,"['PIL', 'aiohttp', 'app', 'asyncio', 'client_desktop', 'contextlib', 'dataclasses', 'datetime', 'enum', 'functools', 'json', 'logging', 'os', 'platform', 'psutil', 'pyautogui', 'pynput', 'requests', 'signal', 'subprocess', 'sys', 'threading', 'time', 'traceback', 'typing', 'uuid']",['amnezia-time-tracker\\client_desktop'],2025-07-31 15:26:14,12
+amnezia-time-tracker / frontend,[],['amnezia-time-tracker\\frontend'],2025-07-31 15:33:04,1
+amnezia-time-tracker / sandbox,[],['amnezia-time-tracker\\sandbox'],2025-07-31 15:40:45,2
+amnezia-time-tracker / scripts,"['argparse', 'datetime', 'json', 'logging', 'pathlib', 'subprocess', 'sys', 'typing']",['amnezia-time-tracker\\scripts'],2025-08-06 12:52:48,1
+amnezia-time-tracker / tests,"['app', 'datetime', 'os', 'pathlib', 'sqlite3', 'sys', 'time', 'traceback']",['amnezia-time-tracker\\tests'],2025-08-06 13:37:33,2
+amnezia-time-tracker / tests / e2e,[],['amnezia-time-tracker\\tests\\e2e'],2025-07-31 15:32:36,1
+amnezia-time-tracker / tests / integration,[],['amnezia-time-tracker\\tests\\integration'],2025-07-31 15:32:47,1
+amnezia-time-tracker / tests / unit,[],['amnezia-time-tracker\\tests\\unit'],2025-07-31 15:32:51,1
+deep_real_time1,"['PIL', 'cv2', 'dlib', 'face_recognition', 'keras', 'numpy', 'pyvirtualcam', 'requests', 'time']",['deep_real_time1'],2024-01-15 04:51:25,14
+deep_real_time1 / age-and-gender-detection-python-main,[],['deep_real_time1\\age-and-gender-detection-python-main'],2024-01-15 04:51:24,2
+deep_real_time1 / Emotion-master,"['cv2', 'keras', 'numpy', 'statistics', 'utils']",['deep_real_time1\\Emotion-master'],2024-01-15 04:51:25,1
+deep_real_time1 / Emotion-master / utils,"['cv2', 'h5py', 'inference', 'keras', 'matplotlib', 'mpl_toolkits', 'numpy', 'os', 'pandas', 'pickle', 'preprocessor', 'random', 'scipy', 'tensorflow', 'utils']",['deep_real_time1\\Emotion-master\\utils'],2024-01-15 04:50:41,7
+deep_real_time1 / python-gender-age-detect-master,"['cv2', 'math', 'sys']",['deep_real_time1\\python-gender-age-detect-master'],2024-01-15 04:51:25,1
+deep_real_time1 / utils,"['cv2', 'h5py', 'inference', 'keras', 'matplotlib', 'mpl_toolkits', 'numpy', 'os', 'pandas', 'pickle', 'preprocessor', 'random', 'scipy', 'tensorflow', 'utils']",['deep_real_time1\\utils'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages,"['StringIO', '__future__', 'abc', 'asyncio', 'atexit', 'cPickle', 'codecs', 'collections', 'configparser', 'contextlib', 'copy', 'ctypes', 'doctest', 'errno', 'functools', 'glob', 'hashlib', 'heapq', 'imp', 'importlib', 'inspect', 'io', 'itertools', 'json', 'jupyter_core', 'logging', 'matplotlib', 'operator', 'os', 'pathlib', 'pathlib2', 'pickle', 'pkgutil', 'pprint', 'pywintypes', 'random', 're', 'shutil', 'socket', 'stat', 'struct', 'sys', 'tempfile', 'textwrap', 'threading', 'time', 'tornado', 'types', 'typing', 'unittest', 'warnings', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages'],2024-01-15 04:51:28,16
+deep_real_time1 / venvs / Lib / site-packages / cmake,"['_version', 'json', 'os', 'skbuild', 'subprocess', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\cmake'],2024-01-15 04:51:28,2
+deep_real_time1 / venvs / Lib / site-packages / colorama,"['ansi', 'ansitowin32', 'atexit', 'contextlib', 'ctypes', 'initialise', 'msvcrt', 'os', 're', 'sys', 'win32', 'winterm']",['deep_real_time1\\venvs\\Lib\\site-packages\\colorama'],2024-01-15 04:51:28,6
+deep_real_time1 / venvs / Lib / site-packages / colorama / tests,"['ansi', 'ansitowin32', 'contextlib', 'contextlib2', 'initialise', 'io', 'mock', 'os', 'sys', 'unittest', 'utils', 'win32', 'winterm']",['deep_real_time1\\venvs\\Lib\\site-packages\\colorama\\tests'],2024-01-15 04:51:28,7
+deep_real_time1 / venvs / Lib / site-packages / contourpy,"['__future__', '_contourpy', 'contourpy', 'math', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\contourpy'],2024-01-15 04:51:28,4
+deep_real_time1 / venvs / Lib / site-packages / contourpy / util,"['__future__', 'abc', 'bokeh', 'contourpy', 'io', 'matplotlib', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\contourpy\\util'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / cv2,"['copy', 'importlib', 'load_config_py2', 'load_config_py3', 'numpy', 'os', 'platform', 'sys', 'version']",['deep_real_time1\\venvs\\Lib\\site-packages\\cv2'],2024-01-15 04:51:28,6
+deep_real_time1 / venvs / Lib / site-packages / cv2 / data,['os'],['deep_real_time1\\venvs\\Lib\\site-packages\\cv2\\data'],2024-01-15 04:51:28,1
+deep_real_time1 / venvs / Lib / site-packages / cv2 / gapi,"['cv2', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\cv2\\gapi'],2024-01-15 04:51:28,1
+deep_real_time1 / venvs / Lib / site-packages / cv2 / mat_wrapper,"['cv2', 'numpy', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\cv2\\mat_wrapper'],2024-01-15 04:51:28,1
+deep_real_time1 / venvs / Lib / site-packages / cv2 / misc,"['cv2', 'version']",['deep_real_time1\\venvs\\Lib\\site-packages\\cv2\\misc'],2024-01-15 04:51:28,2
+deep_real_time1 / venvs / Lib / site-packages / cv2 / utils,"['collections', 'cv2']",['deep_real_time1\\venvs\\Lib\\site-packages\\cv2\\utils'],2024-01-15 04:51:28,1
+deep_real_time1 / venvs / Lib / site-packages / dateutil,"['__future__', '_common', '_version', 'calendar', 'datetime', 'dateutil', 'fractions', 'functools', 'heapq', 'itertools', 'math', 'operator', 're', 'six', 'sys', 'tz', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\dateutil'],2024-01-15 04:51:28,8
+deep_real_time1 / venvs / Lib / site-packages / dateutil / parser,"['__future__', '_parser', 'calendar', 'datetime', 'dateutil', 'decimal', 'functools', 'io', 'isoparser', 're', 'six', 'string', 'time', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\dateutil\\parser'],2024-01-15 04:51:28,3
+deep_real_time1 / venvs / Lib / site-packages / dateutil / tz,"['_common', '_factories', 'bisect', 'collections', 'contextlib', 'ctypes', 'datetime', 'dateutil', 'functools', 'os', 'six', 'struct', 'sys', 'time', 'tz', 'warnings', 'weakref', 'win']",['deep_real_time1\\venvs\\Lib\\site-packages\\dateutil\\tz'],2024-01-15 04:51:28,5
+deep_real_time1 / venvs / Lib / site-packages / dateutil / zoneinfo,"['dateutil', 'io', 'json', 'logging', 'os', 'pkgutil', 'shutil', 'subprocess', 'tarfile', 'tempfile', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\dateutil\\zoneinfo'],2024-01-15 04:51:28,2
+deep_real_time1 / venvs / Lib / site-packages / defusedxml,"['ElementTree', '__future__', 'common', 'gzip', 'importlib', 'io', 'lxml', 'sax', 'sys', 'threading', 'warnings', 'xml', 'xmlrpc', 'xmlrpclib']",['deep_real_time1\\venvs\\Lib\\site-packages\\defusedxml'],2024-01-15 04:51:28,11
+deep_real_time1 / venvs / Lib / site-packages / face_recognition_models,['pkg_resources'],['deep_real_time1\\venvs\\Lib\\site-packages\\face_recognition_models'],2024-01-15 04:51:29,1
+deep_real_time1 / venvs / Lib / site-packages / fastjsonschema,"['collections', 'contextlib', 'decimal', 'draft04', 'draft06', 'draft07', 'exceptions', 'functools', 'generator', 'indent', 'json', 're', 'ref_resolver', 'sys', 'urllib', 'version']",['deep_real_time1\\venvs\\Lib\\site-packages\\fastjsonschema'],2024-01-15 04:51:29,10
+deep_real_time1 / venvs / Lib / site-packages / flatbuffers,"['_version', 'array', 'builder', 'collections', 'compat', 'contextlib', 'enum', 'imp', 'importlib', 'number_types', 'numpy', 'struct', 'sys', 'table', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\flatbuffers'],2024-01-15 04:51:29,10
+deep_real_time1 / venvs / Lib / site-packages / fontTools,"['EasyDialogs', 'cffLib', 'collections', 'feaLib', 'fontTools', 'getopt', 'importlib', 'logging', 'misc', 'os', 'otlLib', 'pathlib', 'pkgutil', 're', 'runpy', 'struct', 'sys', 'time', 'ttLib', 'types', 'unicodedata', 'unicodedata2', 'varLib']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools'],2024-01-15 04:51:29,9
+deep_real_time1 / venvs / Lib / site-packages / fontTools / cffLib,"['argparse', 'array', 'collections', 'doctest', 'fontTools', 'functools', 'io', 'logging', 'operator', 're', 'struct', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\cffLib'],2024-01-15 04:51:29,3
+deep_real_time1 / venvs / Lib / site-packages / fontTools / colorLib,"['collections', 'copy', 'enum', 'errors', 'fontTools', 'functools', 'geometry', 'math', 'pprint', 'sys', 'table_builder', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\colorLib'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / fontTools / config,"['fontTools', 'textwrap']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\config'],2024-01-15 04:51:29,1
+deep_real_time1 / venvs / Lib / site-packages / fontTools / cu2qu,"['argparse', 'cli', 'contextlib', 'cu2qu', 'cython', 'defcon', 'errors', 'fontTools', 'functools', 'logging', 'math', 'multiprocessing', 'os', 'random', 'shutil', 'sys', 'timeit', 'ufo', 'ufoLib2']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\cu2qu'],2024-01-15 04:51:29,7
+deep_real_time1 / venvs / Lib / site-packages / fontTools / designspaceLib,"['__future__', 'collections', 'copy', 'dataclasses', 'fontTools', 'io', 'itertools', 'logging', 'math', 'os', 'posixpath', 'textwrap', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\designspaceLib'],2024-01-15 04:51:29,4
+deep_real_time1 / venvs / Lib / site-packages / fontTools / encodings,"['codecs', 'encodings']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\encodings'],2024-01-15 04:51:29,4
+deep_real_time1 / venvs / Lib / site-packages / fontTools / feaLib,"['argparse', 'collections', 'cython', 'fontTools', 'io', 'itertools', 'logging', 'os', 're', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\feaLib'],2024-01-15 04:51:29,10
+deep_real_time1 / venvs / Lib / site-packages / fontTools / merge,"['fontTools', 'functools', 'logging', 'operator', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\merge'],2024-01-15 04:51:29,9
+deep_real_time1 / venvs / Lib / site-packages / fontTools / misc,"['__future__', '__pypy__', 'ast', 'binascii', 'calendar', 'collections', 'contextlib', 'cython', 'dataclasses', 'datetime', 'decimal', 'doctest', 'enum', 'fontTools', 'functools', 'io', 'itertools', 'logging', 'lxml', 'math', 'numbers', 'operator', 'os', 'psOperators', 're', 'roundTools', 'shutil', 'string', 'struct', 'sympy', 'sys', 'tempfile', 'textTools', 'time', 'timeit', 'types', 'typing', 'unittest', 'warnings', 'xattr', 'xml']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\misc'],2024-01-15 04:51:29,33
+deep_real_time1 / venvs / Lib / site-packages / fontTools / misc / plistlib,"['base64', 'collections', 'datetime', 'fontTools', 'functools', 'io', 'numbers', 're', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\misc\\plistlib'],2024-01-15 04:51:29,1
+deep_real_time1 / venvs / Lib / site-packages / fontTools / mtiLib,"['argparse', 'contextlib', 'fontTools', 'logging', 'operator', 'os', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\mtiLib'],2024-01-15 04:51:29,2
+deep_real_time1 / venvs / Lib / site-packages / fontTools / otlLib,"['collections', 'copy', 'fontTools', 'functools', 'logging', 'os']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\otlLib'],2024-01-15 04:51:29,4
+deep_real_time1 / venvs / Lib / site-packages / fontTools / otlLib / optimize,"['argparse', 'collections', 'doctest', 'fontTools', 'functools', 'itertools', 'logging', 'math', 'os', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\otlLib\\optimize'],2024-01-15 04:51:29,3
+deep_real_time1 / venvs / Lib / site-packages / fontTools / pens,"['AppKit', 'PIL', 'PyQt5', 'Quartz', 'argparse', 'array', 'collections', 'ctypes', 'cython', 'doctest', 'fontTools', 'freetype', 'hashlib', 'math', 'matplotlib', 'numpy', 'operator', 'os', 'platform', 'pprint', 'reportlab', 'subprocess', 'sys', 'typing', 'wx']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\pens'],2024-01-15 04:51:29,28
+deep_real_time1 / venvs / Lib / site-packages / fontTools / qu2cu,"['argparse', 'cli', 'collections', 'cython', 'fontTools', 'logging', 'math', 'os', 'qu2cu', 'random', 'sys', 'timeit', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\qu2cu'],2024-01-15 04:51:29,5
+deep_real_time1 / venvs / Lib / site-packages / fontTools / subset,"['__future__', 'array', 'collections', 'fontTools', 'functools', 'itertools', 'logging', 'lxml', 'os', 're', 'struct', 'sys', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\subset'],2024-01-15 04:51:29,5
+deep_real_time1 / venvs / Lib / site-packages / fontTools / svgLib,['path'],['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\svgLib'],2024-01-15 04:51:29,1
+deep_real_time1 / venvs / Lib / site-packages / fontTools / svgLib / path,"['arc', 'fontTools', 'math', 'parser', 're', 'shapes']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\svgLib\\path'],2024-01-15 04:51:29,4
+deep_real_time1 / venvs / Lib / site-packages / fontTools / t1Lib,"['Carbon', 'Res', 'fontTools', 'os', 're']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\t1Lib'],2024-01-15 04:51:29,1
+deep_real_time1 / venvs / Lib / site-packages / fontTools / ttLib,"['abc', 'argparse', 'array', 'brotli', 'brotlicffi', 'collections', 'contextlib', 'copy', 'doctest', 'fontTools', 'importlib', 'io', 'itertools', 'logging', 'os', 'pathops', 're', 'struct', 'sys', 'tables', 'time', 'traceback', 'types', 'typing', 'zlib', 'zopfli']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\ttLib'],2024-01-15 04:51:29,11
+deep_real_time1 / venvs / Lib / site-packages / fontTools / ttLib / tables,"['BitmapGlyphMetrics', 'DefaultTable', 'E_B_D_T_', 'T_S_I_V_', 'UserList', '__future__', 'array', 'base64', 'bisect', 'collections', 'copy', 'dataclasses', 'doctest', 'enum', 'fontTools', 'functools', 'gzip', 'io', 'itertools', 'json', 'logging', 'lz4', 'math', 'numbers', 'os', 'otBase', 'otConverters', 'otData', 'otTables', 'pdb', 're', 'sbixGlyph', 'sbixStrike', 'struct', 'sys', 'traceback', 'typing', 'uharfbuzz', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\ttLib\\tables'],2024-01-15 04:51:29,97
+deep_real_time1 / venvs / Lib / site-packages / fontTools / ufoLib,"['__future__', 'calendar', 'collections', 'copy', 'doctest', 'enum', 'fontTools', 'fs', 'functools', 'io', 'logging', 'os', 'warnings', 'xml', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\ufoLib'],2024-01-15 04:51:30,11
+deep_real_time1 / venvs / Lib / site-packages / fontTools / unicodedata,"['bisect', 'fontTools', 're', 'unicodedata', 'unicodedata2']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\unicodedata'],2024-01-15 04:51:30,5
+deep_real_time1 / venvs / Lib / site-packages / fontTools / varLib,"['__future__', 'argparse', 'cff', 'collections', 'copy', 'cython', 'doctest', 'enum', 'errors', 'fontTools', 'functools', 'glyphsLib', 'io', 'itertools', 'json', 'logging', 'math', 'matplotlib', 'mpl_toolkits', 'munkres', 'numbers', 'numpy', 'operator', 'os', 'otlLib', 'pprint', 're', 'scipy', 'sys', 'textwrap', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\varLib'],2024-01-15 04:51:30,16
+deep_real_time1 / venvs / Lib / site-packages / fontTools / varLib / instancer,"['argparse', 'collections', 'contextlib', 'copy', 'dataclasses', 'enum', 'featureVars', 'fontTools', 'functools', 'logging', 'os', 're', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\varLib\\instancer'],2024-01-15 04:51:30,5
+deep_real_time1 / venvs / Lib / site-packages / fontTools / voltLib,"['fontTools', 'io', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\fontTools\\voltLib'],2024-01-15 04:51:30,5
+deep_real_time1 / venvs / Lib / site-packages / gast,"['ast', 'ast2', 'ast3', 'astn', 'gast', 'inspect', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\gast'],2024-01-15 04:51:30,5
+deep_real_time1 / venvs / Lib / site-packages / google / auth,"['__future__', 'abc', 'base64', 'cachetools', 'calendar', 'collections', 'copy', 'datetime', 'google', 'io', 'json', 'logging', 'oauth2client', 'os', 'six', 'subprocess']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\auth'],2024-01-15 04:51:30,12
+deep_real_time1 / venvs / Lib / site-packages / google / auth / compute_engine,"['datetime', 'google', 'json', 'logging', 'os', 'six']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\auth\\compute_engine'],2024-01-15 04:51:30,3
+deep_real_time1 / venvs / Lib / site-packages / google / auth / crypt,"['__future__', 'abc', 'cryptography', 'google', 'io', 'json', 'pkg_resources', 'pyasn1', 'pyasn1_modules', 'rsa', 'six']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\auth\\crypt'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / google / auth / transport,"['__future__', 'abc', 'certifi', 'functools', 'google', 'grpc', 'logging', 'requests', 'six', 'socket', 'urllib3']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\auth\\transport'],2024-01-15 04:51:30,5
+deep_real_time1 / venvs / Lib / site-packages / google / oauth2,"['copy', 'datetime', 'google', 'io', 'json', 'six']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\oauth2'],2024-01-15 04:51:30,5
+deep_real_time1 / venvs / Lib / site-packages / google / protobuf,"['base64', 'binascii', 'collections', 'encodings', 'google', 'hashlib', 'io', 'json', 'math', 'operator', 'os', 're', 'sys', 'threading', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\protobuf'],2024-01-15 04:51:30,26
+deep_real_time1 / venvs / Lib / site-packages / google / protobuf / compiler,['google'],['deep_real_time1\\venvs\\Lib\\site-packages\\google\\protobuf\\compiler'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / google / protobuf / internal,"['calendar', 'collections', 'copy', 'copyreg', 'ctypes', 'datetime', 'functools', 'gc', 'google', 'importlib', 'io', 'math', 'numbers', 'os', 'pickle', 're', 'struct', 'sys', 'types', 'typing', 'unittest', 'uuid', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\google\\protobuf\\internal'],2024-01-15 04:51:30,16
+deep_real_time1 / venvs / Lib / site-packages / google / protobuf / pyext,['google'],['deep_real_time1\\venvs\\Lib\\site-packages\\google\\protobuf\\pyext'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / google / protobuf / util,[],['deep_real_time1\\venvs\\Lib\\site-packages\\google\\protobuf\\util'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / google_auth_oauthlib,"['__future__', 'base64', 'contextlib', 'datetime', 'google', 'google_auth_oauthlib', 'hashlib', 'interactive', 'json', 'logging', 'random', 'requests_oauthlib', 'secrets', 'socket', 'string', 'webbrowser', 'wsgiref']",['deep_real_time1\\venvs\\Lib\\site-packages\\google_auth_oauthlib'],2024-01-15 04:51:30,4
+deep_real_time1 / venvs / Lib / site-packages / google_auth_oauthlib / tool,"['click', 'google_auth_oauthlib', 'json', 'os']",['deep_real_time1\\venvs\\Lib\\site-packages\\google_auth_oauthlib\\tool'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / grpc,"['__future__', '_typing', 'abc', 'collections', 'concurrent', 'contextlib', 'contextvars', 'copy', 'datetime', 'enum', 'functools', 'grpc', 'grpc_health', 'grpc_reflection', 'grpc_tools', 'inspect', 'logging', 'os', 'sys', 'threading', 'time', 'traceback', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\grpc'],2024-01-15 04:51:30,13
+deep_real_time1 / venvs / Lib / site-packages / grpc / aio,"['_base_call', '_base_channel', '_base_server', '_call', '_channel', '_interceptor', '_metadata', '_server', '_typing', '_utils', 'abc', 'asyncio', 'collections', 'concurrent', 'enum', 'functools', 'grpc', 'inspect', 'logging', 'sys', 'time', 'traceback', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\aio'],2024-01-15 04:51:30,11
+deep_real_time1 / venvs / Lib / site-packages / grpc / beta,"['abc', 'collections', 'grpc', 'threading', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\beta'],2024-01-15 04:51:30,7
+deep_real_time1 / venvs / Lib / site-packages / grpc / experimental,"['copy', 'functools', 'grpc', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\experimental'],2024-01-15 04:51:30,3
+deep_real_time1 / venvs / Lib / site-packages / grpc / experimental / aio,['grpc'],['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\experimental\\aio'],2024-01-15 04:51:30,1
+deep_real_time1 / venvs / Lib / site-packages / grpc / framework,[],['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\framework'],2024-01-15 04:51:30,1
+deep_real_time1 / venvs / Lib / site-packages / grpc / framework / common,['enum'],['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\framework\\common'],2024-01-15 04:51:30,3
+deep_real_time1 / venvs / Lib / site-packages / grpc / framework / foundation,"['abc', 'collections', 'concurrent', 'enum', 'functools', 'grpc', 'logging', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\framework\\foundation'],2024-01-15 04:51:30,7
+deep_real_time1 / venvs / Lib / site-packages / grpc / framework / interfaces,[],['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\framework\\interfaces'],2024-01-15 04:51:30,1
+deep_real_time1 / venvs / Lib / site-packages / grpc / _cython,[],['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\_cython'],2024-01-15 04:51:30,1
+deep_real_time1 / venvs / Lib / site-packages / grpc / _cython / _cygrpc,[],['deep_real_time1\\venvs\\Lib\\site-packages\\grpc\\_cython\\_cygrpc'],2024-01-15 04:51:30,1
+deep_real_time1 / venvs / Lib / site-packages / h5py,"['IPython', '_conv', '_hl', '_selector', 'atexit', 'collections', 'h5', 'h5r', 'h5s', 'h5t', 'h5z', 'numpy', 'os', 'posixpath', 're', 'sys', 'tests', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\h5py'],2024-01-15 04:51:30,4
+deep_real_time1 / venvs / Lib / site-packages / h5py / tests,"['binascii', 'collections', 'common', 'contextlib', 'data_files', 'functools', 'h5py', 'inspect', 'io', 'itertools', 'mpi4py', 'numpy', 'os', 'pathlib', 'pickle', 'platform', 'pytest', 'shlex', 'shutil', 'stat', 'subprocess', 'sys', 'tables', 'tempfile', 'threading', 'unittest', 'warnings', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\h5py\\tests'],2024-01-15 04:51:30,34
+deep_real_time1 / venvs / Lib / site-packages / h5py / tests / data_files,['os'],['deep_real_time1\\venvs\\Lib\\site-packages\\h5py\\tests\\data_files'],2024-01-15 04:51:30,1
+deep_real_time1 / venvs / Lib / site-packages / h5py / tests / test_vds,"['_hl', 'common', 'h5py', 'numpy', 'os', 'shutil', 'tempfile', 'test_highlevel_vds', 'test_lowlevel_vds', 'test_virtual_source']",['deep_real_time1\\venvs\\Lib\\site-packages\\h5py\\tests\\test_vds'],2024-01-15 04:51:30,4
+deep_real_time1 / venvs / Lib / site-packages / h5py / _hl,"['_objects', 'base', 'collections', 'compat', 'contextlib', 'copy', 'dataset', 'datatype', 'dims', 'group', 'h5py_warnings', 'h5t', 'mpi4py', 'numpy', 'operator', 'os', 'posixpath', 'selections', 'sys', 'threading', 'urllib', 'uuid', 'vds', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\h5py\\_hl'],2024-01-15 04:51:30,13
+deep_real_time1 / venvs / Lib / site-packages / idna,"['bisect', 'codec', 'codecs', 'core', 'intranges', 'package_data', 're', 'sys', 'unicodedata', 'uts46data']",['deep_real_time1\\venvs\\Lib\\site-packages\\idna'],2024-01-15 04:51:30,8
+deep_real_time1 / venvs / Lib / site-packages / imutils,"['__future__', 'base64', 'convenience', 'cv2', 'json', 'meta', 'numpy', 'os', 're', 'scipy', 'sys', 'urllib', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\imutils'],2024-01-15 04:51:30,9
+deep_real_time1 / venvs / Lib / site-packages / imutils / face_utils,"['collections', 'cv2', 'facealigner', 'helpers', 'numpy']",['deep_real_time1\\venvs\\Lib\\site-packages\\imutils\\face_utils'],2024-01-15 04:51:30,3
+deep_real_time1 / venvs / Lib / site-packages / imutils / feature,"['__future__', 'convenience', 'cv2', 'dense', 'factories', 'gftt', 'harris', 'helpers', 'numpy', 'rootsift']",['deep_real_time1\\venvs\\Lib\\site-packages\\imutils\\feature'],2024-01-15 04:51:30,7
+deep_real_time1 / venvs / Lib / site-packages / imutils / io,"['os', 'tempfile', 'uuid']",['deep_real_time1\\venvs\\Lib\\site-packages\\imutils\\io'],2024-01-15 04:51:30,2
+deep_real_time1 / venvs / Lib / site-packages / imutils / video,"['Queue', 'convenience', 'count_frames', 'cv2', 'datetime', 'filevideostream', 'fps', 'picamera', 'pivideostream', 'queue', 'sys', 'threading', 'time', 'videostream', 'webcamvideostream']",['deep_real_time1\\venvs\\Lib\\site-packages\\imutils\\video'],2024-01-15 04:51:30,7
+deep_real_time1 / venvs / Lib / site-packages / ipython_genutils,"['__builtin__', '__future__', '_version', 'builtins', 'encoding', 'errno', 'functools', 'locale', 'os', 'platform', 'random', 're', 'shutil', 'string', 'sys', 'tempfile', 'textwrap', 'types', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\ipython_genutils'],2024-01-15 04:51:31,9
+deep_real_time1 / venvs / Lib / site-packages / ipython_genutils / testing,"['nose', 'os', 'py3compat', 'sys', 'tempfile', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\ipython_genutils\\testing'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / ipython_genutils / tests,"['__future__', 'importstring', 'math', 'nose', 'os', 'random', 'sys', 'tempdir', 'tempfile', 'testing']",['deep_real_time1\\venvs\\Lib\\site-packages\\ipython_genutils\\tests'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / isapi,"['cgi', 'imp', 'isapi', 'optparse', 'os', 'pythoncom', 'pywintypes', 'shutil', 'stat', 'sys', 'threading', 'time', 'traceback', 'win32api', 'win32com', 'win32event', 'win32file', 'win32security', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\isapi'],2024-01-15 04:51:31,5
+deep_real_time1 / venvs / Lib / site-packages / isapi / samples,"['isapi', 'optparse', 'os', 'stat', 'sys', 'threading', 'urllib', 'win32api', 'win32con', 'win32event', 'win32file', 'win32traceutil', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\isapi\\samples'],2024-01-15 04:51:31,5
+deep_real_time1 / venvs / Lib / site-packages / isapi / test,"['isapi', 'urllib', 'win32api', 'win32traceutil', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\isapi\\test'],2024-01-15 04:51:31,1
+deep_real_time1 / venvs / Lib / site-packages / jax,"['__future__', 'argparse', 'collections', 'gzip', 'itertools', 'jax', 'json', 'os', 'pathlib', 'tempfile', 'tensorboard_plugin_profile', 'tensorflow', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax'],2024-01-15 04:51:31,30
+deep_real_time1 / venvs / Lib / site-packages / jax / example_libraries,"['collections', 'functools', 'jax', 'operator', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\example_libraries'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / experimental,"['__future__', 'atexit', 'contextlib', 'enum', 'functools', 'inspect', 'io', 'itertools', 'jax', 'logging', 'math', 'numpy', 'operator', 'pickle', 'threading', 'traceback', 'typing', 'warnings', 'weakref', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\experimental'],2024-01-15 04:51:31,14
+deep_real_time1 / venvs / Lib / site-packages / jax / experimental / compilation_cache,"['abc', 'hashlib', 'jax', 'logging', 'os', 're', 'sys', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\experimental\\compilation_cache'],2024-01-15 04:51:31,4
+deep_real_time1 / venvs / Lib / site-packages / jax / experimental / gda_serialization,"['abc', 'absl', 'asyncio', 'functools', 'itertools', 'jax', 'logging', 'math', 'numpy', 'os', 'pathlib', 're', 'tensorstore', 'threading', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\experimental\\gda_serialization'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / experimental / jax2tf,"['absl', 'base64', 'builtins', 'collections', 'contextlib', 'dataclasses', 'enum', 'functools', 'itertools', 'jax', 'math', 'numpy', 'operator', 'opt_einsum', 'os', 're', 'string', 'tensorflow', 'threading', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\experimental\\jax2tf'],2024-01-15 04:51:31,6
+deep_real_time1 / venvs / Lib / site-packages / jax / experimental / sparse,"['__future__', 'abc', 'functools', 'itertools', 'jax', 'math', 'numpy', 'operator', 'scipy', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\experimental\\sparse'],2024-01-15 04:51:31,14
+deep_real_time1 / venvs / Lib / site-packages / jax / image,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\image'],2024-01-15 04:51:31,1
+deep_real_time1 / venvs / Lib / site-packages / jax / interpreters,"['__future__', 'jax', 'os', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\interpreters'],2024-01-15 04:51:31,7
+deep_real_time1 / venvs / Lib / site-packages / jax / lax,"['jax', 'math']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\lax'],2024-01-15 04:51:31,2
+deep_real_time1 / venvs / Lib / site-packages / jax / lib,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\lib'],2024-01-15 04:51:31,2
+deep_real_time1 / venvs / Lib / site-packages / jax / nn,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\nn'],2024-01-15 04:51:31,2
+deep_real_time1 / venvs / Lib / site-packages / jax / numpy,"['jax', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\numpy'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / ops,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\ops'],2024-01-15 04:51:31,1
+deep_real_time1 / venvs / Lib / site-packages / jax / scipy,"['jax', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\scipy'],2024-01-15 04:51:31,6
+deep_real_time1 / venvs / Lib / site-packages / jax / scipy / cluster,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\scipy\\cluster'],2024-01-15 04:51:31,2
+deep_real_time1 / venvs / Lib / site-packages / jax / scipy / interpolate,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\scipy\\interpolate'],2024-01-15 04:51:31,1
+deep_real_time1 / venvs / Lib / site-packages / jax / scipy / optimize,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\scipy\\optimize'],2024-01-15 04:51:31,1
+deep_real_time1 / venvs / Lib / site-packages / jax / scipy / sparse,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\scipy\\sparse'],2024-01-15 04:51:31,2
+deep_real_time1 / venvs / Lib / site-packages / jax / scipy / stats,['jax'],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\scipy\\stats'],2024-01-15 04:51:31,23
+deep_real_time1 / venvs / Lib / site-packages / jax / tools,"['absl', 'ast', 'functools', 'importlib', 'jax', 're', 'tensorflow', 'textwrap']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\tools'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / _src,"['IPython', '__future__', 'abc', 'absl', 'atexit', 'builtins', 'collections', 'colorama', 'contextlib', 'dataclasses', 'difflib', 'enum', 'etils', 'functools', 'gc', 'glob', 'gzip', 'http', 'importlib', 'inspect', 'io', 'iree', 'itertools', 'jax', 'json', 'libtpu', 'logging', 'math', 'matplotlib', 'ml_dtypes', 'numpy', 'operator', 'opt_einsum', 'os', 'pathlib', 'platform', 'pytest', 're', 'rich', 'scipy', 'socketserver', 'string', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'threading', 'time', 'traceback', 'types', 'typing', 'unittest', 'warnings', 'weakref', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src'],2024-01-15 04:51:31,52
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / clusters,"['cloud_tpu_cluster', 'cluster', 'jax', 'logging', 'ompi_cluster', 'os', 're', 'requests', 'slurm_cluster', 'time', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\clusters'],2024-01-15 04:51:31,5
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / debugger,"['IPython', '__future__', 'abc', 'cmd', 'dataclasses', 'functools', 'google', 'html', 'inspect', 'jax', 'numpy', 'os', 'pprint', 'pygments', 'sys', 'threading', 'traceback', 'typing', 'uuid', 'weakref', 'web_pdb']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\debugger'],2024-01-15 04:51:31,6
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / image,"['enum', 'functools', 'jax', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\image'],2024-01-15 04:51:31,2
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / internal_test_util,"['collections', 'itertools', 'jax', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\internal_test_util'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / interpreters,"['__future__', 'collections', 'contextlib', 'dataclasses', 'enum', 'functools', 'inspect', 'io', 'itertools', 'jax', 'logging', 'math', 'numpy', 'operator', 'os', 're', 'sys', 'threading', 'typing', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\interpreters'],2024-01-15 04:51:31,7
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / lax,"['__future__', 'builtins', 'enum', 'functools', 'inspect', 'itertools', 'jax', 'math', 'numpy', 'operator', 'os', 'string', 'typing', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\lax'],2024-01-15 04:51:31,16
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / lib,"['gc', 'jax', 'jaxlib', 'pathlib', 're', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\lib'],2024-01-15 04:51:31,1
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / nn,"['functools', 'jax', 'math', 'numpy', 'operator', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\nn'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / numpy,"['abc', 'builtins', 'collections', 'functools', 'inspect', 'jax', 'math', 'numpy', 'operator', 'opt_einsum', 're', 'textwrap', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\numpy'],2024-01-15 04:51:31,12
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / ops,"['jax', 'numpy', 'sys', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\ops'],2024-01-15 04:51:31,3
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / scipy,"['functools', 'itertools', 'jax', 'numpy', 'operator', 'scipy', 'textwrap', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\scipy'],2024-01-15 04:51:31,6
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / state,"['__future__', 'dataclasses', 'functools', 'jax', 'math', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\state'],2024-01-15 04:51:32,4
+deep_real_time1 / venvs / Lib / site-packages / jax / _src / third_party,[],['deep_real_time1\\venvs\\Lib\\site-packages\\jax\\_src\\third_party'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / jinja2,"['_identifier', '_string', 'ast', 'async_utils', 'asyncio', 'bccache', 'collections', 'compiler', 'constants', 'contextlib', 'debug', 'defaults', 'enum', 'environment', 'errno', 'exceptions', 'ext', 'filters', 'fnmatch', 'functools', 'gettext', 'hashlib', 'idtracking', 'importlib', 'inspect', 'io', 'itertools', 'json', 'keyword', 'lexer', 'loaders', 'logging', 'markupsafe', 'marshal', 'math', 'nodes', 'numbers', 'operator', 'optimizer', 'os', 'parser', 'pickle', 'posixpath', 'pprint', 'random', 're', 'runtime', 'sandbox', 'stat', 'string', 'sys', 'tempfile', 'tests', 'textwrap', 'threading', 'types', 'typing', 'typing_extensions', 'urllib', 'utils', 'visitor', 'weakref', 'zipfile', 'zipimport']",['deep_real_time1\\venvs\\Lib\\site-packages\\jinja2'],2024-01-15 04:51:32,25
+deep_real_time1 / venvs / Lib / site-packages / jsonschema,"['__future__', 'argparse', 'attr', 'collections', 'contextlib', 'datetime', 'fqdn', 'fractions', 'functools', 'heapq', 'idna', 'importlib', 'importlib_metadata', 'importlib_resources', 'ipaddress', 'isoduration', 'itertools', 'json', 'jsonpointer', 'jsonschema', 'numbers', 'operator', 'pkgutil', 'pkgutil_resolve_name', 'pprint', 'pyrsistent', 're', 'reprlib', 'requests', 'rfc3339_validator', 'rfc3986_validator', 'rfc3987', 'sys', 'textwrap', 'traceback', 'typing', 'typing_extensions', 'uri_template', 'urllib', 'uuid', 'warnings', 'webcolors']",['deep_real_time1\\venvs\\Lib\\site-packages\\jsonschema'],2024-01-15 04:51:32,11
+deep_real_time1 / venvs / Lib / site-packages / jsonschema / benchmarks,"['jsonschema', 'pathlib', 'pyperf', 'pyrsistent']",['deep_real_time1\\venvs\\Lib\\site-packages\\jsonschema\\benchmarks'],2024-01-15 04:51:32,3
+deep_real_time1 / venvs / Lib / site-packages / jsonschema / tests,"['__future__', 'atheris', 'attr', 'collections', 'contextlib', 'decimal', 'functools', 'hypothesis', 'importlib', 'importlib_metadata', 'io', 'json', 'jsonschema', 'os', 'pathlib', 'pyrsistent', 're', 'subprocess', 'sys', 'tempfile', 'textwrap', 'unittest', 'urllib', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jsonschema\\tests'],2024-01-15 04:50:41,12
+deep_real_time1 / venvs / Lib / site-packages / jupyterlab_pygments,"['_version', 'pygments', 'style']",['deep_real_time1\\venvs\\Lib\\site-packages\\jupyterlab_pygments'],2024-01-15 04:51:32,3
+deep_real_time1 / venvs / Lib / site-packages / jupyter_core,"['application', 'argcomplete', 'argparse', 'command', 'contextlib', 'copy', 'ctypes', 'datetime', 'errno', 'json', 'logging', 'migrate', 'ntsecuritycon', 'os', 'pathlib', 'paths', 'platform', 'platformdirs', 're', 'shutil', 'signal', 'site', 'stat', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'traitlets', 'typing', 'utils', 'version', 'warnings', 'win32api', 'win32security']",['deep_real_time1\\venvs\\Lib\\site-packages\\jupyter_core'],2024-01-15 04:51:32,8
+deep_real_time1 / venvs / Lib / site-packages / jupyter_core / tests,"['asyncio', 'ctypes', 'json', 'jupyter_core', 'os', 'pkg_resources', 'platformdirs', 'pytest', 're', 'shutil', 'site', 'stat', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'traitlets', 'unittest', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jupyter_core\\tests'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / jupyter_core / utils,"['asyncio', 'atexit', 'errno', 'inspect', 'os', 'pathlib', 'sys', 'threading', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\jupyter_core\\utils'],2024-01-15 04:51:32,1
+deep_real_time1 / venvs / Lib / site-packages / keras,"['abc', 'collections', 'copy', 'csv', 'functools', 'google', 'itertools', 'json', 'keras', 'math', 'numpy', 'os', 'random', 're', 'requests', 'sys', 'tensorboard', 'tensorflow', 'threading', 'time', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras'],2024-01-15 04:51:32,9
+deep_real_time1 / venvs / Lib / site-packages / keras / api,"['keras', 'sys', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\api'],2024-01-15 04:51:33,1
+deep_real_time1 / venvs / Lib / site-packages / keras / api / keras,"['keras', 'sys', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\api\\keras'],2024-01-15 04:51:32,1
+deep_real_time1 / venvs / Lib / site-packages / keras / api / _v1,"['keras', 'sys', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\api\\_v1'],2024-01-15 04:51:32,1
+deep_real_time1 / venvs / Lib / site-packages / keras / api / _v2,"['keras', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\api\\_v2'],2024-01-15 04:51:33,1
+deep_real_time1 / venvs / Lib / site-packages / keras / applications,"['copy', 'json', 'keras', 'math', 'numpy', 'sys', 'tensorflow', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\applications'],2024-01-15 04:51:33,19
+deep_real_time1 / venvs / Lib / site-packages / keras / datasets,"['_pickle', 'gzip', 'json', 'keras', 'numpy', 'os', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\datasets'],2024-01-15 04:51:33,9
+deep_real_time1 / venvs / Lib / site-packages / keras / distribute,"['__future__', 'absl', 'collections', 'contextlib', 'copy', 'functools', 'json', 'keras', 'numpy', 'os', 'portpicker', 'requests', 'tempfile', 'tensorflow', 'threading', 'time', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\distribute'],2024-01-15 04:51:33,23
+deep_real_time1 / venvs / Lib / site-packages / keras / dtensor,"['absl', 'collections', 'contextlib', 'inspect', 'keras', 'numpy', 're', 'tensorflow', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\dtensor'],2024-01-15 04:51:33,7
+deep_real_time1 / venvs / Lib / site-packages / keras / engine,"['abc', 'atexit', 'collections', 'contextlib', 'copy', 'functools', 'google', 'h5py', 'itertools', 'json', 'keras', 'math', 'multiprocessing', 'numpy', 'pandas', 'random', 'scipy', 'tensorflow', 'textwrap', 'threading', 'time', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\engine'],2024-01-15 04:50:41,24
+deep_real_time1 / venvs / Lib / site-packages / keras / estimator,"['tensorflow', 'tensorflow_estimator']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\estimator'],2024-01-15 04:51:33,1
+deep_real_time1 / venvs / Lib / site-packages / keras / export,"['keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\export'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / keras / feature_column,"['__future__', 'collections', 'json', 'keras', 're', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\feature_column'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / keras / initializers,"['keras', 'math', 'tensorflow', 'threading', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\initializers'],2024-01-15 04:51:33,3
+deep_real_time1 / venvs / Lib / site-packages / keras / integration_test,"['os', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\integration_test'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / keras / integration_test / models,"['keras', 'math', 'numpy', 're', 'string', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\integration_test\\models'],2024-01-15 04:50:41,16
+deep_real_time1 / venvs / Lib / site-packages / keras / layers,"['keras', 'numpy', 'tensorflow', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers'],2024-01-15 04:51:33,4
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / activation,"['keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\activation'],2024-01-15 04:51:33,7
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / attention,"['absl', 'collections', 'keras', 'math', 'numpy', 'string', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\attention'],2024-01-15 04:51:33,5
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / convolutional,"['keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\convolutional'],2024-01-15 04:51:33,14
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / core,"['keras', 'numpy', 're', 'sys', 'tensorflow', 'textwrap', 'types', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\core'],2024-01-15 04:51:33,9
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / locally_connected,"['keras', 'numpy', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\locally_connected'],2024-01-15 04:51:33,4
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / merging,"['keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\merging'],2024-01-15 04:51:33,10
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / normalization,"['keras', 'tensorflow', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\normalization'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / pooling,"['functools', 'keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\pooling'],2024-01-15 04:51:33,19
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / preprocessing,"['collections', 'keras', 'numpy', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\preprocessing'],2024-01-15 04:50:41,14
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / regularization,"['keras', 'numbers', 'numpy', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\regularization'],2024-01-15 04:51:33,9
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / reshaping,"['copy', 'functools', 'keras', 'numpy', 'operator', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\reshaping'],2024-01-15 04:51:33,14
+deep_real_time1 / venvs / Lib / site-packages / keras / layers / rnn,"['__future__', 'collections', 'copy', 'functools', 'hashlib', 'keras', 'numbers', 'numpy', 'sys', 'tensorflow', 'types', 'uuid', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\layers\\rnn'],2024-01-15 04:51:33,26
+deep_real_time1 / venvs / Lib / site-packages / keras / legacy_tf_layers,"['__future__', 'contextlib', 'copy', 'functools', 'keras', 'sys', 'tensorflow', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\legacy_tf_layers'],2024-01-15 04:51:33,8
+deep_real_time1 / venvs / Lib / site-packages / keras / metrics,"['abc', 'keras', 'numpy', 'tensorflow', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\metrics'],2024-01-15 04:51:33,8
+deep_real_time1 / venvs / Lib / site-packages / keras / mixed_precision,"['contextlib', 'itertools', 'keras', 'tensorflow', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\mixed_precision'],2024-01-15 04:51:33,6
+deep_real_time1 / venvs / Lib / site-packages / keras / models,"['copy', 'keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\models'],2024-01-15 04:51:33,3
+deep_real_time1 / venvs / Lib / site-packages / keras / optimizers,"['abc', 'absl', 'functools', 'keras', 'platform', 're', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\optimizers'],2024-01-15 04:51:33,15
+deep_real_time1 / venvs / Lib / site-packages / keras / optimizers / legacy,"['abc', 'contextlib', 'functools', 'keras', 'numpy', 'tensorflow', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\optimizers\\legacy'],2024-01-15 04:50:41,10
+deep_real_time1 / venvs / Lib / site-packages / keras / optimizers / schedules,"['abc', 'keras', 'math', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\optimizers\\schedules'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / keras / premade_models,"['keras', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\premade_models'],2024-01-15 04:51:34,3
+deep_real_time1 / venvs / Lib / site-packages / keras / preprocessing,"['PIL', 'collections', 'hashlib', 'json', 'keras', 'multiprocessing', 'numpy', 'os', 'random', 'scipy', 'tensorflow', 'threading', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\preprocessing'],2024-01-15 04:51:34,4
+deep_real_time1 / venvs / Lib / site-packages / keras / protobuf,"['google', 'keras']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\protobuf'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / keras / saving,"['datetime', 'h5py', 'importlib', 'inspect', 'io', 'json', 'keras', 'numpy', 'os', 're', 'tempfile', 'tensorflow', 'threading', 'types', 'warnings', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\saving'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / keras / saving / legacy,"['copy', 'h5py', 'json', 'keras', 'numpy', 'os', 'tensorflow', 'threading', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\saving\\legacy'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / keras / testing_infra,"['absl', 'collections', 'contextlib', 'doctest', 'functools', 'h5py', 'itertools', 'keras', 'numpy', 're', 'tensorflow', 'textwrap', 'threading', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\testing_infra'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / keras / tests,"['collections', 'keras']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\tests'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / keras / utils,"['IPython', 'PIL', 'abc', 'absl', 'binascii', 'codecs', 'collections', 'contextlib', 'copy', 'enum', 'functools', 'hashlib', 'importlib', 'inspect', 'io', 'itertools', 'keras', 'marshal', 'multiprocessing', 'numpy', 'os', 'pathlib', 'platform', 'pydot', 'pydot_ng', 'pydotplus', 'queue', 'random', 're', 'shutil', 'six', 'sys', 'tarfile', 'tempfile', 'tensorflow', 'tensorflow_io', 'threading', 'time', 'traceback', 'types', 'typing', 'urllib', 'warnings', 'weakref', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\utils'],2024-01-15 04:51:34,30
+deep_real_time1 / venvs / Lib / site-packages / keras / utils / legacy,['keras'],['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\utils\\legacy'],2024-01-15 04:51:34,1
+deep_real_time1 / venvs / Lib / site-packages / keras / wrappers,"['copy', 'keras', 'numpy', 'tensorflow', 'types', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\keras\\wrappers'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / kiwisolver,['_cext'],['deep_real_time1\\venvs\\Lib\\site-packages\\kiwisolver'],2024-01-15 04:51:34,1
+deep_real_time1 / venvs / Lib / site-packages / markdown,"['__meta__', 'blockparser', 'blockprocessors', 'codecs', 'collections', 'core', 'extensions', 'functools', 'html', 'htmlentitydefs', 'htmlparser', 'importlib', 'importlib_metadata', 'inlinepatterns', 'itertools', 'json', 'logging', 'markdown', 'optparse', 'os', 'postprocessors', 'preprocessors', 're', 'serializers', 'sys', 'textwrap', 'tidylib', 'treeprocessors', 'unittest', 'util', 'warnings', 'xml', 'yaml']",['deep_real_time1\\venvs\\Lib\\site-packages\\markdown'],2024-01-15 04:51:34,14
+deep_real_time1 / venvs / Lib / site-packages / markdown / extensions,"['attr_list', 'blockprocessors', 'codehilite', 'collections', 'copy', 'html', 'htmlparser', 'inlinepatterns', 'logging', 'markdown', 'postprocessors', 'preprocessors', 'pygments', 're', 'serializers', 'textwrap', 'treeprocessors', 'unicodedata', 'util', 'xml']",['deep_real_time1\\venvs\\Lib\\site-packages\\markdown\\extensions'],2024-01-15 04:51:34,19
+deep_real_time1 / venvs / Lib / site-packages / markupsafe,"['_native', '_speedups', 'functools', 'html', 're', 'string', 'typing', 'typing_extensions']",['deep_real_time1\\venvs\\Lib\\site-packages\\markupsafe'],2024-01-15 04:51:34,2
+deep_real_time1 / venvs / Lib / site-packages / matplotlib,"['IPython', 'PIL', '_color_data', '_enums', '_mathtext', '_mathtext_data', 'abc', 'argparse', 'artist', 'ast', 'atexit', 'backend_bases', 'base64', 'bezier', 'binascii', 'cbook', 'certifi', 'cm', 'collections', 'colors', 'contextlib', 'contourpy', 'copy', 'cycler', 'dataclasses', 'datetime', 'dateutil', 'decimal', 'enum', 'font_manager', 'ft2font', 'functools', 'hashlib', 'importlib', 'inspect', 'io', 'itertools', 'json', 'kiwisolver', 'lines', 'locale', 'logging', 'markers', 'math', 'matplotlib', 'numbers', 'numpy', 'operator', 'os', 'packaging', 'patches', 'path', 'pathlib', 'pprint', 'pyparsing', 're', 'setuptools_scm', 'shutil', 'ssl', 'string', 'struct', 'style', 'subprocess', 'sys', 'tempfile', 'text', 'textpath', 'textwrap', 'threading', 'ticker', 'time', 'transforms', 'types', 'unicodedata', 'urllib', 'uuid', 'warnings', 'weakref', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib'],2024-01-15 04:51:34,76
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / axes,"['_axes', 'builtins', 'collections', 'contextlib', 'functools', 'inspect', 'itertools', 'logging', 'math', 'matplotlib', 'numbers', 'numpy', 'operator', 'types']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\axes'],2024-01-15 04:51:34,4
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / backends,"['IPython', 'PIL', 'PyQt5', 'PyQt6', 'PySide2', 'PySide6', '_afm', '_backend_gtk', '_backend_tk', 'asyncio', 'backend_agg', 'backend_bases', 'backend_cairo', 'backend_gtk3', 'backend_gtk4', 'backend_qt', 'backend_qtagg', 'backend_qtcairo', 'backend_webagg_core', 'backend_wx', 'base64', 'cairo', 'cairocffi', 'codecs', 'contextlib', 'ctypes', 'datetime', 'encodings', 'enum', 'errno', 'fontTools', 'functools', 'gi', 'gzip', 'hashlib', 'io', 'ipykernel', 'itertools', 'json', 'logging', 'math', 'matplotlib', 'mimetypes', 'numpy', 'operator', 'os', 'packaging', 'pathlib', 'platform', 'qt_compat', 'random', 're', 'shiboken2', 'shiboken6', 'shutil', 'signal', 'sip', 'socket', 'string', 'struct', 'subprocess', 'sys', 'tempfile', 'threading', 'time', 'tkinter', 'tornado', 'traceback', 'types', 'uuid', 'warnings', 'weakref', 'webbrowser', 'wx', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\backends'],2024-01-15 04:51:34,34
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / backends / qt_editor,"['copy', 'datetime', 'itertools', 'logging', 'matplotlib', 'numbers']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\backends\\qt_editor'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / cbook,"['bz2', 'collections', 'contextlib', 'functools', 'gc', 'gi', 'gzip', 'itertools', 'math', 'matplotlib', 'numpy', 'operator', 'os', 'pathlib', 'shlex', 'subprocess', 'sys', 'time', 'traceback', 'types', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\cbook'],2024-01-15 04:51:34,1
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / projections,"['geo', 'math', 'matplotlib', 'mpl_toolkits', 'numpy', 'polar', 'types']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\projections'],2024-01-15 04:51:35,3
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / sphinxext,"['contextlib', 'doctest', 'docutils', 'hashlib', 'io', 'itertools', 'jinja2', 'matplotlib', 'os', 'pathlib', 're', 'shutil', 'sphinx', 'sys', 'textwrap', 'traceback']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\sphinxext'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / style,"['contextlib', 'core', 'importlib', 'importlib_resources', 'logging', 'matplotlib', 'os', 'pathlib', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\style'],2024-01-15 04:51:35,2
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / testing,"['PIL', 'atexit', 'compare', 'contextlib', 'exceptions', 'functools', 'hashlib', 'inspect', 'locale', 'logging', 'matplotlib', 'numpy', 'os', 'packaging', 'pandas', 'pathlib', 'pytest', 'shutil', 'string', 'subprocess', 'sys', 'tempfile', 'unittest', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\testing'],2024-01-15 04:51:35,7
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / testing / jpl_units,"['Duration', 'Epoch', 'EpochConverter', 'StrConverter', 'UnitDbl', 'UnitDblConverter', 'UnitDblFormatter', 'datetime', 'functools', 'math', 'matplotlib', 'numpy', 'operator']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\testing\\jpl_units'],2024-01-15 04:51:35,8
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / tests,"['PIL', 'ast', 'base64', 'builtins', 'collections', 'concurrent', 'contextlib', 'contourpy', 'copy', 'cycler', 'datetime', 'dateutil', 'decimal', 'difflib', 'filecmp', 'functools', 'gc', 'gi', 'importlib', 'inspect', 'io', 'itertools', 'json', 'locale', 'logging', 'matplotlib', 'mpl_toolkits', 'multiprocessing', 'numpy', 'os', 'packaging', 'pandas', 'pathlib', 'pickle', 'pickletools', 'pkgutil', 'platform', 'psutil', 'pylab', 'pytest', 're', 'shlex', 'shutil', 'signal', 'subprocess', 'sys', 'tempfile', 'textwrap', 'threading', 'time', 'timeit', 'tkinter', 'types', 'unittest', 'urllib', 'warnings', 'weakref', 'win32api', 'xml']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\tests'],2024-01-15 04:51:35,88
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / tri,"['_triangulation', '_tricontour', '_trifinder', '_triinterpolate', '_tripcolor', '_triplot', '_trirefine', '_tritools', 'matplotlib', 'numpy']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\tri'],2024-01-15 04:51:35,17
+deep_real_time1 / venvs / Lib / site-packages / matplotlib / _api,"['contextlib', 'deprecation', 'functools', 'inspect', 'itertools', 'math', 'matplotlib', 're', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\matplotlib\\_api'],2024-01-15 04:51:35,2
+deep_real_time1 / venvs / Lib / site-packages / mistune,"['block_parser', 'html', 'inline_parser', 'markdown', 'plugins', 're', 'renderers', 'scanner', 'urllib', 'util']",['deep_real_time1\\venvs\\Lib\\site-packages\\mistune'],2024-01-15 04:51:35,7
+deep_real_time1 / venvs / Lib / site-packages / mistune / directives,"['admonition', 'base', 'include', 'mistune', 'os', 're', 'toc']",['deep_real_time1\\venvs\\Lib\\site-packages\\mistune\\directives'],2024-01-15 04:51:35,5
+deep_real_time1 / venvs / Lib / site-packages / mistune / plugins,"['abbr', 'def_list', 'extra', 'footnotes', 'inline_parser', 're', 'table', 'task_lists', 'util']",['deep_real_time1\\venvs\\Lib\\site-packages\\mistune\\plugins'],2024-01-15 04:51:35,7
+deep_real_time1 / venvs / Lib / site-packages / ml_dtypes,"['ml_dtypes', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\ml_dtypes'],2024-01-15 04:51:35,2
+deep_real_time1 / venvs / Lib / site-packages / ml_dtypes / tests,"['absl', 'collections', 'contextlib', 'copy', 'importlib', 'itertools', 'math', 'ml_dtypes', 'numpy', 'pickle', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\ml_dtypes\\tests'],2024-01-15 04:51:35,3
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits,"['os', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits'],2024-01-15 04:51:35,1
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axes_grid1,"['axes_divider', 'axes_grid', 'functools', 'matplotlib', 'mpl_axes', 'numbers', 'numpy', 'parasite_axes']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits\\axes_grid1'],2024-01-15 04:51:35,9
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axes_grid1 / tests,"['itertools', 'matplotlib', 'mpl_toolkits', 'numpy', 'pathlib', 'platform', 'pytest']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits\\axes_grid1\\tests'],2024-01-15 04:51:35,3
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axisartist,"['axis_artist', 'axisline_style', 'axislines', 'floating_axes', 'functools', 'grid_finder', 'grid_helper_curvelinear', 'itertools', 'math', 'matplotlib', 'mpl_toolkits', 'numpy', 'operator']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits\\axisartist'],2024-01-15 04:51:35,12
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axisartist / tests,"['matplotlib', 'mpl_toolkits', 'numpy', 'pathlib', 'pytest', 're']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits\\axisartist\\tests'],2024-01-15 04:51:35,8
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / mplot3d,"['axes3d', 'collections', 'contextlib', 'functools', 'inspect', 'itertools', 'math', 'matplotlib', 'numpy', 'textwrap']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits\\mplot3d'],2024-01-15 04:51:35,5
+deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / mplot3d / tests,"['functools', 'itertools', 'matplotlib', 'mpl_toolkits', 'numpy', 'pathlib', 'pytest']",['deep_real_time1\\venvs\\Lib\\site-packages\\mpl_toolkits\\mplot3d\\tests'],2024-01-15 04:51:35,5
+deep_real_time1 / venvs / Lib / site-packages / numpy,"['__future__', '_globals', '_version', 'builtins', 'core', 'ctypes', 'enum', 'glob', 'hypothesis', 'json', 'lib', 'matrixlib', 'numpy', 'os', 'pathlib', 'pytest', 'sys', 'tempfile', 'testing', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy'],2024-01-15 04:51:35,12
+deep_real_time1 / venvs / Lib / site-packages / numpy / array_api,"['__future__', '_array_object', '_constants', '_creation_functions', '_data_type_functions', '_dtypes', '_elementwise_functions', '_manipulation_functions', '_searching_functions', '_set_functions', '_sorting_functions', '_statistical_functions', '_typing', '_utility_functions', 'collections', 'dataclasses', 'enum', 'linalg', 'numpy', 'operator', 'sys', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\array_api'],2024-01-15 04:51:35,16
+deep_real_time1 / venvs / Lib / site-packages / numpy / array_api / tests,"['_array_object', '_creation_functions', '_dtypes', '_elementwise_functions', 'hypothesis', 'inspect', 'numpy', 'operator', 'pytest', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\array_api\\tests'],2024-01-15 04:51:35,8
+deep_real_time1 / venvs / Lib / site-packages / numpy / compat,"['_inspect', 'collections', 'importlib', 'io', 'itertools', 'numpy', 'os', 'pathlib', 'pickle', 'pickle5', 'py3k', 're', 'sys', 'types']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\compat'],2024-01-15 04:51:35,5
+deep_real_time1 / venvs / Lib / site-packages / numpy / compat / tests,"['numpy', 'os']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\compat\\tests'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / numpy / core,"['_asarray', '_ctypes', '_dtype', '_dummy_thread', '_exceptions', '_machar', '_multiarray_umath', '_string_helpers', '_thread', '_type_aliases', '_ufunc_config', '_umath_tests', 'arrayprint', 'ast', 'builtins', 'code_generators', 'collections', 'contextlib', 'copy', 'copyreg', 'ctypes', 'defchararray', 'distutils', 'einsumfunc', 'fromnumeric', 'function_base', 'functools', 'genapi', 'getlimits', 'glob', 'itertools', 'math', 'memmap', 'mmap', 'multiarray', 'numbers', 'numeric', 'numerictypes', 'numpy', 'numpy_api', 'operator', 'os', 'overrides', 'pathlib', 'pickle', 'platform', 're', 'records', 'setup_common', 'shape_base', 'sys', 'sysconfig', 'textwrap', 'types', 'umath', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\core'],2024-01-15 04:51:35,32
+deep_real_time1 / venvs / Lib / site-packages / numpy / core / tests,"['Cython', '__future__', '_testbuffer', 'array_interface_testing', 'asyncio', 'builtins', 'checks', 'cmath', 'code', 'collections', 'concurrent', 'contextlib', 'copy', 'ctypes', 'cython', 'datetime', 'decimal', 'enum', 'fnmatch', 'fractions', 'functools', 'gc', 'hashlib', 'hypothesis', 'inspect', 'io', 'itertools', 'locale', 'math', 'mem_policy', 'mmap', 'nose', 'numbers', 'numpy', 'operator', 'os', 'pathlib', 'pickle', 'platform', 'pytest', 'pytz', 'random', 're', 'shutil', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'threading', 'traceback', 'types', 'typing', 'unittest', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\core\\tests'],2024-01-15 04:50:41,60
+deep_real_time1 / venvs / Lib / site-packages / numpy / distutils,"['Numeric', '__future__', 'atexit', 'builtins', 'concurrent', 'configparser', 'copy', 'cpuinfo', 'ctypes', 'curses', 'distutils', 'functools', 'glob', 'importlib', 'inspect', 'locale', 'misc_util', 'msvcrt', 'multiprocessing', 'npy_pkg_config', 'numarray', 'numpy', 'optparse', 'os', 'pipes', 'platform', 'pprint', 're', 'setuptools', 'shlex', 'shutil', 'subprocess', 'sys', 'sysconfig', 'system_info', 'tempfile', 'textwrap', 'threading', 'time', 'types', 'warnings', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\distutils'],2024-01-15 04:51:36,26
+deep_real_time1 / venvs / Lib / site-packages / numpy / distutils / command,"['atexit', 'copy', 'distutils', 'glob', 'numpy', 'os', 're', 'setuptools', 'shlex', 'shutil', 'signal', 'subprocess', 'sys', 'textwrap', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\distutils\\command'],2024-01-15 04:51:36,18
+deep_real_time1 / venvs / Lib / site-packages / numpy / distutils / fcompiler,"['__future__', 'base64', 'distutils', 'environment', 'functools', 'glob', 'hashlib', 'numpy', 'os', 'platform', 're', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\distutils\\fcompiler'],2024-01-15 04:51:36,20
+deep_real_time1 / venvs / Lib / site-packages / numpy / distutils / tests,"['ccompiler_opt', 'contextlib', 'distutils', 'io', 'json', 'numpy', 'os', 'pytest', 're', 'shutil', 'subprocess', 'sys', 'tempfile', 'textwrap', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\distutils\\tests'],2024-01-15 04:50:41,16
+deep_real_time1 / venvs / Lib / site-packages / numpy / doc,"['os', 're', 'textwrap']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\doc'],2024-01-15 04:51:36,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / f2py,"['__version__', 'auxfuncs', 'capi_maps', 'copy', 'crackfortran', 'enum', 'fileinput', 'functools', 'math', 'numpy', 'numpy_distutils', 'os', 'pathlib', 'platform', 'pprint', 're', 'shlex', 'shutil', 'string', 'subprocess', 'sys', 'tempfile', 'time', 'types', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\f2py'],2024-01-15 04:51:36,17
+deep_real_time1 / venvs / Lib / site-packages / numpy / f2py / tests,"['atexit', 'collections', 'contextlib', 'copy', 'importlib', 'math', 'numpy', 'os', 'pathlib', 'platform', 'pytest', 're', 'shlex', 'shutil', 'subprocess', 'sys', 'tempfile', 'textwrap', 'threading', 'time', 'traceback', 'uuid']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\f2py\\tests'],2024-01-15 04:50:41,27
+deep_real_time1 / venvs / Lib / site-packages / numpy / fft,"['_pocketfft', 'functools', 'helper', 'numpy', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\fft'],2024-01-15 04:51:36,4
+deep_real_time1 / venvs / Lib / site-packages / numpy / fft / tests,"['numpy', 'pytest', 'queue', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\fft\\tests'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / lib,"['_datasource', '_iotools', '_version', 'arraypad', 'arraysetops', 'arrayterator', 'ast', 'builtins', 'bz2', 'collections', 'contextlib', 'function_base', 'functools', 'gzip', 'histograms', 'index_tricks', 'inspect', 'io', 'itertools', 'lzma', 'math', 'nanfunctions', 'npyio', 'numpy', 'operator', 'os', 'polynomial', 'pydoc', 're', 'shape_base', 'shutil', 'stride_tricks', 'struct', 'sys', 'tempfile', 'textwrap', 'tokenize', 'twodim_base', 'type_check', 'types', 'ufunclike', 'urllib', 'utils', 'warnings', 'weakref', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\lib'],2024-01-15 04:51:36,25
+deep_real_time1 / venvs / Lib / site-packages / numpy / lib / tests,"['bz2', 'ctypes', 'datetime', 'decimal', 'fractions', 'functools', 'gc', 'gzip', 'hypothesis', 'inspect', 'io', 'itertools', 'locale', 'lzma', 'math', 'multiprocessing', 'numbers', 'numpy', 'operator', 'os', 'pathlib', 'pytest', 'random', 're', 'shutil', 'subprocess', 'sys', 'tempfile', 'threading', 'time', 'urllib', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\lib\\tests'],2024-01-15 04:50:41,26
+deep_real_time1 / venvs / Lib / site-packages / numpy / linalg,"['functools', 'linalg', 'numpy', 'operator', 'os', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\linalg'],2024-01-15 04:51:37,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / linalg / tests,"['itertools', 'numpy', 'os', 'pytest', 'resource', 'subprocess', 'sys', 'textwrap', 'traceback', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\linalg\\tests'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / numpy / ma,"['builtins', 'copy', 'core', 'extras', 'functools', 'inspect', 'itertools', 'numpy', 'operator', 're', 'textwrap', 'timeit', 'unittest', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\ma'],2024-01-15 04:51:37,8
+deep_real_time1 / venvs / Lib / site-packages / numpy / ma / tests,"['copy', 'datetime', 'functools', 'io', 'itertools', 'numpy', 'operator', 'pytest', 'sys', 'textwrap', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\ma\\tests'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / numpy / matrixlib,"['ast', 'defmatrix', 'numpy', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\matrixlib'],2024-01-15 04:51:37,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / matrixlib / tests,"['collections', 'numpy', 'pytest', 'textwrap', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\matrixlib\\tests'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / numpy / polynomial,"['_polybase', 'abc', 'chebyshev', 'functools', 'hermite', 'hermite_e', 'laguerre', 'legendre', 'numbers', 'numpy', 'operator', 'os', 'polynomial', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\polynomial'],2024-01-15 04:51:37,10
+deep_real_time1 / venvs / Lib / site-packages / numpy / polynomial / tests,"['decimal', 'fractions', 'functools', 'numbers', 'numpy', 'operator', 'pytest']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\polynomial\\tests'],2024-01-15 04:50:41,10
+deep_real_time1 / venvs / Lib / site-packages / numpy / random,"['_generator', '_mt19937', '_pcg64', '_philox', '_sfc64', 'bit_generator', 'mtrand', 'numpy', 'os', 'platform', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\random'],2024-01-15 04:51:37,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / random / tests,"['Cython', 'cffi', 'ctypes', 'cython', 'functools', 'gc', 'hashlib', 'numba', 'numpy', 'os', 'pickle', 'pytest', 'shutil', 'subprocess', 'sys', 'threading', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\random\\tests'],2024-01-15 04:50:41,11
+deep_real_time1 / venvs / Lib / site-packages / numpy / testing,"['_private', 'collections', 'numpy', 'unittest', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\testing'],2024-01-15 04:51:37,4
+deep_real_time1 / venvs / Lib / site-packages / numpy / testing / tests,"['datetime', 'itertools', 'nose', 'numpy', 'os', 'pytest', 'sys', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\testing\\tests'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / testing / _private,"['collections', 'contextlib', 'difflib', 'distutils', 'doctest', 'functools', 'gc', 'importlib', 'inspect', 'io', 'nose', 'noseclasses', 'nosetester', 'numpy', 'operator', 'os', 'parameterized', 'pathlib', 'platform', 'pprint', 'psutil', 'pytest', 're', 'scipy', 'shutil', 'sys', 'sysconfig', 'tempfile', 'time', 'traceback', 'types', 'unittest', 'utils', 'warnings', 'win32pdh']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\testing\\_private'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / numpy / tests,"['ast', 'collections', 'ctypes', 'importlib', 'numpy', 'os', 'pathlib', 'pkgutil', 'pytest', 're', 'subprocess', 'sys', 'sysconfig', 'textwrap', 'tokenize', 'types', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\tests'],2024-01-15 04:50:41,9
+deep_real_time1 / venvs / Lib / site-packages / numpy / typing,"['__future__', 'collections', 'mypy', 'numpy', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\typing'],2024-01-15 04:51:37,3
+deep_real_time1 / venvs / Lib / site-packages / numpy / typing / tests,"['__future__', '_pytest', 'collections', 'copy', 'importlib', 'itertools', 'mypy', 'numpy', 'os', 'pathlib', 'pickle', 'pytest', 're', 'shutil', 'sys', 'types', 'typing', 'typing_extensions', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\typing\\tests'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / numpy / _pyinstaller,"['PyInstaller', 'numpy', 'pathlib', 'pytest', 'subprocess']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\_pyinstaller'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / numpy / _typing,"['__future__', '_array_like', '_char_codes', '_dtype_like', '_generic_alias', '_nbit', '_nested_sequence', '_scalars', '_shape', '_ufunc', 'collections', 'numpy', 're', 'sys', 'textwrap', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\numpy\\_typing'],2024-01-15 04:51:37,12
+deep_real_time1 / venvs / Lib / site-packages / oauthlib,"['blinker', 'collections', 'datetime', 'jwt', 'logging', 'random', 're', 'secrets', 'time', 'urllib']",['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib'],2024-01-15 04:51:38,4
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth1,['rfc5849'],['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\oauth1'],2024-01-15 04:51:38,1
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth1 / rfc5849,"['base64', 'binascii', 'hashlib', 'hmac', 'ipaddress', 'jwt', 'logging', 'oauthlib', 'urllib', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\oauth1\\rfc5849'],2024-01-15 04:51:38,6
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth2,"['rfc6749', 'rfc8628']",['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\oauth2'],2024-01-15 04:51:38,1
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth2 / rfc6749,"['binascii', 'datetime', 'endpoints', 'errors', 'functools', 'hashlib', 'hmac', 'inspect', 'json', 'logging', 'oauthlib', 'os', 'sys', 'time', 'tokens', 'urllib', 'utils', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\oauth2\\rfc6749'],2024-01-15 04:51:38,6
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth2 / rfc8628,['logging'],['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\oauth2\\rfc8628'],2024-01-15 04:51:38,1
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / openid,['connect'],['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\openid'],2024-01-15 04:51:38,1
+deep_real_time1 / venvs / Lib / site-packages / oauthlib / openid / connect,[],['deep_real_time1\\venvs\\Lib\\site-packages\\oauthlib\\openid\\connect'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera,"['blurry', 'collections', 'color_space', 'colorama', 'compression', 'cv2', 'dataclasses', 'display', 'distortion', 'enum', 'importlib', 'io', 'matplotlib', 'mono', 'numpy', 'reproject', 'save', 'stereo', 'targets', 'threaded_camera', 'threading', 'time', 'undistort']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera'],2024-01-15 04:51:38,8
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / bin,"['BaseHTTPServer', 'argparse', 'colorama', 'cv2', 'glob', 'numpy', 'opencv_camera', 'os', 'platform', 're', 'socket', 'struct', 'sys', 'threading', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\bin'],2024-01-15 04:51:38,5
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / display,"['color_space', 'cv2', 'dataclasses', 'numpy', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\display'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / mono,"['color_space', 'colorama', 'cv2', 'dataclasses', 'numpy', 'pathlib', 'time', 'undistort', 'yaml']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\mono'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / parameters,"['math', 'utils']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\parameters'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / save,"['cv2', 'dataclasses', 'numpy', 'os', 'platform', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\save'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / stereo,"['camera', 'color_space', 'colorama', 'cv2', 'dataclasses', 'mono', 'numpy', 'pathlib', 'save', 'time', 'undistort', 'yaml']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\stereo'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / opencv_camera / targets,"['cv2', 'numpy', 'opencv_camera']",['deep_real_time1\\venvs\\Lib\\site-packages\\opencv_camera\\targets'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / opt_einsum,"['_version', 'collections', 'concurrent', 'contextlib', 'contract', 'decimal', 'functools', 'heapq', 'itertools', 'json', 'math', 'numbers', 'numpy', 'parser', 'path_random', 'paths', 'random', 'sharing', 'threading', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\opt_einsum'],2024-01-15 04:51:38,9
+deep_real_time1 / venvs / Lib / site-packages / opt_einsum / backends,"['cupy', 'dispatch', 'functools', 'importlib', 'jax', 'numpy', 'operator', 'parser', 'sharing', 'tensorflow', 'theano', 'torch']",['deep_real_time1\\venvs\\Lib\\site-packages\\opt_einsum\\backends'],2024-01-15 04:51:38,8
+deep_real_time1 / venvs / Lib / site-packages / opt_einsum / tests,"['autograd', 'collections', 'concurrent', 'cupy', 'itertools', 'jax', 'multiprocessing', 'numpy', 'opt_einsum', 'os', 'pytest', 'sys', 'tensorflow', 'theano', 'torch', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\opt_einsum\\tests'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / packaging,"['_elffile', '_manylinux', '_parser', '_structures', '_tokenizer', 'abc', 'ast', 'collections', 'contextlib', 'ctypes', 'dataclasses', 'enum', 'functools', 'importlib', 'itertools', 'logging', 'markers', 'operator', 'os', 'platform', 're', 'specifiers', 'struct', 'subprocess', 'sys', 'sysconfig', 'tags', 'typing', 'urllib', 'utils', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\packaging'],2024-01-15 04:51:38,13
+deep_real_time1 / venvs / Lib / site-packages / pasta,['pasta'],['deep_real_time1\\venvs\\Lib\\site-packages\\pasta'],2024-01-15 04:51:38,1
+deep_real_time1 / venvs / Lib / site-packages / pasta / augment,"['__future__', 'ast', 'copy', 'logging', 'pasta', 'six', 'textwrap', 'traceback', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\pasta\\augment'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / pasta / base,"['__future__', 'abc', 'ast', 'collections', 'contextlib', 'difflib', 'functools', 'itertools', 'os', 'pasta', 're', 'six', 'sys', 'textwrap', 'tokenize', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\pasta\\base'],2024-01-15 04:50:41,15
+deep_real_time1 / venvs / Lib / site-packages / PIL,"['IPython', 'JpegImagePlugin', 'JpegPresets', 'MpoImagePlugin', 'PIL', 'PcxImagePlugin', 'PyQt5', 'PyQt6', 'PySide2', 'PySide6', 'TiffImagePlugin', 'TiffTags', '__future__', '_binary', '_deprecate', '_util', 'array', 'atexit', 'base64', 'builtins', 'calendar', 'cffi', 'codecs', 'collections', 'colorsys', 'copy', 'defusedxml', 'enum', 'features', 'fractions', 'functools', 'io', 'itertools', 'logging', 'math', 'mmap', 'numbers', 'numpy', 'olefile', 'operator', 'os', 'packaging', 'pathlib', 'random', 're', 'shlex', 'shutil', 'struct', 'subprocess', 'sys', 'tempfile', 'time', 'tkinter', 'warnings', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\PIL'],2024-01-15 04:51:38,95
+deep_real_time1 / venvs / Lib / site-packages / pip,"['importlib', 'os', 'pip', 'runpy', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal,"['collections', 'configparser', 'dataclasses', 'datetime', 'functools', 'hashlib', 'importlib', 'itertools', 'json', 'locale', 'logging', 'optparse', 'os', 'pathlib', 'pip', 're', 'shutil', 'site', 'sys', 'sysconfig', 'textwrap', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal'],2024-01-15 04:51:38,9
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / cli,"['contextlib', 'functools', 'importlib', 'itertools', 'locale', 'logging', 'optparse', 'os', 'pip', 'shutil', 'ssl', 'subprocess', 'sys', 'textwrap', 'time', 'traceback', 'truststore', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\cli'],2024-01-15 04:51:38,12
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / commands,"['collections', 'difflib', 'errno', 'hashlib', 'importlib', 'json', 'locale', 'logging', 'operator', 'optparse', 'os', 'pip', 'shutil', 'site', 'subprocess', 'sys', 'textwrap', 'types', 'typing', 'xmlrpc']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\commands'],2024-01-15 04:51:38,18
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / distributions,"['abc', 'logging', 'pip', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\distributions'],2024-01-15 04:51:38,5
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / index,"['collections', 'email', 'enum', 'functools', 'html', 'itertools', 'json', 'logging', 'mimetypes', 'optparse', 'os', 'pathlib', 'pip', 're', 'sources', 'typing', 'urllib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\index'],2024-01-15 04:51:38,4
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / locations,"['base', 'distutils', 'functools', 'logging', 'os', 'pathlib', 'pip', 'site', 'sys', 'sysconfig', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\locations'],2024-01-15 04:51:38,4
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / metadata,"['_json', 'base', 'contextlib', 'csv', 'email', 'functools', 'importlib', 'json', 'logging', 'os', 'pathlib', 'pip', 're', 'sys', 'typing', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\metadata'],2024-01-15 04:51:38,4
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / models,"['dataclasses', 'functools', 'itertools', 'json', 'logging', 'os', 'pip', 'posixpath', 're', 'sys', 'typing', 'urllib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\models'],2024-01-15 04:51:38,12
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / network,"['_ssl', 'bisect', 'contextlib', 'email', 'io', 'ipaddress', 'json', 'keyring', 'logging', 'mimetypes', 'os', 'pip', 'platform', 'shutil', 'ssl', 'subprocess', 'sys', 'tempfile', 'typing', 'urllib', 'warnings', 'xmlrpc', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\network'],2024-01-15 04:51:38,8
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / operations,"['collections', 'logging', 'mimetypes', 'os', 'pip', 'shutil', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\operations'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / req,"['collections', 'enum', 'functools', 'importlib', 'logging', 'optparse', 'os', 'pip', 're', 'req_file', 'req_install', 'req_set', 'shlex', 'shutil', 'sys', 'sysconfig', 'typing', 'urllib', 'uuid', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\req'],2024-01-15 04:51:39,6
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / resolution,"['pip', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\resolution'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / utils,"['_ssl', 'bz2', 'codecs', 'compat', 'contextlib', 'ctypes', 'dataclasses', 'datetime', 'email', 'errno', 'fnmatch', 'functools', 'getopt', 'getpass', 'hashlib', 'io', 'itertools', 'locale', 'logging', 'lzma', 'operator', 'os', 'pip', 'posixpath', 'random', 're', 'shlex', 'shutil', 'site', 'ssl', 'stat', 'string', 'subprocess', 'sys', 'tarfile', 'tempfile', 'textwrap', 'threading', 'types', 'typing', 'urllib', 'warnings', 'wheel', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\utils'],2024-01-15 04:50:41,28
+deep_real_time1 / venvs / Lib / site-packages / pip / _internal / vcs,"['configparser', 'logging', 'os', 'pathlib', 'pip', 're', 'shutil', 'sys', 'typing', 'urllib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_internal\\vcs'],2024-01-15 04:51:39,6
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor,"['StringIO', '__future__', 'abc', 'collections', 'functools', 'glob', 'importlib', 'io', 'itertools', 'operator', 'os', 'struct', 'sys', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor'],2024-01-15 04:51:39,3
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / cachecontrol,"['adapter', 'argparse', 'base64', 'cPickle', 'cache', 'calendar', 'compat', 'controller', 'datetime', 'email', 'filewrapper', 'functools', 'io', 'json', 'logging', 'mmap', 'pickle', 'pip', 're', 'serialize', 'tempfile', 'threading', 'time', 'types', 'urllib', 'urlparse', 'wrapper', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\cachecontrol'],2024-01-15 04:51:39,10
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / certifi,"['argparse', 'core', 'importlib', 'os', 'pip', 'sys', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\certifi'],2024-01-15 04:51:39,3
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / chardet,"['big5freq', 'big5prober', 'chardistribution', 'charsetgroupprober', 'charsetprober', 'codecs', 'codingstatemachine', 'collections', 'cp949prober', 'enums', 'escprober', 'escsm', 'eucjpprober', 'euckrfreq', 'euckrprober', 'euctwfreq', 'euctwprober', 'gb2312freq', 'gb2312prober', 'hebrewprober', 'jisfreq', 'johabfreq', 'johabprober', 'jpcntx', 'langbulgarianmodel', 'langgreekmodel', 'langhebrewmodel', 'langrussianmodel', 'langthaimodel', 'langturkishmodel', 'latin1prober', 'logging', 'mbcharsetprober', 'mbcsgroupprober', 'mbcssm', 'pip', 're', 'sbcharsetprober', 'sbcsgroupprober', 'sjisprober', 'universaldetector', 'utf1632prober', 'utf8prober', 'version']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\chardet'],2024-01-15 04:51:39,41
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / colorama,"['ansi', 'ansitowin32', 'atexit', 'contextlib', 'ctypes', 'initialise', 'os', 're', 'sys', 'win32', 'winterm']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\colorama'],2024-01-15 04:51:39,6
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / distlib,"['ConfigParser', 'HTMLParser', 'Queue', 'StringIO', '__builtin__', '__future__', '_abcoll', '_aix_support', '_frozen_importlib', '_frozen_importlib_external', '_osx_support', 'base64', 'bisect', 'builtins', 'cgi', 'codecs', 'collections', 'compat', 'configparser', 'contextlib', 'csv', 'database', 'datetime', 'distutils', 'dummy_thread', 'dummy_threading', 'email', 'fnmatch', 'glob', 'gzip', 'hashlib', 'html', 'htmlentitydefs', 'http', 'httplib', 'imp', 'importlib', 'io', 'itertools', 'java', 'json', 'logging', 'markers', 'metadata', 'os', 'pkgutil', 'platform', 'posixpath', 'py_compile', 'queue', 're', 'reprlib', 'resources', 'shutil', 'socket', 'ssl', 'stat', 'struct', 'subprocess', 'sys', 'sysconfig', 'tarfile', 'tempfile', 'textwrap', 'thread', 'threading', 'time', 'tokenize', 'types', 'urllib', 'urllib2', 'urlparse', 'util', 'version', 'warnings', 'wheel', 'xmlrpc', 'xmlrpclib', 'zipfile', 'zipimport', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\distlib'],2024-01-15 04:51:39,13
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / distro,"['argparse', 'distro', 'functools', 'json', 'logging', 'os', 're', 'shlex', 'subprocess', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\distro'],2024-01-15 04:51:39,3
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / idna,"['bisect', 'codec', 'codecs', 'core', 'intranges', 'package_data', 're', 'typing', 'unicodedata', 'uts46data']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\idna'],2024-01-15 04:51:39,8
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / msgpack,"['__pypy__', '_cmsgpack', 'collections', 'datetime', 'exceptions', 'ext', 'fallback', 'io', 'os', 'struct', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\msgpack'],2024-01-15 04:51:39,4
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / packaging,"['__about__', '_manylinux', '_structures', 'abc', 'collections', 'contextlib', 'ctypes', 'functools', 'importlib', 'itertools', 'logging', 'markers', 'operator', 'os', 'pip', 'platform', 're', 'specifiers', 'string', 'struct', 'subprocess', 'sys', 'sysconfig', 'tags', 'typing', 'urllib', 'utils', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\packaging'],2024-01-15 04:51:39,11
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pep517,"['_compat', 'argparse', 'build', 'colorlog', 'contextlib', 'curses', 'dirtools', 'envbuild', 'functools', 'importlib', 'importlib_metadata', 'in_process', 'io', 'json', 'logging', 'os', 'pip', 'shutil', 'subprocess', 'sys', 'sysconfig', 'tarfile', 'tempfile', 'threading', 'tomllib', 'wrappers', 'zipfile', 'zipp']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\pep517'],2024-01-15 04:51:39,9
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pkg_resources,"['__future__', '__main__', '_imp', 'collections', 'email', 'errno', 'functools', 'imp', 'importlib', 'inspect', 'io', 'itertools', 'linecache', 'ntpath', 'operator', 'os', 'pip', 'pkgutil', 'platform', 'plistlib', 'posixpath', 're', 'stat', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'time', 'types', 'warnings', 'zipfile', 'zipimport']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\pkg_resources'],2024-01-15 04:51:39,2
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / platformdirs,"['__future__', 'abc', 'api', 'configparser', 'ctypes', 'functools', 'jnius', 'os', 'pathlib', 'pip', 're', 'sys', 'typing', 'version', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\platformdirs'],2024-01-15 04:51:39,8
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pygments,"['argparse', 'codecs', 'docutils', 'importlib', 'importlib_metadata', 'io', 'itertools', 'json', 'locale', 'operator', 'os', 'pip', 're', 'shutil', 'sphinx', 'sys', 'textwrap', 'time', 'traceback', 'unicodedata']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\pygments'],2024-01-15 04:51:39,16
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pyparsing,"['abc', 'actions', 'collections', 'common', 'contextlib', 'copy', 'core', 'datetime', 'diagram', 'enum', 'exceptions', 'functools', 'helpers', 'html', 'inspect', 'itertools', 'operator', 'os', 'pathlib', 'pdb', 'pprint', 're', 'results', 'string', 'sys', 'testing', 'threading', 'traceback', 'types', 'typing', 'unicode', 'util', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\pyparsing'],2024-01-15 04:51:39,10
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / requests,"['OpenSSL', '__version__', '_internal_utils', 'adapters', 'api', 'auth', 'base64', 'calendar', 'codecs', 'collections', 'compat', 'contextlib', 'cookies', 'copy', 'cryptography', 'datetime', 'dummy_threading', 'encodings', 'exceptions', 'hashlib', 'hooks', 'http', 'io', 'json', 'logging', 'models', 'netrc', 'os', 'pip', 'platform', 're', 'sessions', 'socket', 'ssl', 'status_codes', 'struct', 'structures', 'sys', 'tempfile', 'threading', 'time', 'urllib', 'utils', 'warnings', 'winreg', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\requests'],2024-01-15 04:51:39,18
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / resolvelib,"['collections', 'compat', 'itertools', 'operator', 'providers', 'reporters', 'resolvers', 'structs']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\resolvelib'],2024-01-15 04:51:39,5
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / rich,"['IPython', '__future__', '__main__', '_cell_widths', '_emoji_codes', '_emoji_replace', '_export_format', '_extension', '_inspect', '_log_render', '_loop', '_palettes', '_pick', '_ratio', '_spinners', '_timer', '_windows', '_wrap', 'abc', 'align', 'ansi', 'argparse', 'array', 'ast', 'attr', 'box', 'builtins', 'cells', 'collections', 'color', 'color_triplet', 'colorsys', 'columns', 'configparser', 'console', 'constrain', 'containers', 'contextlib', 'control', 'ctypes', 'dataclasses', 'datetime', 'default_styles', 'emoji', 'enum', 'errors', 'file_proxy', 'fractions', 'functools', 'getpass', 'highlighter', 'html', 'inspect', 'io', 'ipywidgets', 'itertools', 'json', 'jupyter', 'live', 'live_render', 'logging', 'markup', 'marshal', 'math', 'measure', 'mmap', 'operator', 'os', 'padding', 'pager', 'palette', 'panel', 'pathlib', 'pip', 'platform', 'pretty', 'progress_bar', 'protocol', 'pty', 'random', 're', 'region', 'repr', 'rule', 'scope', 'screen', 'segment', 'spinner', 'status', 'style', 'styled', 'syntax', 'sys', 'table', 'terminal_theme', 'text', 'textwrap', 'theme', 'threading', 'time', 'traceback', 'types', 'typing', 'warnings', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\rich'],2024-01-15 04:51:39,75
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / tenacity,"['abc', 'after', 'asyncio', 'before', 'before_sleep', 'concurrent', 'datetime', 'functools', 'inspect', 'logging', 'nap', 'pip', 'random', 're', 'retry', 'stop', 'sys', 'threading', 'time', 'tornado', 'types', 'typing', 'wait', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\tenacity'],2024-01-15 04:51:39,11
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / tomli,"['__future__', '_parser', '_re', '_types', 'collections', 'datetime', 'functools', 're', 'string', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\tomli'],2024-01-15 04:51:39,4
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / urllib3,"['__future__', '_collections', '_version', 'binascii', 'codecs', 'collections', 'connection', 'connectionpool', 'contextlib', 'datetime', 'email', 'errno', 'exceptions', 'fields', 'filepost', 'functools', 'io', 'logging', 'mimetypes', 'os', 'packages', 'poolmanager', 're', 'request', 'response', 'socket', 'ssl', 'sys', 'threading', 'urllib3_secure_extra', 'util', 'warnings', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\urllib3'],2024-01-15 04:51:39,11
+deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / webencodings,"['__future__', 'codecs', 'json', 'labels', 'urllib', 'x_user_defined']",['deep_real_time1\\venvs\\Lib\\site-packages\\pip\\_vendor\\webencodings'],2024-01-15 04:51:40,5
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources,"['__main__', '_imp', 'collections', 'email', 'errno', 'functools', 'imp', 'importlib', 'inspect', 'io', 'itertools', 'linecache', 'ntpath', 'operator', 'os', 'pkg_resources', 'pkgutil', 'platform', 'plistlib', 'posixpath', 're', 'stat', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'time', 'types', 'warnings', 'zipfile', 'zipimport']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources'],2024-01-15 04:51:40,1
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / extern,"['importlib', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\extern'],2024-01-15 04:51:40,1
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor,"['_winreg', 'array', 'collections', 'com', 'contextlib', 'ctypes', 'io', 'itertools', 'os', 'pathlib', 'platform', 'posixpath', 'sys', 'win32api', 'win32com', 'winreg', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\_vendor'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / importlib_resources,"['_common', '_compat', '_itertools', '_legacy', 'abc', 'collections', 'contextlib', 'functools', 'importlib', 'io', 'itertools', 'operator', 'os', 'pathlib', 'sys', 'tempfile', 'types', 'typing', 'warnings', 'zipfile', 'zipp']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\_vendor\\importlib_resources'],2024-01-15 04:51:40,9
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / jaraco,"['collections', 'contextlib', 'functools', 'inspect', 'itertools', 'operator', 'os', 'pkg_resources', 'shutil', 'subprocess', 'tempfile', 'time', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\_vendor\\jaraco'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / more_itertools,"['collections', 'functools', 'heapq', 'itertools', 'math', 'more', 'operator', 'queue', 'random', 'recipes', 'sys', 'time', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\_vendor\\more_itertools'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / packaging,"['__about__', '_manylinux', '_structures', 'abc', 'collections', 'contextlib', 'ctypes', 'functools', 'importlib', 'itertools', 'logging', 'markers', 'operator', 'os', 'pkg_resources', 'platform', 're', 'specifiers', 'string', 'struct', 'subprocess', 'sys', 'sysconfig', 'tags', 'typing', 'urllib', 'utils', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\_vendor\\packaging'],2024-01-15 04:51:40,11
+deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / pyparsing,"['abc', 'actions', 'collections', 'common', 'contextlib', 'copy', 'core', 'datetime', 'diagram', 'enum', 'exceptions', 'functools', 'helpers', 'html', 'inspect', 'itertools', 'operator', 'os', 'pathlib', 'pdb', 'pprint', 're', 'results', 'string', 'sys', 'testing', 'threading', 'traceback', 'types', 'typing', 'unicode', 'util', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\pkg_resources\\_vendor\\pyparsing'],2024-01-15 04:51:40,10
+deep_real_time1 / venvs / Lib / site-packages / platformdirs,"['__future__', 'abc', 'api', 'configparser', 'ctypes', 'functools', 'jnius', 'os', 'pathlib', 'platformdirs', 're', 'sys', 'typing', 'typing_extensions', 'version', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\platformdirs'],2024-01-15 04:51:40,8
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit,"['__future__', 'abc', 'application', 'auto_suggest', 'bisect', 'buffer', 'buffer_mapping', 'cache', 'clipboard', 'collections', 'completion', 'ctypes', 'datetime', 'document', 'enums', 'eventloop', 'filters', 'functools', 'history', 'input', 'inspect', 'interface', 'io', 'key_binding', 'keys', 'layout', 'os', 'output', 'prompt_toolkit', 'pygments', 're', 'renderer', 'search_state', 'selection', 'shlex', 'shortcuts', 'signal', 'six', 'string', 'styles', 'subprocess', 'sys', 'tempfile', 'terminal', 'textwrap', 'threading', 'time', 'token', 'types', 'utils', 'validation', 'wcwidth', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit'],2024-01-15 04:51:40,24
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / clipboard,"['__future__', 'abc', 'base', 'collections', 'in_memory', 'prompt_toolkit', 'pyperclip', 'six']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\clipboard'],2024-01-15 04:51:40,4
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib,[],['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\contrib'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / completers,"['__future__', 'base', 'filesystem', 'os', 'prompt_toolkit', 'six', 'system']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\contrib\\completers'],2024-01-15 04:51:40,4
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / regular_languages,"['__future__', 'compiler', 'prompt_toolkit', 're', 'regex_parser', 'six']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\contrib\\regular_languages'],2024-01-15 04:51:40,6
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / telnet,"['__future__', 'abc', 'application', 'codecs', 'fcntl', 'log', 'logging', 'os', 'prompt_toolkit', 'protocol', 'select', 'server', 'six', 'socket', 'struct', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\contrib\\telnet'],2024-01-15 04:51:40,5
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / validators,"['__future__', 'prompt_toolkit', 'six']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\contrib\\validators'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / eventloop,"['__future__', 'abc', 'asyncio', 'asyncio_base', 'base', 'callbacks', 'codecs', 'ctypes', 'errno', 'fcntl', 'inputhook', 'msvcrt', 'os', 'posix_utils', 'prompt_toolkit', 'select', 'selectors', 'signal', 'six', 'sys', 'terminal', 'threading', 'time', 'utils', 'win32_types']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\eventloop'],2024-01-15 04:50:41,12
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / filters,"['__future__', 'abc', 'base', 'cli', 'collections', 'prompt_toolkit', 'six', 'types', 'utils', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\filters'],2024-01-15 04:51:40,5
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / key_binding,"['__future__', 'abc', 'collections', 'defaults', 'prompt_toolkit', 'registry', 'six', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\key_binding'],2024-01-15 04:51:40,7
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / key_binding / bindings,"['__future__', 'codecs', 'completion', 'itertools', 'math', 'named_commands', 'prompt_toolkit', 'registry', 'scroll', 'six', 'string']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\key_binding\\bindings'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / layout,"['__future__', 'abc', 'collections', 'containers', 'controls', 'dimension', 'enums', 'itertools', 'lexers', 'margins', 'math', 'processors', 'prompt_toolkit', 'pygments', 're', 'screen', 'six', 'time', 'utils']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\layout'],2024-01-15 04:51:40,13
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / styles,"['__future__', 'abc', 'base', 'collections', 'defaults', 'from_dict', 'from_pygments', 'prompt_toolkit', 'pygments', 'six', 'utils']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\styles'],2024-01-15 04:51:40,6
+deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / terminal,"['__future__', 'array', 'ctypes', 'errno', 'fcntl', 'key_binding', 'keys', 'msvcrt', 'os', 'prompt_toolkit', 're', 'six', 'sys', 'termios', 'tty', 'vt100_output', 'win32_output']",['deep_real_time1\\venvs\\Lib\\site-packages\\prompt_toolkit\\terminal'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / pyasn1,"['logging', 'pyasn1', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec,[],['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\codec'],2024-01-15 04:51:40,1
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / ber,"['pyasn1', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\codec\\ber'],2024-01-15 04:51:40,4
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / cer,['pyasn1'],['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\codec\\cer'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / der,['pyasn1'],['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\codec\\der'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / native,"['collections', 'pyasn1']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\codec\\native'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / compat,"['binascii', 'collections', 'datetime', 'platform', 'pyasn1', 'sys', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\compat'],2024-01-15 04:51:40,7
+deep_real_time1 / venvs / Lib / site-packages / pyasn1 / type,"['datetime', 'math', 'pyasn1', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1\\type'],2024-01-15 04:51:40,12
+deep_real_time1 / venvs / Lib / site-packages / pyasn1_modules,"['base64', 'pyasn1', 'pyasn1_modules', 'string', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyasn1_modules'],2024-01-15 04:51:40,107
+deep_real_time1 / venvs / Lib / site-packages / pyfakewebcam,"['ctypes', 'cv2', 'fcntl', 'numpy', 'os', 'pyfakewebcam', 'sys', 'timeit']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyfakewebcam'],2024-01-15 04:51:40,3
+deep_real_time1 / venvs / Lib / site-packages / pygments,"['argparse', 'chardet', 'codecs', 'colorama', 'docutils', 'importlib', 'importlib_metadata', 'io', 'itertools', 'json', 'locale', 'operator', 'os', 'pkg_resources', 'pygments', 're', 'shutil', 'sphinx', 'sys', 'textwrap', 'time', 'traceback', 'unicodedata']",['deep_real_time1\\venvs\\Lib\\site-packages\\pygments'],2024-01-15 04:51:40,16
+deep_real_time1 / venvs / Lib / site-packages / pygments / filters,"['pygments', 're']",['deep_real_time1\\venvs\\Lib\\site-packages\\pygments\\filters'],2024-01-15 04:51:40,1
+deep_real_time1 / venvs / Lib / site-packages / pygments / formatters,"['PIL', '_winreg', 'bz2', 'ctags', 'fnmatch', 'functools', 'gzip', 'io', 'math', 'os', 'pygments', 'subprocess', 'sys', 'types', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\pygments\\formatters'],2024-01-15 04:51:40,14
+deep_real_time1 / venvs / Lib / site-packages / pygments / lexers,"['ast', 'bisect', 'bz2', 'copy', 'fnmatch', 'glob', 'gzip', 'keyword', 'os', 'pprint', 'pygments', 're', 'shutil', 'string', 'subprocess', 'sys', 'tarfile', 'types', 'urllib']",['deep_real_time1\\venvs\\Lib\\site-packages\\pygments\\lexers'],2024-01-15 04:51:41,223
+deep_real_time1 / venvs / Lib / site-packages / pygments / styles,['pygments'],['deep_real_time1\\venvs\\Lib\\site-packages\\pygments\\styles'],2024-01-15 04:51:41,45
+deep_real_time1 / venvs / Lib / site-packages / pyparsing,"['abc', 'actions', 'collections', 'common', 'contextlib', 'copy', 'core', 'datetime', 'diagram', 'enum', 'exceptions', 'functools', 'helpers', 'html', 'inspect', 'itertools', 'operator', 'os', 'pathlib', 'pdb', 'pprint', 're', 'results', 'string', 'sys', 'testing', 'threading', 'traceback', 'types', 'typing', 'unicode', 'util', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyparsing'],2024-01-15 04:51:41,10
+deep_real_time1 / venvs / Lib / site-packages / pyparsing / diagram,"['inspect', 'io', 'jinja2', 'pyparsing', 'railroad', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyparsing\\diagram'],2024-01-15 04:51:41,1
+deep_real_time1 / venvs / Lib / site-packages / pyrsistent,"['__future__', '_pset', 'abc', 'collections', 'enum', 'functools', 'inspect', 'itertools', 'numbers', 'operator', 'os', 'pvectorc', 'pyrsistent', 're', 'sys', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyrsistent'],2024-01-15 04:51:41,16
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin,[],['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin'],2024-01-15 04:51:42,1
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / debugger,"['__main__', 'bdb', 'commctrl', 'dbgcon', 'linecache', 'os', 'pdb', 'pywin', 'string', 'sys', 'time', 'traceback', 'types', 'win32api', 'win32con', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\debugger'],2024-01-15 04:51:41,6
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / Demos,"['OpenGL', '__main__', '_thread', 'commctrl', 'demoutils', 'fontdemo', 'os', 'pywin', 'regutil', 'sys', 'timer', 'traceback', 'win32api', 'win32con', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\Demos'],2024-01-15 04:51:41,17
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / dialogs,"['commctrl', 'pywin', 'sys', 'threading', 'time', 'win32api', 'win32con', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\dialogs'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / docking,"['pywin', 'struct', 'win32api', 'win32con', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\docking'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / framework,"['__main__', '_thread', 'afxres', 'array', 'bdb', 'cmdline', 'code', 'commctrl', 'dde', 'glob', 'importlib', 'io', 'linecache', 'operator', 'os', 'pywin', 'queue', 're', 'regutil', 'string', 'sys', 'sysconfig', 'time', 'traceback', 'warnings', 'win32api', 'win32clipboard', 'win32con', 'win32help', 'win32ui', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\framework'],2024-01-15 04:50:41,18
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / idle,"['CallTipWindow', '__main__', 'inspect', 'pywin', 're', 'string', 'sys', 'tokenize', 'traceback']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\idle'],2024-01-15 04:51:42,7
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / mfc,"['pywin', 'types', 'win32con', 'win32ui', 'win32uiole']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\mfc'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / scintilla,"['__main__', 'afxres', 'array', 'codecs', 'config', 'glob', 'importlib', 'keyword', 'marshal', 'os', 'pythoncom', 'pywin', 're', 'stat', 'string', 'struct', 'sys', 'time', 'traceback', 'types', 'win32api', 'win32con', 'win32trace', 'win32traceutil', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\scintilla'],2024-01-15 04:51:42,12
+deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / tools,"['__main__', '_thread', 'afxres', 'commctrl', 'dialog', 'glob', 'os', 'pyclbr', 'pywin', 're', 'regutil', 'sys', 'types', 'win32api', 'win32con', 'win32event', 'win32process', 'win32trace', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\pythonwin\\pywin\\tools'],2024-01-15 04:51:42,7
+deep_real_time1 / venvs / Lib / site-packages / pytz,"['UserDict', 'bisect', 'collections', 'datetime', 'doctest', 'os', 'pkg_resources', 'pprint', 'pytz', 'sets', 'struct', 'sys', 'threading', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\pytz'],2024-01-15 04:51:42,6
+deep_real_time1 / venvs / Lib / site-packages / pyvirtualcam,"['_version', 'abc', 'camera', 'enum', 'numpy', 'platform', 'pyvirtualcam', 'time', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\pyvirtualcam'],2024-01-15 04:51:43,4
+deep_real_time1 / venvs / Lib / site-packages / requests,"['Cookie', 'OpenSSL', 'StringIO', '__future__', '__version__', '_internal_utils', '_winreg', 'adapters', 'api', 'auth', 'base64', 'calendar', 'certifi', 'chardet', 'codecs', 'collections', 'compat', 'contextlib', 'cookielib', 'cookies', 'copy', 'cryptography', 'datetime', 'dummy_threading', 'encodings', 'exceptions', 'hashlib', 'hooks', 'http', 'idna', 'io', 'json', 'logging', 'models', 'netrc', 'os', 'platform', 're', 'sessions', 'simplejson', 'socket', 'ssl', 'status_codes', 'struct', 'structures', 'sys', 'tempfile', 'threading', 'time', 'urllib', 'urllib2', 'urllib3', 'urlparse', 'utils', 'warnings', 'winreg', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\requests'],2024-01-15 04:51:43,18
+deep_real_time1 / venvs / Lib / site-packages / requests_oauthlib,"['__future__', 'json', 'logging', 'oauth1_auth', 'oauth1_session', 'oauth2_auth', 'oauth2_session', 'oauthlib', 'requests', 'urllib', 'urlparse']",['deep_real_time1\\venvs\\Lib\\site-packages\\requests_oauthlib'],2024-01-15 04:51:43,5
+deep_real_time1 / venvs / Lib / site-packages / requests_oauthlib / compliance_fixes,"['__future__', 'ebay', 'facebook', 'fitbit', 'instagram', 'json', 'mailchimp', 'oauthlib', 'plentymarkets', 're', 'slack', 'urllib', 'urlparse', 'weibo']",['deep_real_time1\\venvs\\Lib\\site-packages\\requests_oauthlib\\compliance_fixes'],2024-01-15 04:51:43,10
+deep_real_time1 / venvs / Lib / site-packages / rsa,"['abc', 'base64', 'doctest', 'hashlib', 'hmac', 'math', 'multiprocessing', 'optparse', 'os', 'pyasn1', 'rsa', 'struct', 'sys', 'threading', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\rsa'],2024-01-15 04:51:43,14
+deep_real_time1 / venvs / Lib / site-packages / scipy,"['_lib', 'ctypes', 'enum', 'glob', 'importlib', 'json', 'numpy', 'os', 'pytest', 'pytest_timeout', 'scipy', 'sys', 'threadpoolctl', 'types', 'warnings', 'yaml']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy'],2024-01-15 04:51:43,5
+deep_real_time1 / venvs / Lib / site-packages / scipy / cluster,"['bisect', 'collections', 'matplotlib', 'numpy', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\cluster'],2024-01-15 04:51:43,3
+deep_real_time1 / venvs / Lib / site-packages / scipy / cluster / tests,"['matplotlib', 'numpy', 'pytest', 'scipy', 'string', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\cluster\\tests'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / scipy / constants,"['__future__', '_codata', '_constants', 'math', 'numpy', 'scipy', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\constants'],2024-01-15 04:51:43,5
+deep_real_time1 / venvs / Lib / site-packages / scipy / constants / tests,"['numpy', 'scipy']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\constants\\tests'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / scipy / datasets,"['_download_all', '_fetchers', '_registry', '_utils', 'appdirs', 'argparse', 'bz2', 'numpy', 'os', 'pickle', 'pooch', 'scipy', 'shutil']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\datasets'],2024-01-15 04:51:43,5
+deep_real_time1 / venvs / Lib / site-packages / scipy / datasets / tests,"['numpy', 'os', 'pooch', 'pytest', 'scipy']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\datasets\\tests'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / scipy / fft,"['_backend', '_basic', '_fftlog', '_fftlog_multimethods', '_helper', '_pocketfft', '_realtransforms', 'functools', 'numpy', 'scipy', 'special', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\fft'],2024-01-15 04:51:43,8
+deep_real_time1 / venvs / Lib / site-packages / scipy / fft / tests,"['functools', 'math', 'multiprocessing', 'numpy', 'os', 'pytest', 'queue', 'scipy', 'subprocess', 'sys', 'threading', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\fft\\tests'],2024-01-15 04:50:41,9
+deep_real_time1 / venvs / Lib / site-packages / scipy / fft / _pocketfft,"['basic', 'contextlib', 'functools', 'helper', 'numbers', 'numpy', 'operator', 'os', 'pypocketfft', 'realtransforms', 'scipy', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\fft\\_pocketfft'],2024-01-15 04:51:43,4
+deep_real_time1 / venvs / Lib / site-packages / scipy / fftpack,"['_basic', '_helper', '_pseudo_diffs', '_realtransforms', 'numpy', 'operator', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\fftpack'],2024-01-15 04:51:43,9
+deep_real_time1 / venvs / Lib / site-packages / scipy / fftpack / tests,"['numpy', 'os', 'pathlib', 'pytest', 're', 'scipy', 'tokenize']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\fftpack\\tests'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / scipy / integrate,"['__future__', '_bvp', '_ivp', '_ode', '_odepack_py', '_quad_vec', '_quadpack_py', '_quadrature', 'collections', 'copy', 'functools', 'heapq', 'math', 'numpy', 're', 'scipy', 'sys', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\integrate'],2024-01-15 04:51:43,12
+deep_real_time1 / venvs / Lib / site-packages / scipy / integrate / tests,"['StringIO', 'ctypes', 'io', 'itertools', 'math', 'multiprocessing', 'numpy', 'pytest', 'scipy', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\integrate\\tests'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / scipy / integrate / _ivp,"['base', 'bdf', 'common', 'inspect', 'itertools', 'ivp', 'lsoda', 'numpy', 'radau', 'rk', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\integrate\\_ivp'],2024-01-15 04:51:43,9
+deep_real_time1 / venvs / Lib / site-packages / scipy / interpolate,"['_bsplines', '_cubic', '_fitpack2', '_fitpack_impl', '_fitpack_py', '_interpolate', '_ndgriddata', '_pade', '_polyint', '_rbf', '_rbfinterp', '_rbfinterp_pythran', '_rgi', '_rgi_cython', 'interpnd', 'itertools', 'numpy', 'operator', 'scipy', 'sympy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\interpolate'],2024-01-15 04:51:43,20
+deep_real_time1 / venvs / Lib / site-packages / scipy / interpolate / tests,"['io', 'itertools', 'numpy', 'os', 'pickle', 'pytest', 'scipy', 'threading', 'time', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\interpolate\\tests'],2024-01-15 04:50:41,13
+deep_real_time1 / venvs / Lib / site-packages / scipy / io,"['_fortran', '_harwell_boeing', '_idl', '_mmio', '_netcdf', 'bz2', 'enum', 'functools', 'gzip', 'io', 'matlab', 'mmap', 'numpy', 'operator', 'os', 'platform', 'scipy', 'struct', 'sys', 'tempfile', 'warnings', 'weakref', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\io'],2024-01-15 04:51:43,10
+deep_real_time1 / venvs / Lib / site-packages / scipy / io / arff,"['_arffread', 'csv', 'ctypes', 'datetime', 'numpy', 're', 'scipy', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\io\\arff'],2024-01-15 04:51:43,3
+deep_real_time1 / venvs / Lib / site-packages / scipy / io / matlab,"['_byteordercodes', '_mio', '_mio4', '_mio5', '_mio5_params', '_mio5_utils', '_mio_utils', '_miobase', '_streams', 'contextlib', 'functools', 'io', 'numpy', 'operator', 'os', 'scipy', 'sys', 'time', 'warnings', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\io\\matlab'],2024-01-15 04:51:43,16
+deep_real_time1 / venvs / Lib / site-packages / scipy / io / tests,"['bz2', 'contextlib', 'glob', 'gzip', 'io', 'numpy', 'os', 'pathlib', 'pytest', 're', 'scipy', 'shutil', 'sys', 'tempfile', 'textwrap', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\io\\tests'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / scipy / io / _harwell_boeing,"['_fortran_format_parser', 'hb', 'numpy', 're', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\io\\_harwell_boeing'],2024-01-15 04:51:43,3
+deep_real_time1 / venvs / Lib / site-packages / scipy / linalg,"['_basic', '_cythonized_array_utils', '_decomp', '_decomp_cholesky', '_decomp_cossin', '_decomp_ldl', '_decomp_lu', '_decomp_polar', '_decomp_qr', '_decomp_qz', '_decomp_schur', '_decomp_svd', '_decomp_update', '_expm_frechet', '_flinalg_py', '_matfuncs', '_matfuncs_expm', '_matfuncs_sqrtm', '_matfuncs_sqrtm_triu', '_misc', '_procrustes', '_sketches', '_solve_toeplitz', '_solvers', '_special_matrices', 'blas', 'collections', 'fft', 'functools', 'itertools', 'lapack', 'math', 'numpy', 're', 'scipy', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\linalg'],2024-01-15 04:51:44,38
+deep_real_time1 / venvs / Lib / site-packages / scipy / linalg / tests,"['functools', 'itertools', 'math', 'numpy', 'os', 'platform', 'pytest', 'random', 'scipy', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\linalg\\tests'],2024-01-15 04:50:41,23
+deep_real_time1 / venvs / Lib / site-packages / scipy / misc,"['_common', 'bz2', 'numpy', 'os', 'pickle', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\misc'],2024-01-15 04:51:44,4
+deep_real_time1 / venvs / Lib / site-packages / scipy / misc / tests,"['numpy', 'pytest', 'scipy', 'sys', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\misc\\tests'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / scipy / ndimage,"['_filters', '_fourier', '_interpolation', '_measurements', '_morphology', '_ni_docstrings', 'collections', 'itertools', 'numbers', 'numpy', 'operator', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\ndimage'],2024-01-15 04:51:44,13
+deep_real_time1 / venvs / Lib / site-packages / scipy / ndimage / tests,"['__future__', 'functools', 'math', 'numpy', 'os', 'pytest', 'scipy', 'sys', 'threading', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\ndimage\\tests'],2024-01-15 04:51:44,9
+deep_real_time1 / venvs / Lib / site-packages / scipy / odr,"['_models', '_odrpack', 'numpy', 'os', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\odr'],2024-01-15 04:51:44,6
+deep_real_time1 / venvs / Lib / site-packages / scipy / odr / tests,"['numpy', 'os', 'pytest', 'scipy', 'shutil', 'tempfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\odr\\tests'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize,"['__future__', '_basinhopping', '_bglu_dense', '_cobyla_py', '_constraints', '_differentiable_functions', '_differentialevolution', '_direct', '_direct_py', '_dual_annealing', '_group_columns', '_hessian_update_strategy', '_highs', '_lbfgsb_py', '_linesearch', '_linprog', '_linprog_doc', '_linprog_highs', '_linprog_ip', '_linprog_rs', '_linprog_simplex', '_linprog_util', '_lsap', '_lsq', '_milp', '_minimize', '_minpack_py', '_nnls', '_nonlin', '_numdiff', '_optimize', '_qap', '_root', '_root_scalar', '_shgo', '_slsqp_py', '_spectral', '_tnc', '_trlib', '_trustregion', '_trustregion_constr', '_trustregion_dogleg', '_trustregion_exact', '_trustregion_krylov', '_trustregion_ncg', '_typeshed', '_zeros_py', 'collections', 'copy', 'functools', 'inspect', 'itertools', 'logging', 'math', 'numpy', 'operator', 'random', 'scikits', 'scipy', 'sksparse', 'sparse', 'sys', 'textwrap', 'threading', 'time', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize'],2024-01-15 04:51:44,51
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / cython_optimize,[],['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\cython_optimize'],2024-01-15 04:51:44,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / tests,"['concurrent', 'copy', 'datetime', 'functools', 'itertools', 'logging', 'math', 'multiprocessing', 'numpy', 'platform', 'pytest', 're', 'scikits', 'scipy', 'sksparse', 'sys', 'test_linprog', 'test_minimize_constrained', 'test_minpack', 'time', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\tests'],2024-01-15 04:50:41,39
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _highs,[],['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\_highs'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _lsq,"['bvls', 'common', 'dogbox', 'givens_elimination', 'least_squares', 'lsq_linear', 'math', 'numpy', 'scipy', 'trf', 'trf_linear', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\_lsq'],2024-01-15 04:51:44,8
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _shgo_lib,"['copy', 'matplotlib', 'numpy']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\_shgo_lib'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _trlib,['_trlib'],['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\_trlib'],2024-01-15 04:51:44,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _trustregion_constr,"['__future__', '_constraints', '_differentiable_functions', '_hessian_update_strategy', '_optimize', 'canonical_constraint', 'equality_constrained_sqp', 'math', 'minimize_trustregion_constr', 'numpy', 'projections', 'qp_subproblem', 'report', 'scipy', 'sksparse', 'time', 'tr_interior_point', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\optimize\\_trustregion_constr'],2024-01-15 04:51:44,8
+deep_real_time1 / venvs / Lib / site-packages / scipy / signal,"['_arraytools', '_bsplines', '_czt', '_filter_design', '_fir_filter_design', '_lti_conversion', '_ltisys', '_max_len_seq', '_max_len_seq_inner', '_peak_finding', '_peak_finding_utils', '_savitzky_golay', '_signaltools', '_sosfilt', '_spectral', '_spectral_py', '_spline', '_upfirdn', '_upfirdn_apply', '_waveforms', '_wavelets', 'cmath', 'copy', 'math', 'numbers', 'numpy', 'operator', 'scipy', 'timeit', 'warnings', 'windows']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\signal'],2024-01-15 04:51:44,27
+deep_real_time1 / venvs / Lib / site-packages / scipy / signal / tests,"['concurrent', 'copy', 'decimal', 'itertools', 'math', 'mpmath', 'numpy', 'pickle', 'pytest', 'scipy', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\signal\\tests'],2024-01-15 04:50:41,20
+deep_real_time1 / venvs / Lib / site-packages / scipy / signal / windows,"['_windows', 'numpy', 'operator', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\signal\\windows'],2024-01-15 04:51:45,3
+deep_real_time1 / venvs / Lib / site-packages / scipy / sparse,"['_arrays', '_base', '_bsr', '_compressed', '_construct', '_coo', '_csc', '_csr', '_data', '_dia', '_dok', '_extract', '_index', '_lil', '_matrix_io', '_sparsetools', '_spfuncs', '_sputils', 'bisect', 'functools', 'itertools', 'numbers', 'numpy', 'operator', 'scipy', 'sys', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\sparse'],2024-01-15 04:51:45,33
+deep_real_time1 / venvs / Lib / site-packages / scipy / sparse / csgraph,"['_flow', '_laplacian', '_matching', '_min_spanning_tree', '_reordering', '_shortest_path', '_tools', '_traversal', 'numpy', 'scipy']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\sparse\\csgraph'],2024-01-15 04:51:45,4
+deep_real_time1 / venvs / Lib / site-packages / scipy / sparse / linalg,"['_dsolve', '_eigen', '_expm_multiply', '_interface', '_isolve', '_matfuncs', '_norm', '_onenormest', '_propack', 'numpy', 'scipy', 'sparse', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\sparse\\linalg'],2024-01-15 04:51:45,12
+deep_real_time1 / venvs / Lib / site-packages / scipy / sparse / tests,"['contextlib', 'functools', 'gc', 'itertools', 'numpy', 'operator', 'os', 'pickle', 'platform', 'pytest', 'random', 'scipy', 'sys', 'tempfile', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\sparse\\tests'],2024-01-15 04:50:41,11
+deep_real_time1 / venvs / Lib / site-packages / scipy / spatial,"['__future__', '_ckdtree', '_geometric_slerp', '_kdtree', '_lib', '_plotutils', '_procrustes', '_qhull', '_spherical_voronoi', 'dataclasses', 'functools', 'linalg', 'matplotlib', 'numpy', 'scipy', 'special', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\spatial'],2024-01-15 04:51:45,10
+deep_real_time1 / venvs / Lib / site-packages / scipy / spatial / tests,"['copy', 'functools', 'itertools', 'matplotlib', 'numpy', 'os', 'pickle', 'platform', 'psutil', 'pytest', 'resource', 'scipy', 'sys', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\spatial\\tests'],2024-01-15 04:50:41,9
+deep_real_time1 / venvs / Lib / site-packages / scipy / spatial / transform,"['_rotation', '_rotation_spline', 'numpy', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\spatial\\transform'],2024-01-15 04:51:45,4
+deep_real_time1 / venvs / Lib / site-packages / scipy / special,"['_basic', '_comb', '_ellip_harm', '_ellip_harm_2', '_lambertw', '_logsumexp', '_orthogonal', '_sf_error', '_spfun_stats', '_spherical_bessel', '_ufuncs', 'functools', 'itertools', 'math', 'mpmath', 'numpy', 'operator', 'os', 'posix', 'pytest', 'scipy', 'signal', 'sys', 'time', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\special'],2024-01-15 04:51:45,18
+deep_real_time1 / venvs / Lib / site-packages / scipy / special / tests,"['__future__', 'itertools', 'math', 'mpmath', 'numpy', 'os', 'platform', 'pytest', 'scipy', 'sympy', 'sys', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\special\\tests'],2024-01-15 04:50:41,49
+deep_real_time1 / venvs / Lib / site-packages / scipy / special / _precompute,"['argparse', 'functools', 'matplotlib', 'mpmath', 'numpy', 'os', 're', 'scipy', 'sympy', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\special\\_precompute'],2024-01-15 04:50:41,13
+deep_real_time1 / venvs / Lib / site-packages / scipy / stats,"['__future__', '_axis_nan_policy', '_biasedurn', '_binned_statistic', '_binomtest', '_common', '_constants', '_continuous_distns', '_covariance', '_crosstab', '_discrete_distns', '_distn_infrastructure', '_distr_params', '_entropy', '_fit', '_hypotests', '_kde', '_ksstats', '_levy_stable', '_lib', '_mannwhitneyu', '_morestats', '_mstats_basic', '_mstats_extras', '_multivariate', '_odds_ratio', '_page_trend_test', '_qmc', '_qmc_cy', '_relative_risk', '_resampling', '_rvs_sampling', '_sobol', '_stats', '_stats_mstats_common', '_stats_py', '_stats_pythran', '_tukeylambda_stats', '_unuran', '_variation', '_warnings_errors', 'abc', 'argparse', 'builtins', 'collections', 'contingency', 'copy', 'ctypes', 'dataclasses', 'distributions', 'functools', 'inspect', 'itertools', 'keyword', 'math', 'matplotlib', 'numbers', 'numpy', 'operator', 'os', 'pathlib', 're', 'scipy', 'subprocess', 'sys', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\stats'],2024-01-15 04:51:46,48
+deep_real_time1 / venvs / Lib / site-packages / scipy / stats / tests,"['_discrete_distns', '_hypotests', 'collections', 'common_tests', 'copy', 'data', 'functools', 'itertools', 'json', 'math', 'matplotlib', 'numpy', 'os', 'pathlib', 'pickle', 'platform', 'pytest', 're', 'scipy', 'sys', 'test_continuous_basic', 'test_discrete_basic', 'threading', 'unittest', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\stats\\tests'],2024-01-15 04:50:41,28
+deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _boost,['scipy'],['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\stats\\_boost'],2024-01-15 04:51:46,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _levy_stable,"['_continuous_distns', '_distn_infrastructure', 'functools', 'levyst', 'numpy', 'scipy', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\stats\\_levy_stable'],2024-01-15 04:51:46,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _rcont,['rcont'],['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\stats\\_rcont'],2024-01-15 04:51:46,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _unuran,[],['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\stats\\_unuran'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / scipy / _lib,"['_uarray', 'cffi', 'collections', 'contextlib', 'copy', 'ctypes', 'functools', 'gc', 'importlib', 'inspect', 'itertools', 'keyword', 'math', 'multiprocessing', 'numbers', 'numpy', 'operator', 'os', 'platform', 'psutil', 'pydoc', 'pytest', 're', 'scipy', 'shutil', 'sphinx', 'sys', 'tempfile', 'textwrap', 'threading', 'typing', 'uarray', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\_lib'],2024-01-15 04:51:46,16
+deep_real_time1 / venvs / Lib / site-packages / scipy / _lib / tests,"['ast', 'cffi', 'ctypes', 'fractions', 'gc', 'importlib', 'math', 'multiprocessing', 'numpy', 'os', 'pathlib', 'pickle', 'pkgutil', 'pytest', 're', 'scipy', 'subprocess', 'sys', 'threading', 'time', 'tokenize', 'traceback', 'types', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\_lib\\tests'],2024-01-15 04:50:41,14
+deep_real_time1 / venvs / Lib / site-packages / scipy / _lib / _uarray,"['_backend', '_uarray', 'contextlib', 'copyreg', 'functools', 'importlib', 'inspect', 'pickle', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\scipy\\_lib\\_uarray'],2024-01-15 04:51:46,2
+deep_real_time1 / venvs / Lib / site-packages / setuptools,"['_deprecation_warning', '_distutils_hack', '_imp', '_importlib', '_itertools', '_path', '_reqs', 'base64', 'builtins', 'collections', 'configparser', 'contextlib', 'ctypes', 'dis', 'distutils', 'email', 'extern', 'fnmatch', 'functools', 'glob', 'hashlib', 'html', 'http', 'importlib', 'importlib_metadata', 'inspect', 'io', 'itertools', 'json', 'logging', 'marshal', 'monkey', 'numbers', 'numpy', 'operator', 'org', 'os', 'pathlib', 'pickle', 'pkg_resources', 'platform', 'posixpath', 'py34compat', 're', 'setuptools', 'shlex', 'shutil', 'socket', 'subprocess', 'sys', 'tarfile', 'tempfile', 'textwrap', 'tokenize', 'types', 'typing', 'unicodedata', 'urllib', 'warnings', 'winreg', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools'],2024-01-15 04:51:46,30
+deep_real_time1 / venvs / Lib / site-packages / setuptools / command,"['Cython', '_importlib', '_path', 'abc', 'base64', 'build', 'collections', 'configparser', 'contextlib', 'distutils', 'dl', 'enum', 'extern', 'fnmatch', 'functools', 'glob', 'http', 'importlib', 'inspect', 'io', 'itertools', 'logging', 'marshal', 'operator', 'os', 'pathlib', 'pkg_resources', 'platform', 'py36compat', 'random', 're', 'setuptools', 'shlex', 'shutil', 'site', 'socket', 'stat', 'struct', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'time', 'traceback', 'types', 'typing', 'typing_extensions', 'unittest', 'upload', 'urllib', 'warnings', 'wheel', 'zipfile', 'zipimport']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\command'],2024-01-15 04:51:46,26
+deep_real_time1 / venvs / Lib / site-packages / setuptools / config,"['_apply_pyprojecttoml', '_deprecation_warning', '_importlib', '_path', 'ast', 'collections', 'configparser', 'contextlib', 'distutils', 'email', 'functools', 'glob', 'importlib', 'inspect', 'io', 'itertools', 'logging', 'os', 'pathlib', 'setuptools', 'sys', 'textwrap', 'types', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\config'],2024-01-15 04:51:46,5
+deep_real_time1 / venvs / Lib / site-packages / setuptools / config / _validate_pyproject,"['contextlib', 'email', 'error_reporting', 'extra_validations', 'fastjsonschema_exceptions', 'fastjsonschema_validations', 'functools', 'io', 'itertools', 'json', 'logging', 'os', 'packaging', 're', 'setuptools', 'ssl', 'string', 'textwrap', 'trove_classifiers', 'typing', 'urllib']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject'],2024-01-15 04:51:46,6
+deep_real_time1 / venvs / Lib / site-packages / setuptools / extern,"['importlib', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\extern'],2024-01-15 04:51:46,1
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _distutils,"['_aix_support', '_functools', '_imp', '_macos_compat', '_osx_support', 'cgi', 'collections', 'configparser', 'contextlib', 'copy', 'distutils', 'email', 'errno', 'errors', 'fnmatch', 'functools', 'getopt', 'grp', 'importlib', 'itertools', 'operator', 'os', 'pathlib', 'platform', 'pprint', 'pwd', 'py38compat', 'py_compile', 're', 'shlex', 'stat', 'string', 'subprocess', 'sys', 'sysconfig', 'tarfile', 'tempfile', 'tokenize', 'unittest', 'warnings', 'win32api', 'win32con', 'winreg', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_distutils'],2024-01-15 04:51:46,33
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _distutils / command,"['base64', 'concurrent', 'contextlib', 'distutils', 'docutils', 'functools', 'getpass', 'glob', 'hashlib', 'importlib', 'io', 'itertools', 'os', 'pprint', 're', 'site', 'stat', 'subprocess', 'sys', 'sysconfig', 'tokenize', 'urllib', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_distutils\\command'],2024-01-15 04:51:46,23
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor,"['_collections_abc', 'abc', 'collections', 'contextlib', 'io', 'itertools', 'operator', 'pathlib', 'posixpath', 'sys', 'typing', 'warnings', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / importlib_metadata,"['_collections', '_compat', '_functools', '_itertools', '_meta', '_text', 'abc', 'collections', 'contextlib', 'csv', 'email', 'functools', 'importlib', 'itertools', 'operator', 'os', 'pathlib', 'platform', 'posixpath', 're', 'sys', 'textwrap', 'types', 'typing', 'typing_extensions', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata'],2024-01-15 04:51:46,8
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / importlib_resources,"['_common', '_compat', '_itertools', '_legacy', 'abc', 'collections', 'contextlib', 'functools', 'importlib', 'io', 'itertools', 'operator', 'os', 'pathlib', 'sys', 'tempfile', 'types', 'typing', 'warnings', 'zipfile', 'zipp']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\importlib_resources'],2024-01-15 04:51:46,9
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / jaraco,"['collections', 'contextlib', 'functools', 'inspect', 'itertools', 'operator', 'os', 'setuptools', 'shutil', 'subprocess', 'tempfile', 'time', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\jaraco'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / more_itertools,"['collections', 'functools', 'heapq', 'itertools', 'math', 'more', 'operator', 'queue', 'random', 'recipes', 'sys', 'time', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools'],2024-01-15 04:51:46,3
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / packaging,"['__about__', '_manylinux', '_structures', 'abc', 'collections', 'contextlib', 'ctypes', 'functools', 'importlib', 'itertools', 'logging', 'markers', 'operator', 'os', 'platform', 're', 'setuptools', 'specifiers', 'string', 'struct', 'subprocess', 'sys', 'sysconfig', 'tags', 'typing', 'urllib', 'utils', 'version', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\packaging'],2024-01-15 04:51:46,11
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / pyparsing,"['abc', 'actions', 'collections', 'common', 'contextlib', 'copy', 'core', 'datetime', 'diagram', 'enum', 'exceptions', 'functools', 'helpers', 'html', 'inspect', 'itertools', 'operator', 'os', 'pathlib', 'pdb', 'pprint', 're', 'results', 'string', 'sys', 'testing', 'threading', 'traceback', 'types', 'typing', 'unicode', 'util', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\pyparsing'],2024-01-15 04:51:46,10
+deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / tomli,"['__future__', '_parser', '_re', '_types', 'collections', 'datetime', 'functools', 're', 'string', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\setuptools\\_vendor\\tomli'],2024-01-15 04:51:46,4
+deep_real_time1 / venvs / Lib / site-packages / soupsieve,"['__future__', '__meta__', 'bs4', 'collections', 'copyreg', 'datetime', 'functools', 'pretty', 're', 'typing', 'unicodedata', 'util', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\soupsieve'],2024-01-15 04:51:47,7
+deep_real_time1 / venvs / Lib / site-packages / tensorboard,"['IPython', 'abc', 'absl', 'argparse', 'atexit', 'base64', 'collections', 'dataclasses', 'datetime', 'errno', 'functools', 'google', 'html', 'importlib', 'json', 'logging', 'markdown', 'mimetypes', 'numpy', 'os', 'pkg_resources', 'random', 'shlex', 'signal', 'socket', 'subprocess', 'sys', 'tempfile', 'tensorboard', 'textwrap', 'threading', 'time', 'types', 'typing', 'urllib', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard'],2024-01-15 04:51:47,16
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / backend,"['base64', 'collections', 'dataclasses', 'gzip', 'hashlib', 'io', 'json', 'math', 're', 'struct', 'tensorboard', 'textwrap', 'time', 'typing', 'urllib', 'werkzeug', 'wsgiref', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\backend'],2024-01-15 04:50:41,12
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / backend / event_processing,"['base64', 'bisect', 'collections', 'contextlib', 'dataclasses', 'itertools', 'json', 'multiprocessing', 'os', 'queue', 'random', 're', 'tensorboard', 'tensorflow', 'tensorflow_io', 'threading', 'time', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\backend\\event_processing'],2024-01-15 04:50:41,16
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / compat,"['tensorboard', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\compat'],2024-01-15 04:51:47,1
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / compat / proto,"['google', 'tensorboard']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\compat\\proto'],2024-01-15 04:50:41,35
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / compat / tensorflow_stub,"['absl', 'array', 'dtypes', 'errno', 'io', 'logging', 'numpy', 'struct', 'sys', 'tensorboard', 'traceback', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\compat\\tensorflow_stub'],2024-01-15 04:51:47,8
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / data,"['abc', 'contextlib', 'errno', 'grpc', 'logging', 'numpy', 'os', 'pkg_resources', 'subprocess', 'tempfile', 'tensorboard', 'tensorboard_data_server', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\data'],2024-01-15 04:51:47,5
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / data / experimental,"['abc', 'grpc', 'numpy', 'pandas', 'sys', 'tensorboard', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\data\\experimental'],2024-01-15 04:51:47,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / data / proto,"['google', 'grpc', 'tensorboard']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\data\\proto'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins,['abc'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / audio,"['functools', 'google', 'numpy', 'tensorboard', 'tensorflow', 'urllib', 'warnings', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\audio'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / core,"['argparse', 'functools', 'gzip', 'io', 'mimetypes', 'posixpath', 'tensorboard', 'werkzeug', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\core'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / custom_scalar,"['google', 're', 'tensorboard', 'tensorflow', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\custom_scalar'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / debugger_v2,"['json', 'tensorboard', 'tensorflow', 'threading', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\debugger_v2'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / distribution,"['dataclasses', 'numpy', 'tensorboard', 'typing', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\distribution'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / graph,"['json', 'tensorboard', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\graph'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / histogram,"['google', 'numpy', 'tensorboard', 'tensorflow', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\histogram'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / hparams,"['abc', 'collections', 'csv', 'dataclasses', 'google', 'hashlib', 'io', 'json', 'math', 'numpy', 'operator', 'os', 'random', 're', 'tensorboard', 'tensorflow', 'time', 'typing', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\hparams'],2024-01-15 04:51:47,17
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / image,"['google', 'imghdr', 'numpy', 'tensorboard', 'tensorflow', 'urllib', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\image'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / mesh,"['dataclasses', 'google', 'json', 'numpy', 'tensorboard', 'tensorflow', 'typing', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\mesh'],2024-01-15 04:51:47,6
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / metrics,"['collections', 'imghdr', 'json', 'tensorboard', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\metrics'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / npmi,"['google', 'math', 'tensorboard', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\npmi'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / profile_redirect,"['tensorboard', 'tensorboard_plugin_profile']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\profile_redirect'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / projector,"['collections', 'functools', 'google', 'imghdr', 'mimetypes', 'numpy', 'os', 'tensorboard', 'threading', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\projector'],2024-01-15 04:51:47,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / pr_curve,"['google', 'numpy', 'tensorboard', 'tensorflow', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\pr_curve'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / scalar,"['csv', 'google', 'io', 'numpy', 'tensorboard', 'tensorflow', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\scalar'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / text,"['google', 'numpy', 'tensorboard', 'tensorflow', 'textwrap', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\text'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / text_v2,"['numpy', 'tensorboard', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\plugins\\text_v2'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / summary,"['abc', 'numpy', 'tensorboard', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\summary'],2024-01-15 04:51:47,5
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / summary / writer,"['os', 'queue', 'socket', 'struct', 'tensorboard', 'threading', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\summary\\writer'],2024-01-15 04:51:47,3
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / summary / _tf,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\summary\\_tf'],2024-01-15 04:51:47,1
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / uploader,"['abc', 'absl', 'argparse', 'base64', 'collections', 'contextlib', 'datetime', 'errno', 'functools', 'google', 'google_auth_oauthlib', 'grpc', 'json', 'numpy', 'os', 'requests', 'string', 'sys', 'tensorboard', 'textwrap', 'time', 'webbrowser']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\uploader'],2024-01-15 04:50:41,12
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / uploader / proto,"['google', 'grpc', 'tensorboard']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\uploader\\proto'],2024-01-15 04:50:41,15
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / util,"['contextlib', 'enum', 'functools', 'grpc', 'logging', 'numpy', 'random', 'tensorboard', 'tensorflow', 'threading', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\util'],2024-01-15 04:50:41,10
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\_vendor'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor / bleach,"['__future__', 'collections', 'datetime', 'decimal', 're', 'six', 'tensorboard', 'types', 'xml']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\_vendor\\bleach'],2024-01-15 04:51:47,7
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor / html5lib,"['__future__', '_inputstream', '_trie', 'chardet', 'codecs', 'collections', 'constants', 'filters', 'html5parser', 'io', 're', 'serializer', 'six', 'string', 'sys', 'tensorboard', 'treebuilders', 'treewalkers', 'types', 'warnings', 'xml']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\_vendor\\html5lib'],2024-01-15 04:51:47,8
+deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor / webencodings,"['__future__', 'codecs', 'json', 'labels', 'urllib', 'x_user_defined']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard\\_vendor\\webencodings'],2024-01-15 04:51:47,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard_data_server,['os'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard_data_server'],2024-01-15 04:51:48,1
+deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit,"['__future__', 'argparse', 'copy', 'google', 'grpc', 'importlib', 'io', 'json', 'logging', 'math', 'numpy', 'os', 'pkg_resources', 'six', 'tensorboard', 'tensorboard_plugin_wit', 'tensorflow', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard_plugin_wit'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit / _utils,"['__future__', 'absl', 'collections', 'copy', 'csv', 'glob', 'google', 'grpc', 'inspect', 'json', 'math', 'numpy', 'os', 'random', 'six', 'tensorboard_plugin_wit', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard_plugin_wit\\_utils'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit / _vendor,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard_plugin_wit\\_vendor'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit / _vendor / tensorflow_serving,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorboard_plugin_wit\\_vendor\\tensorflow_serving'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow,"['_api', 'distutils', 'inspect', 'keras', 'logging', 'os', 'site', 'sys', 'tensorboard', 'tensorflow', 'tensorflow_estimator', 'tensorflow_io_gcs_filesystem', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow'],2024-01-15 04:52:06,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\compiler'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / jit,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\compiler\\jit'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / mlir,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\compiler\\mlir'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / tf2tensorrt,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\compiler\\tf2tensorrt'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / tf2xla,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\compiler\\tf2xla'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / xla,['google'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\compiler\\xla'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / config,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\config'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / debug,"['google', 'grpc', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\debug'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / distributed_runtime,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\distributed_runtime'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / example,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\example'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / framework,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\framework'],2024-01-15 04:50:41,30
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / function,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\function'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / grappler,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\grappler'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / lib,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\lib'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / profiler,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\profiler'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / protobuf,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\protobuf'],2024-01-15 04:50:41,32
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / util,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\core\\util'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / distribute,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\distribute'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / distribute / experimental,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\distribute\\experimental'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / dtensor,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\dtensor'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / dtensor / proto,['google'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\dtensor\\proto'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / dtensor / python,"['absl', 'atexit', 'collections', 'contextlib', 'dataclasses', 'functools', 'itertools', 'logging', 'numpy', 'os', 'tensorflow', 'threading', 'time', 'typing', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\dtensor\\python'],2024-01-15 04:51:48,15
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\lite'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / experimental,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\lite\\experimental'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / python,"['absl', 'argparse', 'collections', 'copy', 'ctypes', 'datetime', 'distutils', 'enum', 'flatbuffers', 'functools', 'google', 'hashlib', 'jax', 'json', 'numpy', 'os', 'platform', 'pprint', 'shutil', 'subprocess', 'sys', 'tempfile', 'tensorflow', 'tflite_runtime', 'time', 'typing', 'uuid', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\lite\\python'],2024-01-15 04:50:41,16
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / toco,"['google', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\lite\\toco'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / tools,"['copy', 'flatbuffers', 'json', 'numpy', 'os', 'random', 're', 'struct', 'sys', 'tensorflow', 'tflite_runtime']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\lite\\tools'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python,"['ctypes', 'importlib', 'sys', 'tensorflow', 'traceback']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / autograph,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\autograph'],2024-01-15 04:51:59,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / checkpoint,"['abc', 'absl', 'atexit', 'collections', 'copy', 'functools', 'glob', 'google', 'os', 're', 'tensorflow', 'threading', 'time', 'typing', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\checkpoint'],2024-01-15 04:50:41,15
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / client,"['collections', 'copy', 'functools', 'json', 'numpy', 're', 'tensorflow', 'threading', 'warnings', 'wrapt']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\client'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / compat,"['datetime', 'os', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\compat'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / compiler,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\compiler'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / data,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\data'],2024-01-15 04:52:00,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / debug,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\debug'],2024-01-15 04:52:00,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / distribute,"['__future__', 'absl', 'atexit', 'collections', 'contextlib', 'copy', 'dataclasses', 'dill', 'enum', 'faulthandler', 'functools', 'io', 'itertools', 'json', 'math', 'multiprocessing', 'numpy', 'objgraph', 'os', 'platform', 're', 'signal', 'six', 'subprocess', 'sys', 'tblib', 'tempfile', 'tensorflow', 'threading', 'time', 'types', 'typing', 'unittest', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\distribute'],2024-01-15 04:50:41,47
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / dlpack,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\dlpack'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / eager,"['absl', 'collections', 'contextlib', 'copy', 'datetime', 'functools', 'gc', 'google', 'numpy', 'operator', 'os', 'random', 'tensorflow', 'threading', 'time', 'uuid', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\eager'],2024-01-15 04:50:41,23
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / estimator,['tensorflow_estimator'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\estimator'],2024-01-15 04:50:41,10
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / feature_column,"['abc', 'collections', 'math', 'numpy', 're', 'six', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\feature_column'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / framework,"['abc', 'absl', 'builtins', 'collections', 'contextlib', 'copy', 'enum', 'errno', 'functools', 'gc', 'google', 'hashlib', 'importlib', 'inspect', 'itertools', 'math', 'numpy', 'operator', 'os', 'packaging', 'platform', 'portpicker', 'random', 're', 'site', 'sys', 'tempfile', 'tensorflow', 'threading', 'time', 'traceback', 'types', 'typing', 'typing_extensions', 'unittest', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\framework'],2024-01-15 04:50:41,60
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / grappler,"['contextlib', 'tensorflow', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\grappler'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / keras,"['abc', 'absl', 'collections', 'contextlib', 'copy', 'csv', 'functools', 'google', 'h5py', 'itertools', 'json', 'math', 'numpy', 'os', 're', 'requests', 'sys', 'tensorboard', 'tensorflow', 'threading', 'time', 'types', 'unittest', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\keras'],2024-01-15 04:52:01,16
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / kernel_tests,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\kernel_tests'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / layers,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\layers'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / lib,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\lib'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / module,"['re', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\module'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / ops,"['abc', 'absl', 'builtins', 'collections', 'contextlib', 'copy', 'enum', 'functools', 'hashlib', 'itertools', 'math', 'numbers', 'numpy', 'operator', 'opt_einsum', 'os', 'platform', 'pprint', 'random', 're', 'string', 'sys', 'tensorflow', 'threading', 'traceback', 'typing', 'uuid', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\ops'],2024-01-15 04:50:41,169
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / platform,"['_thread', 'absl', 'atexit', 'collections', 'ctypes', 'functools', 'logging', 'math', 'mock', 'numbers', 'os', 'platform', 're', 'rules_python', 'sys', 'tempfile', 'tensorflow', 'threading', 'time', 'traceback', 'types', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\platform'],2024-01-15 04:50:41,17
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / profiler,"['collections', 'copy', 'functools', 'google', 'os', 'sys', 'tensorflow', 'threading']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\profiler'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / saved_model,"['absl', 'collections', 'contextlib', 'enum', 'functools', 'google', 'keras', 'os', 'pprint', 're', 'sys', 'tensorflow', 'threading', 'traceback', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\saved_model'],2024-01-15 04:50:41,31
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / summary,"['abc', 'contextlib', 'google', 'tensorboard', 'tensorflow', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\summary'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / tools,"['absl', 'argparse', 'ast', 'collections', 'copy', 'google', 'importlib', 'json', 'math', 'numpy', 'os', 're', 'shlex', 'sys', 'tensorflow', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\tools'],2024-01-15 04:50:41,14
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / tpu,"['abc', 'absl', 'collections', 'contextlib', 'copy', 'enum', 'functools', 'gc', 'google', 'hashlib', 'itertools', 'logging', 'math', 'numpy', 'operator', 'os', 're', 'sys', 'tensorflow', 'tensorflow_estimator', 'threading', 'time', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\tpu'],2024-01-15 04:52:02,40
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / trackable,"['__future__', 'abc', 'absl', 'collections', 'contextlib', 'copy', 'enum', 'functools', 'operator', 'os', 'sys', 'tensorflow', 'third_party', 'typing', 'warnings', 'weakref', 'wrapt']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\trackable'],2024-01-15 04:50:41,12
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / training,"['abc', 'collections', 'contextlib', 'glob', 'google', 'math', 'numpy', 'os', 'sys', 'tensorflow', 'threading', 'time', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\training'],2024-01-15 04:50:41,45
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / types,"['abc', 'numpy', 'sys', 'tensorflow', 'textwrap', 'typing', 'typing_extensions']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\types'],2024-01-15 04:52:03,7
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / user_ops,['tensorflow'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\user_ops'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / util,"['codecs', 'collections', 'contextlib', 'copy', 'functools', 'importlib', 'inspect', 'itertools', 'numbers', 'numpy', 'os', 're', 'six', 'sys', 'tensorflow', 'textwrap', 'threading', 'traceback', 'types', 'typing', 'weakref', 'wrapt']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\python\\util'],2024-01-15 04:50:41,31
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tools'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / common,"['enum', 're', 'sys', 'tensorflow']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tools\\common'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / compatibility,"['argparse', 'ast', 'collections', 'copy', 'functools', 'json', 'os', 'pasta', 're', 'shutil', 'sys', 'tempfile', 'tensorflow', 'traceback']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tools\\compatibility'],2024-01-15 04:50:41,10
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / docs,"['doctest', 'numpy', 're', 'textwrap', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tools\\docs'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / pip_package,"['code', 'fnmatch', 'os', 'platform', 're', 'setuptools', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tools\\pip_package'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tsl,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tsl'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tsl / profiler,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tsl\\profiler'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / tsl / protobuf,['google'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\tsl\\protobuf'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / _api,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\_api'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow / _api / v2,"['distutils', 'inspect', 'keras', 'logging', 'os', 'site', 'sys', 'tensorboard', 'tensorflow', 'tensorflow_estimator', 'tensorflow_io_gcs_filesystem', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow\\_api\\v2'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator,"['sys', 'tensorflow', 'tensorflow_estimator']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_estimator'],2024-01-15 04:52:07,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / python,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_estimator\\python'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / python / estimator,"['__future__', 'abc', 'absl', 'collections', 'copy', 'google', 'heapq', 'json', 'math', 'numpy', 'operator', 'os', 're', 'six', 'tempfile', 'tensorflow', 'tensorflow_estimator', 'time']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_estimator\\python\\estimator'],2024-01-15 04:50:41,14
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / _api,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_estimator\\_api'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / _api / v1,"['sys', 'tensorflow', 'tensorflow_estimator']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_estimator\\_api\\v1'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / _api / v2,"['sys', 'tensorflow_estimator']",['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_estimator\\_api\\v2'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_io_gcs_filesystem,['tensorflow_io_gcs_filesystem'],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_io_gcs_filesystem'],2024-01-15 04:52:07,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_io_gcs_filesystem / core,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_io_gcs_filesystem\\core'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / tensorflow_io_gcs_filesystem / core / python,[],['deep_real_time1\\venvs\\Lib\\site-packages\\tensorflow_io_gcs_filesystem\\core\\python'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / termcolor,"['__future__', 'os', 'sys', 'termcolor', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\termcolor'],2024-01-15 04:52:07,3
+deep_real_time1 / venvs / Lib / site-packages / tinycss2,"['ast', 'bytes', 'collections', 'colorsys', 'parser', 're', 'serializer', 'sys', 'tokenizer', 'webencodings']",['deep_real_time1\\venvs\\Lib\\site-packages\\tinycss2'],2024-01-15 04:52:07,8
+deep_real_time1 / venvs / Lib / site-packages / tornado,"['Cookie', '__builtin__', '__future__', '_thread', 'array', 'atexit', 'backports', 'backports_abc', 'base64', 'binascii', 'builtins', 'cStringIO', 'calendar', 'certifi', 'codecs', 'collections', 'colorama', 'concurrent', 'copy', 'csv', 'curses', 'datetime', 'doctest', 'email', 'errno', 'functools', 'gettext', 'gzip', 'hashlib', 'heapq', 'hmac', 'html', 'htmlentitydefs', 'http', 'httplib', 'inspect', 'io', 'itertools', 'json', 'linecache', 'logging', 'math', 'mimetypes', 'multiprocessing', 'numbers', 'os', 'pkgutil', 'platform', 'posixpath', 'pycurl', 'random', 're', 'runpy', 'select', 'signal', 'singledispatch', 'socket', 'ssl', 'stat', 'struct', 'subprocess', 'sys', 'textwrap', 'thread', 'threading', 'time', 'tornado', 'traceback', 'types', 'typing', 'unittest', 'unittest2', 'urllib', 'urlparse', 'uuid', 'weakref', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\tornado'],2024-01-15 04:52:07,32
+deep_real_time1 / venvs / Lib / site-packages / tornado / platform,"['__future__', 'asyncio', 'auto', 'ctypes', 'datetime', 'errno', 'fcntl', 'functools', 'monotime', 'monotonic', 'numbers', 'os', 'pycares', 'select', 'socket', 'sys', 'time', 'tornado', 'trollius', 'twisted', 'zope']",['deep_real_time1\\venvs\\Lib\\site-packages\\tornado\\platform'],2024-01-15 04:50:41,12
+deep_real_time1 / venvs / Lib / site-packages / tornado / test,"['__future__', '_thread', 'base64', 'binascii', 'cStringIO', 'collections', 'concurrent', 'contextlib', 'copy', 'datetime', 'email', 'errno', 'fcntl', 'functools', 'gc', 'glob', 'gzip', 'hashlib', 'io', 'itertools', 'locale', 'logging', 'mock', 'operator', 'os', 'pickle', 'platform', 'pycares', 'pycurl', 'random', 're', 'shutil', 'signal', 'socket', 'ssl', 'subprocess', 'sys', 'tempfile', 'textwrap', 'thread', 'threading', 'time', 'tornado', 'traceback', 'twisted', 'types', 'unittest', 'unittest2', 'urllib', 'warnings', 'weakref', 'wsgiref', 'zope']",['deep_real_time1\\venvs\\Lib\\site-packages\\tornado\\test'],2024-01-15 04:50:41,38
+deep_real_time1 / venvs / Lib / site-packages / traitlets,"['_version', 'ast', 'config', 'contextlib', 'enum', 'inspect', 'logging', 'os', 're', 'sys', 'traitlets', 'types', 'typing', 'utils', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\traitlets'],2024-01-15 04:52:07,4
+deep_real_time1 / venvs / Lib / site-packages / traitlets / config,"['application', 'argcomplete', 'argparse', 'collections', 'configurable', 'contextlib', 'copy', 'difflib', 'errno', 'functools', 'json', 'loader', 'logging', 'os', 'pprint', 're', 'sys', 'textwrap', 'traitlets', 'typing', 'utils', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\traitlets\\config'],2024-01-15 04:52:07,7
+deep_real_time1 / venvs / Lib / site-packages / traitlets / config / tests,"['contextlib', 'copy', 'io', 'itertools', 'json', 'logging', 'os', 'pickle', 'pytest', 'sys', 'tempfile', 'tests', 'traitlets', 'typing', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\traitlets\\config\\tests'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / traitlets / tests,"['_warnings', 'contextlib', 'copy', 'enum', 'inspect', 'os', 'pickle', 'pytest', 're', 'subprocess', 'sys', 'traitlets', 'typing', 'unittest', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\traitlets\\tests'],2024-01-15 04:50:41,5
+deep_real_time1 / venvs / Lib / site-packages / traitlets / utils,"['copy', 'functools', 'inspect', 'os', 'pathlib', 're', 'textwrap', 'traitlets', 'types', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\traitlets\\utils'],2024-01-15 04:52:07,9
+deep_real_time1 / venvs / Lib / site-packages / traitlets / utils / tests,"['bunch', 'decorators', 'importstring', 'inspect', 'os', 'traitlets', 'unittest']",['deep_real_time1\\venvs\\Lib\\site-packages\\traitlets\\utils\\tests'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / urllib3,"['__future__', '_collections', 'binascii', 'codecs', 'collections', 'connection', 'connectionpool', 'contextlib', 'datetime', 'email', 'errno', 'exceptions', 'fields', 'filepost', 'functools', 'io', 'logging', 'mimetypes', 'os', 'packages', 'poolmanager', 'request', 'response', 'socket', 'ssl', 'sys', 'threading', 'util', 'warnings', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3'],2024-01-15 04:52:07,10
+deep_real_time1 / venvs / Lib / site-packages / urllib3 / contrib,"['OpenSSL', '__future__', '_securetransport', 'connection', 'connectionpool', 'contextlib', 'cryptography', 'ctypes', 'errno', 'exceptions', 'google', 'idna', 'io', 'logging', 'ntlm', 'os', 'packages', 'poolmanager', 'request', 'response', 'shutil', 'socket', 'socks', 'ssl', 'sys', 'threading', 'util', 'warnings', 'weakref']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3\\contrib'],2024-01-15 04:50:41,7
+deep_real_time1 / venvs / Lib / site-packages / urllib3 / contrib / _securetransport,"['__future__', 'base64', 'bindings', 'ctypes', 'itertools', 'os', 'platform', 're', 'ssl', 'tempfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3\\contrib\\_securetransport'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / urllib3 / packages,"['StringIO', '__future__', 'functools', 'io', 'itertools', 'operator', 'struct', 'sys', 'types']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3\\packages'],2024-01-15 04:52:07,2
+deep_real_time1 / venvs / Lib / site-packages / urllib3 / packages / backports,"['io', 'socket']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3\\packages\\backports'],2024-01-15 04:50:41,2
+deep_real_time1 / venvs / Lib / site-packages / urllib3 / packages / ssl_match_hostname,"['_implementation', 'backports', 'ipaddress', 're', 'ssl', 'sys']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3\\packages\\ssl_match_hostname'],2024-01-15 04:52:07,2
+deep_real_time1 / venvs / Lib / site-packages / urllib3 / util,"['Queue', '__future__', 'base64', 'binascii', 'collections', 'connection', 'contrib', 'email', 'errno', 'exceptions', 'functools', 'hashlib', 'hmac', 'ipaddress', 'itertools', 'logging', 'packages', 're', 'request', 'response', 'retry', 'select', 'socket', 'ssl', 'ssl_', 'sys', 'time', 'timeout', 'url', 'wait', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\urllib3\\util'],2024-01-15 04:52:07,10
+deep_real_time1 / venvs / Lib / site-packages / wcwidth,"['__future__', 'backports', 'functools', 'os', 'sys', 'table_wide', 'table_zero', 'unicode_versions', 'warnings', 'wcwidth']",['deep_real_time1\\venvs\\Lib\\site-packages\\wcwidth'],2024-01-15 04:52:08,5
+deep_real_time1 / venvs / Lib / site-packages / webencodings,"['__future__', 'codecs', 'json', 'labels', 'urllib', 'x_user_defined']",['deep_real_time1\\venvs\\Lib\\site-packages\\webencodings'],2024-01-15 04:52:08,5
+deep_real_time1 / venvs / Lib / site-packages / werkzeug,"['_internal', '_reloader', '_typeshed', 'atexit', 'base64', 'codecs', 'collections', 'colorama', 'contextvars', 'copy', 'cryptography', 'datastructures', 'datetime', 'debug', 'email', 'enum', 'errno', 'exceptions', 'fnmatch', 'functools', 'hashlib', 'hmac', 'http', 'io', 'itertools', 'json', 'logging', 'markupsafe', 'math', 'middleware', 'mimetypes', 'ntpath', 'operator', 'os', 'pathlib', 'pkg_resources', 'pkgutil', 'posixpath', 'random', 're', 'sansio', 'secrets', 'security', 'serving', 'shutil', 'signal', 'socket', 'socketserver', 'ssl', 'string', 'subprocess', 'sys', 'tempfile', 'termios', 'test', 'textwrap', 'threading', 'time', 'typing', 'typing_extensions', 'unicodedata', 'urllib', 'urls', 'utils', 'warnings', 'watchdog', 'weakref', 'wrappers', 'wsgi', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\werkzeug'],2024-01-15 04:52:08,16
+deep_real_time1 / venvs / Lib / site-packages / werkzeug / debug,"['_internal', '_typeshed', 'code', 'codecs', 'codeop', 'collections', 'console', 'contextlib', 'contextvars', 'exceptions', 'getpass', 'hashlib', 'http', 'io', 'itertools', 'json', 'linecache', 'markupsafe', 'os', 'pkgutil', 'pydoc', 're', 'repr', 'security', 'subprocess', 'sys', 'sysconfig', 'tbtools', 'time', 'traceback', 'types', 'typing', 'utils', 'uuid', 'winreg', 'wrappers', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\werkzeug\\debug'],2024-01-15 04:52:08,4
+deep_real_time1 / venvs / Lib / site-packages / werkzeug / middleware,"['_typeshed', 'cProfile', 'datastructures', 'datetime', 'exceptions', 'fnmatch', 'http', 'io', 'mimetypes', 'os', 'pkgutil', 'posixpath', 'profile', 'pstats', 'security', 'sys', 'time', 'types', 'typing', 'urllib', 'urls', 'utils', 'warnings', 'wsgi', 'zlib']",['deep_real_time1\\venvs\\Lib\\site-packages\\werkzeug\\middleware'],2024-01-15 04:52:08,7
+deep_real_time1 / venvs / Lib / site-packages / werkzeug / routing,"['_internal', '_typeshed', 'ast', 'converters', 'dataclasses', 'datastructures', 'difflib', 'exceptions', 'map', 'matcher', 'posixpath', 'pprint', 're', 'rules', 'string', 'threading', 'types', 'typing', 'typing_extensions', 'urls', 'utils', 'uuid', 'warnings', 'wrappers', 'wsgi']",['deep_real_time1\\venvs\\Lib\\site-packages\\werkzeug\\routing'],2024-01-15 04:52:08,6
+deep_real_time1 / venvs / Lib / site-packages / werkzeug / sansio,"['_internal', 'dataclasses', 'datastructures', 'datetime', 'enum', 'exceptions', 'http', 're', 'typing', 'urls', 'user_agent', 'utils', 'werkzeug']",['deep_real_time1\\venvs\\Lib\\site-packages\\werkzeug\\sansio'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / werkzeug / wrappers,"['_internal', '_typeshed', 'datastructures', 'exceptions', 'formparser', 'functools', 'http', 'io', 'json', 'request', 'response', 'sansio', 'test', 'typing', 'typing_extensions', 'urls', 'utils', 'warnings', 'werkzeug', 'wsgi']",['deep_real_time1\\venvs\\Lib\\site-packages\\werkzeug\\wrappers'],2024-01-15 04:52:08,3
+deep_real_time1 / venvs / Lib / site-packages / wheel,"['__future__', 'base64', 'collections', 'csv', 'ctypes', 'email', 'glob', 'hashlib', 'io', 'logging', 'macosx_libfile', 'metadata', 'os', 'pkg_resources', 're', 'setuptools', 'shutil', 'stat', 'sys', 'sysconfig', 'textwrap', 'time', 'typing', 'util', 'vendored', 'warnings', 'wheel', 'wheelfile', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\wheel'],2024-01-15 04:52:08,8
+deep_real_time1 / venvs / Lib / site-packages / wheel / cli,"['__future__', 'argparse', 'bdist_wheel', 'convert', 'distutils', 'glob', 'os', 'pack', 'pathlib', 're', 'setuptools', 'shutil', 'sys', 'tempfile', 'unpack', 'wheel', 'wheelfile', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\wheel\\cli'],2024-01-15 04:52:08,4
+deep_real_time1 / venvs / Lib / site-packages / wheel / vendored,[],['deep_real_time1\\venvs\\Lib\\site-packages\\wheel\\vendored'],2024-01-15 04:50:41,1
+deep_real_time1 / venvs / Lib / site-packages / wheel / vendored / packaging,"['__future__', '_manylinux', 'collections', 'contextlib', 'ctypes', 'functools', 'importlib', 'logging', 'operator', 'os', 'platform', 're', 'struct', 'subprocess', 'sys', 'sysconfig', 'typing', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\wheel\\vendored\\packaging'],2024-01-15 04:50:41,4
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos,"['_thread', 'array', 'commctrl', 'getopt', 'glob', 'io', 'math', 'mmapfile', 'msvcrt', 'ntsecuritycon', 'optparse', 'os', 'pickle', 'pprint', 'pythoncom', 'pywin32_testutil', 'pywintypes', 'queue', 'random', 'struct', 'sys', 'tempfile', 'threading', 'time', 'timer', 'traceback', 'win32api', 'win32clipboard', 'win32com', 'win32con', 'win32console', 'win32cred', 'win32event', 'win32evtlog', 'win32evtlogutil', 'win32file', 'win32gui', 'win32gui_dialog', 'win32gui_struct', 'win32net', 'win32netcon', 'win32print', 'win32process', 'win32profile', 'win32ras', 'win32rcparser', 'win32security', 'win32service', 'win32transaction', 'win32ts', 'wincerapi', 'winerror', 'winioctlcon', 'winnt', 'winxpgui']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos'],2024-01-15 04:52:08,38
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / c_extension,"['distutils', 'os', 'sysconfig']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos\\c_extension'],2024-01-15 04:52:08,1
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / dde,"['dde', 'pywin', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos\\dde'],2024-01-15 04:52:08,2
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / pipes,"['msvcrt', 'os', 'sys', 'win32api', 'win32con', 'win32file', 'win32pipe', 'win32process', 'win32security']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos\\pipes'],2024-01-15 04:52:08,2
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / security,"['ntsecuritycon', 'os', 'pywintypes', 'security_enums', 'sys', 'win32api', 'win32con', 'win32event', 'win32file', 'win32net', 'win32process', 'win32security', 'winerror', 'winnt']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos\\security'],2024-01-15 04:52:08,20
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / service,"['_thread', 'getopt', 'ntsecuritycon', 'os', 'pipeTestService', 'pywintypes', 'servicemanager', 'sys', 'traceback', 'win32api', 'win32con', 'win32event', 'win32file', 'win32gui', 'win32gui_struct', 'win32pipe', 'win32service', 'win32serviceutil', 'win32traceutil', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos\\service'],2024-01-15 04:52:09,4
+deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / win32wnet,"['os', 'win32api', 'win32wnet', 'winnetwk']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\Demos\\win32wnet'],2024-01-15 04:52:09,2
+deep_real_time1 / venvs / Lib / site-packages / win32 / lib,"['_thread', '_win32sysloader', '_winxptheme', 'array', 'collections', 'commctrl', 'copy', 'datetime', 'gc', 'getopt', 'glob', 'importlib', 'itertools', 'logging', 'ntsecuritycon', 'odbc', 'operator', 'optparse', 'os', 'perfmon', 'pickle', 'pprint', 'pythoncom', 'pywin32_system32', 'pywintypes', 're', 'regutil', 'servicemanager', 'shlex', 'site', 'sspicon', 'stat', 'struct', 'sys', 'time', 'unittest', 'warnings', 'win32api', 'win32com', 'win32con', 'win32evtlog', 'win32evtlogutil', 'win32gui', 'win32pdh', 'win32ras', 'win32security', 'win32service', 'win32trace', 'win32wnet', 'winerror', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\lib'],2024-01-15 04:52:09,33
+deep_real_time1 / venvs / Lib / site-packages / win32 / scripts,"['getopt', 'importlib', 'os', 'pythoncom', 'pywin', 'pywintypes', 'regcheck', 'regutil', 'shutil', 'sys', 'time', 'win32api', 'win32con', 'win32evtlog', 'win32pdhutil', 'win32ras', 'win32service', 'win32ui', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\scripts'],2024-01-15 04:52:09,6
+deep_real_time1 / venvs / Lib / site-packages / win32 / scripts / ce,"['fnmatch', 'getopt', 'os', 'pywin', 'string', 'sys', 'win32api', 'win32con', 'win32file', 'win32ui', 'wincerapi']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\scripts\\ce'],2024-01-15 04:52:09,1
+deep_real_time1 / venvs / Lib / site-packages / win32 / scripts / VersionStamp,"['bulkstamp', 'fnmatch', 'getopt', 'os', 'pythoncom', 'pywin', 'string', 'sys', 'time', 'traceback', 'verstamp', 'vssutil', 'win32api', 'win32com', 'win32con', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\scripts\\VersionStamp'],2024-01-15 04:52:09,3
+deep_real_time1 / venvs / Lib / site-packages / win32 / test,"['argparse', 'array', 'binascii', 'contextlib', 'datetime', 'doctest', 'gc', 'netbios', 'ntsecuritycon', 'odbc', 'operator', 'os', 'pythoncom', 'pywin32_testutil', 'pywintypes', 'random', 're', 'sets', 'shutil', 'socket', 'sspi', 'sspicon', 'subprocess', 'sys', 'tempfile', 'threading', 'time', 'traceback', 'typing', 'unittest', 'win32api', 'win32clipboard', 'win32com', 'win32con', 'win32crypt', 'win32cryptcon', 'win32event', 'win32file', 'win32gui', 'win32gui_struct', 'win32inet', 'win32inetcon', 'win32net', 'win32netcon', 'win32pipe', 'win32print', 'win32process', 'win32profile', 'win32rcparser', 'win32security', 'win32timezone', 'win32trace', 'win32ui', 'win32wnet', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32\\test'],2024-01-15 04:52:09,23
+deep_real_time1 / venvs / Lib / site-packages / win32com,"['os', 'pythoncom', 'sys', 'types', 'win32api', 'win32com', 'win32con', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com'],2024-01-15 04:52:09,5
+deep_real_time1 / venvs / Lib / site-packages / win32com / client,"['codecs', 'commctrl', 'datetime', 'getopt', 'glob', 'importlib', 'io', 'keyword', 'os', 'pickle', 'pythoncom', 'pywin', 'pywintypes', 'shutil', 'string', 'sys', 'time', 'traceback', 'types', 'win32api', 'win32com', 'win32con', 'win32ui', 'winerror', 'zipfile']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com\\client'],2024-01-15 04:52:09,12
+deep_real_time1 / venvs / Lib / site-packages / win32com / demos,"['datetime', 'pythoncom', 'pywin32_testutil', 'sys', 'threading', 'time', 'win32api', 'win32com', 'win32con', 'win32event', 'win32ui', 'winreg']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com\\demos'],2024-01-15 04:50:41,11
+deep_real_time1 / venvs / Lib / site-packages / win32com / makegw,"['re', 'string', 'traceback', 'win32com']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com\\makegw'],2024-01-15 04:52:09,4
+deep_real_time1 / venvs / Lib / site-packages / win32com / server,"['dispatcher', 'exception', 'os', 'pythoncom', 'pywintypes', 'sys', 'tempfile', 'traceback', 'types', 'win32api', 'win32com', 'win32con', 'win32event', 'win32process', 'win32trace', 'win32traceutil', 'winerror', 'winxpgui']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com\\server'],2024-01-15 04:52:09,9
+deep_real_time1 / venvs / Lib / site-packages / win32com / servers,"['importlib', 'pythoncom', 'pywintypes', 'sys', 'time', 'win32com', 'win32pdhutil', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com\\servers'],2024-01-15 04:50:41,6
+deep_real_time1 / venvs / Lib / site-packages / win32com / test,"['_thread', 'copy', 'datetime', 'decimal', 'distutils', 'gc', 'getopt', 'logging', 'msvcrt', 'netscape', 'numpy', 'os', 'pythoncom', 'pywin32_testutil', 'pywintypes', 'random', 're', 'shutil', 'string', 'struct', 'sys', 'tempfile', 'testServers', 'threading', 'time', 'traceback', 'types', 'unittest', 'util', 'win32api', 'win32clipboard', 'win32com', 'win32con', 'win32event', 'win32gui', 'win32timezone', 'win32ui', 'winerror', 'winreg', 'xl5en32']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32com\\test'],2024-01-15 04:52:09,41
+deep_real_time1 / venvs / Lib / site-packages / win32comext / adsi,"['adsi', 'pythoncom', 'sys', 'win32com']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\adsi'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / adsi / demos,"['getopt', 'logging', 'ntsecuritycon', 'optparse', 'os', 'pythoncom', 'pywintypes', 'string', 'sys', 'textwrap', 'traceback', 'win32api', 'win32clipboard', 'win32com', 'win32con', 'win32security', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\adsi\\demos'],2024-01-15 04:52:10,4
+deep_real_time1 / venvs / Lib / site-packages / win32comext / authorization,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\authorization'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / authorization / demos,"['ntsecuritycon', 'os', 'pythoncom', 'win32api', 'win32com', 'win32con', 'win32security', 'win32service']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\authorization\\demos'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / axcontrol,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\axcontrol'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / axdebug,"['_thread', 'bdb', 'io', 'linecache', 'os', 'pprint', 'pythoncom', 'string', 'sys', 'tokenize', 'traceback', 'ttest', 'util', 'win32api', 'win32com', 'win32traceutil', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\axdebug'],2024-01-15 04:52:10,11
+deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\axscript'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript / client,"['framework', 'imp', 'linecache', 'os', 'profile', 'pstats', 'pyscript', 'pythoncom', 're', 'signal', 'sys', 'traceback', 'types', 'win32api', 'win32com', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\axscript\\client'],2024-01-15 04:52:10,8
+deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript / server,"['pythoncom', 'win32com', 'winerror']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\axscript\\server'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript / test,"['os', 'pythoncom', 'sys', 'traceback', 'unittest', 'win32com', 'win32ui']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\axscript\\test'],2024-01-15 04:52:10,3
+deep_real_time1 / venvs / Lib / site-packages / win32comext / bits,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\bits'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / bits / test,"['os', 'pythoncom', 'tempfile', 'win32api', 'win32com', 'win32event']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\bits\\test'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / directsound,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\directsound'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / directsound / test,"['os', 'pythoncom', 'pywin32_testutil', 'pywintypes', 'struct', 'sys', 'unittest', 'win32api', 'win32com', 'win32event']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\directsound\\test'],2024-01-15 04:52:10,3
+deep_real_time1 / venvs / Lib / site-packages / win32comext / ifilter,['pywintypes'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\ifilter'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / ifilter / demo,"['operator', 'os', 'pythoncom', 'pywintypes', 'sys', 'win32com']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\ifilter\\demo'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / internet,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\internet'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / mapi,"['exchange', 'exchdapi', 'mapi', 'mapitags', 'pythoncom', 'pywintypes', 'sys', 'win32com']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\mapi'],2024-01-15 04:52:10,4
+deep_real_time1 / venvs / Lib / site-packages / win32comext / mapi / demos,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\mapi\\demos'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / propsys,['pywintypes'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\propsys'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / propsys / test,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\propsys\\test'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / shell,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\shell'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / win32comext / shell / demos,"['glob', 'os', 'pythoncom', 'sys', 'time', 'win32api', 'win32com', 'win32con', 'win32gui']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\shell\\demos'],2024-01-15 04:52:10,12
+deep_real_time1 / venvs / Lib / site-packages / win32comext / shell / test,"['os', 'unittest', 'win32api', 'win32com']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\shell\\test'],2024-01-15 04:52:10,3
+deep_real_time1 / venvs / Lib / site-packages / win32comext / taskscheduler,['win32com'],['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\taskscheduler'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / win32comext / taskscheduler / test,"['os', 'pythoncom', 'sys', 'time', 'win32api', 'win32com']",['deep_real_time1\\venvs\\Lib\\site-packages\\win32comext\\taskscheduler\\test'],2024-01-15 04:52:10,4
+deep_real_time1 / venvs / Lib / site-packages / wrapt,"['_wrappers', 'arguments', 'builtins', 'decorators', 'functools', 'importer', 'importlib', 'inspect', 'operator', 'os', 'pkg_resources', 'sys', 'threading', 'weakref', 'wrappers']",['deep_real_time1\\venvs\\Lib\\site-packages\\wrapt'],2024-01-15 04:52:10,5
+deep_real_time1 / venvs / Lib / site-packages / yaml,"['base64', 'binascii', 'codecs', 'collections', 'composer', 'constructor', 'copyreg', 'cyaml', 'datetime', 'dumper', 'emitter', 'error', 'events', 'io', 'loader', 'nodes', 'parser', 're', 'reader', 'representer', 'resolver', 'scanner', 'serializer', 'sys', 'tokens', 'types', 'yaml']",['deep_real_time1\\venvs\\Lib\\site-packages\\yaml'],2024-01-15 04:52:10,17
+deep_real_time1 / venvs / Lib / site-packages / zmq,"['asyncio', 'collections', 'constants', 'contextlib', 'ctypes', 'enum', 'errno', 'functools', 'importlib', 'itertools', 'os', 'platform', 'selectors', 'sys', 'tornado', 'typing', 'typing_extensions', 'warnings', 'weakref', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq'],2024-01-15 04:52:10,7
+deep_real_time1 / venvs / Lib / site-packages / zmq / auth,"['asyncio', 'base', 'certs', 'datetime', 'glob', 'logging', 'os', 'threading', 'typing', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\auth'],2024-01-15 04:52:10,6
+deep_real_time1 / venvs / Lib / site-packages / zmq / backend,"['importlib', 'os', 'platform', 'select', 'typing']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\backend'],2024-01-15 04:52:10,2
+deep_real_time1 / venvs / Lib / site-packages / zmq / backend / cffi,"['__pypy__', '_cffi', '_poll', 'context', 'devices', 'errno', 'error', 'message', 'socket', 'threading', 'time', 'utils', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\backend\\cffi'],2024-01-15 04:52:10,8
+deep_real_time1 / venvs / Lib / site-packages / zmq / backend / cython,"['_device', '_poll', '_proxy_steerable', '_version', 'context', 'error', 'message', 'socket', 'utils']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\backend\\cython'],2024-01-15 04:52:10,1
+deep_real_time1 / venvs / Lib / site-packages / zmq / devices,"['multiprocessing', 'threading', 'time', 'typing', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\devices'],2024-01-15 04:52:10,6
+deep_real_time1 / venvs / Lib / site-packages / zmq / eventloop,"['asyncio', 'minitornado', 'pickle', 'queue', 'time', 'tornado', 'typing', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\eventloop'],2024-01-15 04:52:10,5
+deep_real_time1 / venvs / Lib / site-packages / zmq / green,"['gevent', 'poll', 'sys', 'time', 'typing', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\green'],2024-01-15 04:52:10,4
+deep_real_time1 / venvs / Lib / site-packages / zmq / green / eventloop,['zmq'],['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\green\\eventloop'],2024-01-15 04:52:10,3
+deep_real_time1 / venvs / Lib / site-packages / zmq / log,"['argparse', 'colorama', 'copy', 'datetime', 'logging', 'typing', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\log'],2024-01-15 04:50:41,3
+deep_real_time1 / venvs / Lib / site-packages / zmq / ssh,"['atexit', 'forward', 'getpass', 'logging', 'multiprocessing', 'os', 'paramiko', 'pexpect', 're', 'select', 'signal', 'socket', 'socketserver', 'sys', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\ssh'],2024-01-15 04:52:10,3
+deep_real_time1 / venvs / Lib / site-packages / zmq / sugar,"['atexit', 'attrsettr', 'constants', 'errno', 'os', 'pickle', 'poll', 'pyczmq', 'random', 're', 'socket', 'sys', 'threading', 'time', 'typing', 'warnings', 'weakref', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\sugar'],2024-01-15 04:52:10,9
+deep_real_time1 / venvs / Lib / site-packages / zmq / tests,"['asyncio', 'concurrent', 'contextlib', 'copy', 'ctypes', 'datetime', 'errno', 'functools', 'gc', 'gevent', 'inspect', 'json', 'logging', 'multiprocessing', 'numpy', 'os', 'platform', 'pyczmq', 'pytest', 'pyximport', 'queue', 'shutil', 'signal', 'socket', 'struct', 'subprocess', 'sys', 'threading', 'time', 'tornado', 'typing', 'unittest', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\tests'],2024-01-15 04:52:10,37
+deep_real_time1 / venvs / Lib / site-packages / zmq / utils,"['atexit', 'cffi', 'collections', 'ctypes', 'json', 'os', 'struct', 'threading', 'typing', 'warnings', 'zmq']",['deep_real_time1\\venvs\\Lib\\site-packages\\zmq\\utils'],2024-01-15 04:50:41,8
+deep_real_time1 / venvs / Lib / site-packages / _distutils_hack,"['importlib', 'os', 'sys', 'traceback', 'warnings']",['deep_real_time1\\venvs\\Lib\\site-packages\\_distutils_hack'],2024-01-15 04:52:11,2
+deep_real_time1 / venvs / Lib / site-packages / _yaml,"['sys', 'warnings', 'yaml']",['deep_real_time1\\venvs\\Lib\\site-packages\\_yaml'],2024-01-15 04:52:11,1
+deep_real_time1 / venvs / Scripts,"['argparse', 'asyncio', 'collections', 'glob', 'importlib', 'logging', 'os', 'pythoncom', 'shutil', 'signal', 'site', 'socket', 'subprocess', 'sys', 'sysconfig', 'tempfile', 'traceback', 'webbrowser', 'win32api', 'win32com', 'win32con', 'win32process', 'winreg']",['deep_real_time1\\venvs\\Scripts'],2024-01-15 04:52:11,4
+foto_generator_to_tg_channel,"['aiogram', 'apscheduler', 'data', 'handlers', 'loader', 'models', 'states']",['foto_generator_to_tg_channel'],2024-01-15 04:52:11,3
+foto_generator_to_tg_channel / data,[],['foto_generator_to_tg_channel\\data'],2024-01-15 04:52:11,1
+foto_generator_to_tg_channel / handlers,[],['foto_generator_to_tg_channel\\handlers'],2024-01-15 04:52:11,1
+foto_generator_to_tg_channel / handlers / admin,[],['foto_generator_to_tg_channel\\handlers\\admin'],2024-01-15 04:52:11,1
+foto_generator_to_tg_channel / handlers / admin / callback,"['aiogram', 'asyncio', 'datetime', 'json', 'loader', 'models', 'sqlite3', 'sys']",['foto_generator_to_tg_channel\\handlers\\admin\\callback'],2024-01-15 04:52:11,2
+foto_generator_to_tg_channel / handlers / admin / message,"['aiogram', 'asyncio', 'data', 'datetime', 'keyboards', 'loader', 're']",['foto_generator_to_tg_channel\\handlers\\admin\\message'],2024-01-15 04:52:11,4
+foto_generator_to_tg_channel / keyboards,[],['foto_generator_to_tg_channel\\keyboards'],2024-01-15 04:50:41,1
+foto_generator_to_tg_channel / keyboards / inline,['aiogram'],['foto_generator_to_tg_channel\\keyboards\\inline'],2024-01-15 04:52:11,1
+foto_generator_to_tg_channel / keyboards / reply,['aiogram'],['foto_generator_to_tg_channel\\keyboards\\reply'],2024-01-15 04:52:11,1
+foto_generator_to_tg_channel / models,['sqlite3'],['foto_generator_to_tg_channel\\models'],2024-01-15 04:52:11,2
+foto_generator_to_tg_channel / module,[],['foto_generator_to_tg_channel\\module'],2024-01-15 04:52:12,1
+foto_generator_to_tg_channel / module / generator,"['asyncio', 'bs4', 'datetime', 'os', 'pyppeteer', 'random', 'string']",['foto_generator_to_tg_channel\\module\\generator'],2024-01-15 04:52:12,3
+foto_generator_to_tg_channel / states,[],['foto_generator_to_tg_channel\\states'],2024-01-15 04:52:12,1
+foto_generator_to_tg_channel / states / admin,"['aiogram', 'asyncio', 'datetime', 'keyboards', 'loader', 'logging', 'module', 'os', 'random', 're', 'string']",['foto_generator_to_tg_channel\\states\\admin'],2024-01-15 04:52:12,4
+foto_generator_to_tg_channel / utils,[],['foto_generator_to_tg_channel\\utils'],2024-01-15 04:50:41,1
+foto_generator_to_tg_channel / utils / db_api,"['peewee', 'sqlite']",['foto_generator_to_tg_channel\\utils\\db_api'],2024-01-15 04:52:12,2
+foto_generator_to_tg_channel / utils / misc,['logging'],['foto_generator_to_tg_channel\\utils\\misc'],2024-01-15 04:52:12,2
+GIThub-Search-Dork-Parser,"['os', 'pickle', 'selenium', 'time']",['GIThub-Search-Dork-Parser'],2025-05-22 02:15:28,2
+LanguageInFileSearcher,"['googletrans', 'os', 'tkinter']",['LanguageInFileSearcher'],2024-04-27 01:34:37,1
+OTHER,"['os', 'subprocess', 'tkinter']",['OTHER'],2025-06-15 05:32:41,1
+Python Scrypt,"['aiogram', 'arrow', 'asyncio', 'bs4', 'csv', 'datetime', 'db', 'email', 'io', 'json', 'keyboards', 'numpy', 'opentele', 'os', 'pip', 'platform', 'pydantic', 'pyrogram', 're', 'requests', 'selenium', 'sklearn', 'smtplib', 'ssl', 'subprocess', 'sys', 'threading', 'tiktok_dl', 'time', 'tkinter', 'typing', 'unicodedata', 'urllib3', 'utils', 'uuid', 'win32api', 'win32con', 'win32file', 'winreg', 'winsound']",['Python Scrypt'],2024-01-15 04:52:20,19
+Python Scrypt / Первонах_pyrogram,[],['Python Scrypt\\Первонах_pyrogram'],2024-01-15 04:52:20,2
+py_import_parser,"['ast', 'collections', 'colorama', 'concurrent', 'datetime', 'matplotlib', 'os', 'pandas', 'pyperclip', 'queue', 're', 'stats_window', 'threading', 'tkinter', 'utils']",['py_import_parser'],2025-04-27 23:03:09,3
+roop-main(virtual_camera_deep) / roop-main,"['PIL', 'argparse', 'collections', 'core', 'ctypes', 'cv2', 'glob', 'multiprocessing', 'opennsfw2', 'os', 'pathlib', 'platform', 'psutil', 'resource', 'shutil', 'signal', 'sys', 'threading', 'tkinter', 'torch', 'webbrowser']",['roop-main(virtual_camera_deep)\\roop-main'],2024-01-15 04:52:22,2
+roop-main(virtual_camera_deep) / roop-main / core,"['core', 'cv2', 'insightface', 'onnxruntime', 'os', 'shutil', 'tqdm']",['roop-main(virtual_camera_deep)\\roop-main\\core'],2024-01-15 04:52:20,7
+roop-main(virtual_camera_deep) / roop-main1.0,"['PIL', 'argparse', 'core', 'cv2', 'glob', 'multiprocessing', 'os', 'pathlib', 'psutil', 'shutil', 'sys', 'threading', 'time', 'tkinter', 'torch', 'webbrowser']",['roop-main(virtual_camera_deep)\\roop-main1.0'],2024-01-15 04:53:46,2
+roop-main(virtual_camera_deep) / roop-main1.0 / core,"['core', 'cv2', 'insightface', 'onnxruntime', 'os', 'shutil']",['roop-main(virtual_camera_deep)\\roop-main1.0\\core'],2024-01-15 04:53:46,5
+roop-main(virtual_camera_deep) / roop-main3.0,"['PIL', 'argparse', 'core', 'ctypes', 'cv2', 'glob', 'multiprocessing', 'opennsfw2', 'os', 'pathlib', 'platform', 'psutil', 'resource', 'shutil', 'signal', 'sys', 'threading', 'tkinter', 'torch', 'webbrowser']",['roop-main(virtual_camera_deep)\\roop-main3.0'],2024-01-15 04:54:05,1
+roop-main(virtual_camera_deep) / roop-main3.0 / core,"['core', 'cv2', 'insightface', 'onnxruntime', 'os', 'shutil', 'tqdm']",['roop-main(virtual_camera_deep)\\roop-main3.0\\core'],2024-01-15 04:54:05,5
+roop-main(virtual_camera_deep) / roop-main4.0,"['PIL', 'cv2', 'os', 'pyvirtualcam', 'roop', 'threading', 'tkinter']",['roop-main(virtual_camera_deep)\\roop-main4.0'],2024-01-15 04:54:06,3
+roop-main(virtual_camera_deep) / roop-main4.0 / roop,"['PIL', 'argparse', 'ctypes', 'cv2', 'glob', 'insightface', 'multiprocessing', 'onnxruntime', 'opennsfw2', 'os', 'pathlib', 'platform', 'psutil', 'resource', 'roop', 'shutil', 'signal', 'sys', 'tensorflow', 'threading', 'tkinter', 'torch', 'tqdm', 'typing', 'webbrowser']",['roop-main(virtual_camera_deep)\\roop-main4.0\\roop'],2024-01-15 04:54:06,7
+roop-main(virtual_camera_deep) / roop-main5.0,['roop'],['roop-main(virtual_camera_deep)\\roop-main5.0'],2024-01-15 04:55:31,1
+roop-main(virtual_camera_deep) / roop-main5.0 / roop,"['PIL', 'argparse', 'ctypes', 'cv2', 'glob', 'insightface', 'multiprocessing', 'onnxruntime', 'opennsfw2', 'os', 'pathlib', 'platform', 'psutil', 'resource', 'roop', 'shutil', 'signal', 'sys', 'tensorflow', 'threading', 'tkinter', 'torch', 'tqdm', 'typing', 'webbrowser']",['roop-main(virtual_camera_deep)\\roop-main5.0\\roop'],2024-01-15 04:55:31,7
+SteamTraderBot,"['parsers', 'sys']",['SteamTraderBot'],2024-01-15 04:51:24,1
+SteamTraderBot / data,[],['SteamTraderBot\\data'],2025-05-30 01:08:44,1
+SteamTraderBot / parsers / buff163,"['bs4', 'datetime', 'fake_useragent', 'logging', 'os', 'pickle', 'proxy', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'sqlite3', 'sys', 'telebot', 'time', 'unittest']",['SteamTraderBot\\parsers\\buff163'],2024-01-15 04:51:24,3
+SteamTraderBot / parsers / steam,"['bs4', 'colorama', 'currency', 'data', 'datetime', 'get_data', 'json', 'os', 'pandas', 'parsers', 'random', 'requests', 'sqlite3', 'sys', 'time', 'typing', 'urllib']",['SteamTraderBot\\parsers\\steam'],2024-10-23 10:47:58,8
+SteamTraderBot / utils,[],['SteamTraderBot\\utils'],2025-05-21 21:57:11,1
+SteamTraderBot / utils / db_api,"['peewee', 'sqlite']",['SteamTraderBot\\utils\\db_api'],2025-05-21 21:57:11,2
+SteamTraderBot / utils / misc,['logging'],['SteamTraderBot\\utils\\misc'],2025-05-21 21:57:11,2
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram,"['aiogram', 'apscheduler', 'asyncio', 'config', 'data', 'datetime', 'httpcore', 'json', 'keyboards', 'logging', 'opentele', 'os', 'pickle', 're', 'requests', 'sqlite3', 'yt_dlp']",['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram'],2024-01-15 04:50:42,7
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / data,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\data'],2024-01-15 04:50:42,2
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / filters,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\filters'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\handlers'],2024-01-15 04:55:39,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / errors,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\handlers\\errors'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / groups,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\handlers\\groups'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / supergroups,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\handlers\\supergroups'],2024-01-15 04:55:39,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / users,"['aiogram', 'asyncio', 'data', 'loader', 'models', 'utils']",['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\handlers\\users'],2024-01-15 04:55:39,7
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / users / chat_join_request_handler,"['aiogram', 'apscheduler', 'asyncio', 'config', 'datetime', 'json', 'keyboards', 'logging', 'os', 're', 'requests', 'sqlite3']",['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\handlers\\users\\chat_join_request_handler'],2024-01-15 04:55:39,2
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / keyboards,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\keyboards'],2024-01-15 04:55:39,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / keyboards / inline,"['aiogram', 'main']",['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\keyboards\\inline'],2024-01-15 04:55:39,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / keyboards / reply,['aiogram'],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\keyboards\\reply'],2024-01-15 04:55:39,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / models,"['datetime', 'peewee', 'utils']",['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\models'],2024-01-15 04:55:39,4
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / utils,[],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\utils'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / utils / db_api,"['peewee', 'sqlite']",['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\utils\\db_api'],2024-01-15 04:55:39,2
+TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / utils / misc,['logging'],['TELEGRAM\\AIOGRAM\\Admin_E_commerce_Bot_Aiogram\\utils\\misc'],2024-01-15 04:55:39,2
+TELEGRAM / AIOGRAM / aiogram_chat_state_poster,"['aiogram', 'apscheduler', 'asyncio', 'config', 'datetime', 'json', 'keyboards', 'logging', 're', 'requests', 'sqlite3']",['TELEGRAM\\AIOGRAM\\aiogram_chat_state_poster'],2024-01-15 04:55:31,4
+TELEGRAM / AIOGRAM / Aiogram_Chat_Translator,"['aiogram', 'arq', 'asyncio', 'config', 'datetime', 'googletrans', 'logging', 'os', 'random', 're', 'sqlite3', 'sys']",['TELEGRAM\\AIOGRAM\\Aiogram_Chat_Translator'],2024-01-15 04:55:31,3
+TELEGRAM / AIOGRAM / approve_bot,"['aiogram', 'apscheduler', 'asyncio', 'config', 'datetime', 'logging', 'random', 'sqlite3', 'string']",['TELEGRAM\\AIOGRAM\\approve_bot'],2024-01-15 04:55:39,2
+TELEGRAM / AIOGRAM / ChatAdminBot,"['aiogram', 'asyncio', 'config', 'copy', 'datetime', 'keyboards', 'logging', 'pymongo', 'random', 're', 'telebot', 'threading', 'time']",['TELEGRAM\\AIOGRAM\\ChatAdminBot'],2024-01-15 04:55:39,3
+TELEGRAM / AIOGRAM / ItChatsAdmin,"['aiogram', 'apscheduler', 'asyncio', 'data', 'datetime', 'filters', 'handlers', 'keyboards', 'loader', 'models', 'module', 'sqlite3', 'states']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin'],2025-06-28 21:47:28,3
+TELEGRAM / AIOGRAM / ItChatsAdmin / data,"['aiogram', 'datetime']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\data'],2024-01-15 04:57:05,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / data / image,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\data\\image'],2025-06-28 17:18:26,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / filters,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\filters'],2025-06-27 01:06:12,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers'],2024-01-15 04:57:05,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / errors,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\errors'],2024-01-15 04:57:05,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / errors / callback,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\errors\\callback'],2025-06-28 17:18:31,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / errors / message,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\errors\\message'],2025-06-28 17:18:33,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / groups,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\groups'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / groups / callback,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\groups\\callback'],2025-06-28 17:18:37,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / groups / message,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\groups\\message'],2025-06-28 17:18:39,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / supergroups,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\supergroups'],2024-01-15 04:57:05,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / supergroups / callback,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\supergroups\\callback'],2025-06-28 17:19:18,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / supergroups / message,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\supergroups\\message'],2025-06-28 17:19:20,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / users,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\users'],2024-01-15 04:57:05,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / users / callback,"['aiogram', 'asyncio', 'data', 'datetime', 'json', 'keyboards', 'loader', 'models', 'sqlite3', 'sys']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\users\\callback'],2024-01-15 04:57:05,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / users / message,"['aiogram', 'data', 'loader']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\handlers\\users\\message'],2024-01-15 04:57:05,3
+TELEGRAM / AIOGRAM / ItChatsAdmin / keyboards,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\keyboards'],2025-06-27 01:06:12,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / keyboards / inline,['aiogram'],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\keyboards\\inline'],2025-06-27 01:06:12,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / keyboards / reply,['aiogram'],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\keyboards\\reply'],2025-06-27 01:06:12,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / models,"['asyncio', 'module', 'sqlite3']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\models'],2024-01-15 04:57:05,3
+TELEGRAM / AIOGRAM / ItChatsAdmin / module,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module'],2025-06-29 19:27:06,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / module / auth,"['asyncio', 'json', 'os', 'telethon']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module\\auth'],2025-07-01 21:17:43,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / module / checker,"['aiohttp', 'asyncio', 'module', 're', 'telethon']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module\\checker'],2025-07-01 21:17:43,3
+TELEGRAM / AIOGRAM / ItChatsAdmin / module / commands,['telethon'],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module\\commands'],2025-07-01 21:17:43,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / module / db,"['os', 'sqlite3']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module\\db'],2025-07-01 21:17:30,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / module / parser,"['re', 'telethon']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module\\parser'],2025-07-01 21:17:43,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / module / reporter,['module'],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\module\\reporter'],2025-07-01 21:17:43,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / states,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\states'],2024-01-15 04:57:05,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / states / admin,"['aiogram', 'asyncio', 'data', 'datetime', 'loader', 'logging', 'models', 'random', 'string']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\states\\admin'],2024-01-15 04:57:05,3
+TELEGRAM / AIOGRAM / ItChatsAdmin / states / user,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\states\\user'],2025-06-28 17:19:30,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / utils,[],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\utils'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / ItChatsAdmin / utils / db_api,"['peewee', 'sqlite']",['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\utils\\db_api'],2024-01-15 04:57:05,2
+TELEGRAM / AIOGRAM / ItChatsAdmin / utils / misc,['logging'],['TELEGRAM\\AIOGRAM\\ItChatsAdmin\\utils\\misc'],2024-01-15 04:57:05,2
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x,"['aiogram', 'data']",['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x'],2025-07-02 22:26:49,2
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / data,"['aiogram', 'datetime']",['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\data'],2025-07-03 01:09:25,2
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / data / image,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\data\\image'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / filters,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\filters'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / errors,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\errors'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / errors / callback,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\errors\\callback'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / errors / message,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\errors\\message'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / groups,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\groups'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / groups / callback,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\groups\\callback'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / groups / message,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\groups\\message'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / supergroups,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\supergroups'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / supergroups / callback,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\supergroups\\callback'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / supergroups / message,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\supergroups\\message'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / users,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\users'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / users / callback,"['aiogram', 'asyncio', 'data', 'datetime', 'json', 'keyboards', 'loader', 'models', 'sqlite3', 'sys']",['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\users\\callback'],2025-07-03 01:09:25,2
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / users / message,"['aiogram', 'data', 'loader']",['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\handlers\\users\\message'],2025-07-03 01:09:25,3
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / keyboards,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\keyboards'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / keyboards / inline,['aiogram'],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\keyboards\\inline'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / keyboards / reply,['aiogram'],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\keyboards\\reply'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / models,['sqlite3'],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\models'],2025-07-03 01:09:25,2
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / states,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\states'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / states / admin,"['aiogram', 'asyncio', 'data', 'datetime', 'loader', 'logging', 'models', 'random', 'string']",['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\states\\admin'],2025-07-03 01:09:25,3
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / states / user,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\states\\user'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / utils,[],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\utils'],2025-07-03 01:09:25,1
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / utils / db_api,"['peewee', 'sqlite']",['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\utils\\db_api'],2025-07-03 01:09:25,2
+TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / utils / misc,['logging'],['TELEGRAM\\AIOGRAM\\Sample-Template-Aiogram-3.x\\utils\\misc'],2025-07-03 01:09:25,2
+TELEGRAM / AIOGRAM / shop,"['aiogram', 'apscheduler', 'asyncio', 'config', 'cryptography', 'cx_Freeze', 'datetime', 'json', 'keyboards', 'logging', 'os', 're', 'requests', 'rsa', 'sqlite3', 'sys']",['TELEGRAM\\AIOGRAM\\shop'],2024-01-15 04:55:40,7
+TELEGRAM / AIOGRAM / subscribebot_aiogram,"['aiogram', 'data', 'filters', 'handlers', 'loader', 'models']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram'],2024-01-15 04:50:42,3
+TELEGRAM / AIOGRAM / subscribebot_aiogram / data,[],['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\data'],2024-01-15 04:50:42,2
+TELEGRAM / AIOGRAM / subscribebot_aiogram / filters,[],['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\filters'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers,[],['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\handlers'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / errors,"['aiogram', 'logging']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\handlers\\errors'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / groups,"['aiogram', 'loader']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\handlers\\groups'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / supergroups,"['aiogram', 'asyncio', 'data', 'json', 'keyboards', 'loader', 'logging', 'models', 'peewee', 'sys', 'utils']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\handlers\\supergroups'],2024-01-15 04:55:46,8
+TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / users,"['aiogram', 'asyncio', 'data', 'keyboards', 'loader', 'models', 'utils']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\handlers\\users'],2024-01-15 04:55:46,10
+TELEGRAM / AIOGRAM / subscribebot_aiogram / keyboards,[],['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\keyboards'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / subscribebot_aiogram / keyboards / inline,['aiogram'],['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\keyboards\\inline'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / subscribebot_aiogram / models,"['datetime', 'peewee', 'utils']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\models'],2024-01-15 04:55:46,5
+TELEGRAM / AIOGRAM / subscribebot_aiogram / utils / db_api,"['peewee', 'sqlite']",['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\utils\\db_api'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / subscribebot_aiogram / utils / misc,['logging'],['TELEGRAM\\AIOGRAM\\subscribebot_aiogram\\utils\\misc'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / TG_shop,"['bs4', 'logging', 're', 'requests', 'telebot', 'time']",['TELEGRAM\\AIOGRAM\\TG_shop'],2024-01-15 04:50:42,3
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot,"['aiogram', 'apscheduler', 'asyncio', 'data', 'datetime', 'filters', 'handlers', 'keyboards', 'loader', 'logging', 'models', 'sqlite3', 'states']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / data,"['aiogram', 'datetime']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\data'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / data / image,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\data\\image'],2025-06-28 17:15:00,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / data / photo,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\data\\photo'],2025-06-28 17:15:02,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / filters,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\filters'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / errors,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\errors'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / errors / callback,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\errors\\callback'],2025-06-28 17:14:58,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / errors / message,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\errors\\message'],2025-06-28 17:14:56,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / groups,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\groups'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / groups / callback,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\groups\\callback'],2025-06-28 17:14:55,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / groups / message,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\groups\\message'],2025-06-28 17:14:51,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / supergroups,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\supergroups'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / supergroups / callback,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\supergroups\\callback'],2025-06-28 17:14:40,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / supergroups / message,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\supergroups\\message'],2025-06-28 17:14:35,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / users,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\users'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / users / callback,"['aiogram', 'asyncio', 'data', 'datetime', 'json', 'keyboards', 'loader', 'models', 'sqlite3', 'sys', 'time']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\users\\callback'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / users / message,"['aiogram', 'asyncio', 'data', 'keyboards', 'loader', 'models', 'sqlite3', 'utils']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\handlers\\users\\message'],2024-01-15 04:55:46,4
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / keyboards,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\keyboards'],2024-01-15 04:50:42,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / keyboards / inline,['aiogram'],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\keyboards\\inline'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / keyboards / reply,['aiogram'],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\keyboards\\reply'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / models,['sqlite3'],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\models'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / states,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\states'],2024-01-15 04:55:46,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / states / admin,"['aiogram', 'asyncio', 'data', 'datetime', 'loader', 'logging', 'models', 'random', 'string']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\states\\admin'],2024-01-15 04:55:46,3
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / states / user,[],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\states\\user'],2025-06-28 17:15:14,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / test,"['aiogram', 'asyncio', 'logging']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\test'],2024-04-03 17:27:38,1
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / utils,"['os', 'time']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\utils'],2024-01-15 04:50:42,2
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / utils / db_api,"['peewee', 'sqlite']",['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\utils\\db_api'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / vpn_auto_shop_bot / utils / misc,['logging'],['TELEGRAM\\AIOGRAM\\vpn_auto_shop_bot\\utils\\misc'],2024-01-15 04:55:46,2
+TELEGRAM / AIOGRAM / YouTube_bot_aiogram,"['aiogram', 'asyncio', 'config', 'datetime', 'logging', 'os', 'pytube', 'sqlite3', 'tiktok_downloader', 'youtube_dl']",['TELEGRAM\\AIOGRAM\\YouTube_bot_aiogram'],2024-01-15 04:55:52,3
+TELEGRAM / AIOGRAM / Шаблон aiogram,"['aiogram', 'data']",['TELEGRAM\\AIOGRAM\\Шаблон aiogram'],2025-06-29 01:26:01,2
+TELEGRAM / AIOGRAM / Шаблон aiogram / data,"['aiogram', 'datetime']",['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\data'],2025-06-29 01:26:01,2
+TELEGRAM / AIOGRAM / Шаблон aiogram / data / image,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\data\\image'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / filters,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\filters'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / errors,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\errors'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / errors / callback,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\errors\\callback'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / errors / message,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\errors\\message'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / groups,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\groups'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / groups / callback,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\groups\\callback'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / groups / message,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\groups\\message'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / supergroups,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\supergroups'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / supergroups / callback,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\supergroups\\callback'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / supergroups / message,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\supergroups\\message'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / users,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\users'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / users / callback,"['aiogram', 'asyncio', 'datetime', 'json', 'loader', 'models', 'sqlite3', 'sys']",['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\users\\callback'],2025-06-29 01:26:01,2
+TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / users / message,"['aiogram', 'data', 'loader']",['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\handlers\\users\\message'],2025-06-29 01:26:01,3
+TELEGRAM / AIOGRAM / Шаблон aiogram / keyboards,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\keyboards'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / keyboards / inline,['aiogram'],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\keyboards\\inline'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / keyboards / reply,['aiogram'],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\keyboards\\reply'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / models,['sqlite3'],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\models'],2025-06-29 01:26:01,2
+TELEGRAM / AIOGRAM / Шаблон aiogram / states,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\states'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / states / admin,"['aiogram', 'asyncio', 'datetime', 'loader', 'logging', 'random', 'string']",['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\states\\admin'],2025-06-29 01:26:01,2
+TELEGRAM / AIOGRAM / Шаблон aiogram / states / user,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\states\\user'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / utils,[],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\utils'],2025-06-29 01:26:01,1
+TELEGRAM / AIOGRAM / Шаблон aiogram / utils / db_api,"['peewee', 'sqlite']",['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\utils\\db_api'],2025-06-29 01:26:01,2
+TELEGRAM / AIOGRAM / Шаблон aiogram / utils / misc,['logging'],['TELEGRAM\\AIOGRAM\\Шаблон aiogram\\utils\\misc'],2025-06-29 01:26:01,2
+TELEGRAM / AUTO_REGER / AutoRegerTg_5sim-Teleton,"['logging', 'os', 'requests', 'sys', 'telethon', 'time']",['TELEGRAM\\AUTO_REGER\\AutoRegerTg_5sim-Teleton'],2024-01-15 04:55:52,2
+TELEGRAM / AUTO_REGER / AutoRegerTg_Sms_Activate_Pyrogram,"['os', 'pyro_sms_activate', 'pyrogram', 'requests', 'shutil', 'time']",['TELEGRAM\\AUTO_REGER\\AutoRegerTg_Sms_Activate_Pyrogram'],2024-01-15 04:55:52,3
+TELEGRAM / CONVerter / session-conv-bot-main,"['dotenv', 'os', 'pyrogram']",['TELEGRAM\\CONVerter\\session-conv-bot-main'],2024-01-15 04:55:52,1
+TELEGRAM / CONVerter / session-conv-bot-main / modules,"['base64', 'ipaddress', 'os', 'pyrogram', 'pysession', 'sqlite3', 'struct']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\modules'],2024-01-15 04:55:52,6
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages,"['asyncio', 'base64', 'collections', 'errno', 'functools', 'http', 'httplib', 'imp', 'importlib', 'io', 'logging', 'os', 'pkgutil', 'socket', 'socks', 'ssl', 'struct', 'sys', 'threading', 'urllib', 'urllib2', 'win_inet_pton']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages'],2024-01-15 04:55:52,4
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / dotenv,"['IPython', 'StringIO', '__future__', 'abc', 'click', 'codecs', 'collections', 'compat', 'contextlib', 'io', 'ipython', 'logging', 'main', 'os', 'parser', 're', 'shutil', 'subprocess', 'sys', 'tempfile', 'typing', 'variables', 'version']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\dotenv'],2024-01-15 04:55:52,8
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pip,"['importlib', 'os', 'pip', 'runpy', 'sys', 'typing', 'warnings']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\pip'],2024-01-15 04:55:53,3
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pkg_resources,"['__main__', '_imp', 'collections', 'email', 'errno', 'functools', 'imp', 'importlib', 'inspect', 'io', 'itertools', 'linecache', 'ntpath', 'operator', 'os', 'pkg_resources', 'pkgutil', 'platform', 'plistlib', 'posixpath', 're', 'stat', 'sys', 'sysconfig', 'tempfile', 'textwrap', 'time', 'types', 'warnings', 'zipfile', 'zipimport']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\pkg_resources'],2024-01-15 04:55:53,1
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pyaes,"['aes', 'blockfeeder', 'copy', 'struct', 'util']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\pyaes'],2024-01-15 04:55:53,4
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pyasn1,"['logging', 'pyasn1', 'sys']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\pyasn1'],2024-01-15 04:55:53,3
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pyrogram,"['asyncio', 'base64', 'client', 'collections', 'concurrent', 'configparser', 'dispatcher', 'enum', 'file_id', 'functools', 'getpass', 'hashlib', 'importlib', 'inspect', 'io', 'logging', 'mime_types', 'mimetypes', 'os', 'pathlib', 'platform', 'pyrogram', 're', 'scaffold', 'shutil', 'struct', 'sync', 'sys', 'tempfile', 'threading', 'time', 'typing']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\pyrogram'],2024-01-15 04:55:53,11
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / rsa,"['abc', 'base64', 'doctest', 'hashlib', 'hmac', 'logging', 'math', 'multiprocessing', 'optparse', 'os', 'pyasn1', 'rsa', 'struct', 'sys', 'threading', 'typing', 'warnings']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\rsa'],2024-01-15 04:56:01,15
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / setuptools,"['_deprecation_warning', '_distutils_hack', '_imp', '_importlib', '_itertools', '_path', '_reqs', 'base64', 'builtins', 'collections', 'configparser', 'contextlib', 'ctypes', 'dis', 'distutils', 'email', 'extern', 'fnmatch', 'functools', 'glob', 'hashlib', 'html', 'http', 'importlib', 'importlib_metadata', 'inspect', 'io', 'itertools', 'json', 'logging', 'marshal', 'monkey', 'numbers', 'numpy', 'operator', 'org', 'os', 'pathlib', 'pickle', 'pkg_resources', 'platform', 'posixpath', 'py34compat', 're', 'setuptools', 'shlex', 'shutil', 'socket', 'subprocess', 'sys', 'tarfile', 'tempfile', 'textwrap', 'tokenize', 'types', 'typing', 'unicodedata', 'urllib', 'warnings', 'winreg', 'zipfile']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\setuptools'],2024-01-15 04:56:01,30
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / tests,[],['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\tests'],2024-01-15 04:56:01,1
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / wheel,"['__future__', 'base64', 'collections', 'csv', 'ctypes', 'email', 'glob', 'hashlib', 'io', 'logging', 'macosx_libfile', 'metadata', 'os', 'pkg_resources', 're', 'setuptools', 'shutil', 'stat', 'sys', 'sysconfig', 'textwrap', 'time', 'typing', 'util', 'vendored', 'warnings', 'wheel', 'wheelfile', 'zipfile']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\wheel'],2024-01-15 04:56:01,8
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / _distutils_hack,"['importlib', 'os', 'sys', 'traceback', 'warnings']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Lib\\site-packages\\_distutils_hack'],2024-01-15 04:56:01,2
+TELEGRAM / CONVerter / session-conv-bot-main / venvs / Scripts,"['os', 'site', 'sys']",['TELEGRAM\\CONVerter\\session-conv-bot-main\\venvs\\Scripts'],2024-01-15 04:56:01,1
+TELEGRAM / CONVerter / Tdata2Session [pyrogram only],"['asyncio', 'base64', 'cffi', 'contextlib', 'convert_tdata', 'datetime', 'functools', 'hashlib', 'io', 'locale', 'loguru', 'os', 'pathlib', 'pyaes', 'pyasn1', 'pycparser', 'pyrogram', 'random', 're', 'rsa', 'session_string_converter', 'struct', 'subprocess', 'sys', 'tgcrypto', 'threading', 'time', 'traceback', 'typing', 'utils', 'win32_setctime']",['TELEGRAM\\CONVerter\\Tdata2Session [pyrogram only]'],2024-01-15 04:56:01,4
+TELEGRAM / CONVerter / telegram_session_conv,"['asyncio', 'config', 'configparser', 'datetime', 'io', 'json', 'logging', 'openpyxl', 'os', 'pyrogram', 'pythonping', 'random', 're', 'sqlite3', 'sys', 'telethon', 'tg_converter', 'time', 'tkinter']",['TELEGRAM\\CONVerter\\telegram_session_conv'],2024-01-15 04:56:01,4
+TELEGRAM / CONVerter / Telethon-To-Pyrogram-master / Telethon-To-Pyrogram-master,"['argparse', 'asyncio', 'base64', 'os', 'pathlib', 'pyrogram', 'sqlite3', 'struct', 'telethon', 'typing', 'utils']",['TELEGRAM\\CONVerter\\Telethon-To-Pyrogram-master\\Telethon-To-Pyrogram-master'],2024-01-15 04:56:01,1
+TELEGRAM / CONVerter / Telethon-To-Pyrogram-master / Telethon-To-Pyrogram-master / utils,"['argparse', 'asyncio', 'os', 'pyrogram', 'telethon']",['TELEGRAM\\CONVerter\\Telethon-To-Pyrogram-master\\Telethon-To-Pyrogram-master\\utils'],2024-01-15 04:56:01,3
+TELEGRAM / PyroBot,"['PIL', 'asyncio', 'data', 'datetime', 'io', 'json', 'logging', 'math', 'module', 'openpyxl', 'os', 'pyrogram', 'pythonping', 'random', 're', 'requests', 'socket', 'sqlite3', 'string', 'struct', 'sys', 'time', 'tkinter']",['TELEGRAM\\PyroBot'],2024-01-15 04:56:34,1
+TELEGRAM / PyroBot / data,[],['TELEGRAM\\PyroBot\\data'],2024-01-15 04:56:34,1
+TELEGRAM / PyroBot / module,"['aiogram', 'apscheduler', 'arrow', 'asyncio', 'bs4', 'colorama', 'data', 'json', 'logging', 'os', 'peewee', 'pydantic', 'pyrogram', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'sqlite3', 'string', 'sys', 'textwrap', 'time', 'tkinter', 'typing', 'unittest', 'urllib3', 'utils', 'webdriver_manager']",['TELEGRAM\\PyroBot\\module'],2024-01-15 04:50:42,14
+TELEGRAM / PyroBot / module / assistant-master / assistant,"['assistant', 'configparser', 'datetime', 'pyrogram', 'time']",['TELEGRAM\\PyroBot\\module\\assistant-master\\assistant'],2024-01-15 04:56:34,2
+TELEGRAM / PyroBot / module / assistant-master / assistant / plugins,"['aiohttp', 'assistant', 'asyncio', 'functools', 'num2words', 'pyrogram', 'time', 'utils']",['TELEGRAM\\PyroBot\\module\\assistant-master\\assistant\\plugins'],2024-01-15 04:56:34,5
+TELEGRAM / PyroBot / module / assistant-master / assistant / utils,"['pyrogram', 're']",['TELEGRAM\\PyroBot\\module\\assistant-master\\assistant\\utils'],2024-01-15 04:56:34,1
+TELEGRAM / PyroBot / module / chat_parser,"['asyncio', 'cx_Freeze', 'json', 'os', 'pyrogram', 'sys', 'tqdm']",['TELEGRAM\\PyroBot\\module\\chat_parser'],2024-01-15 04:50:42,4
+TELEGRAM / PyroBot / module / Inviter,"['asyncio', 'colorama', 'json', 'logging', 'os', 'pyrogram', 'random', 'sqlite3', 'subprocess', 'time']",['TELEGRAM\\PyroBot\\module\\Inviter'],2024-01-15 04:50:42,3
+TELEGRAM / PyroBot / module / Progrev,"['asyncio', 'colorama', 'datetime', 'dateutil', 'faker', 'json', 'logging', 'nltk', 'os', 'pyrogram', 'random', 'sqlite3', 'statistics', 'string', 'subprocess', 'time', 'tkinter', 'winsound']",['TELEGRAM\\PyroBot\\module\\Progrev'],2024-01-15 04:56:34,7
+TELEGRAM / PyroBot / module / pyrogram_tag_group_parser_and_sender,"['asyncio', 'config', 'contextlib', 'datetime', 'logging', 'openpyxl', 'os', 'pyrogram', 'random', 'sqlite3']",['TELEGRAM\\PyroBot\\module\\pyrogram_tag_group_parser_and_sender'],2024-01-15 04:56:35,6
+TELEGRAM / PyroBot / module / session_conv,"['TGConvertor', 'asyncio', 'os', 'pathlib', 'shutil', 'tkinter']",['TELEGRAM\\PyroBot\\module\\session_conv'],2024-01-15 04:56:36,1
+TELEGRAM / PyroBot / module / Spamer,"['asyncio', 'bs4', 'colorama', 'jinja2', 'json', 'logging', 'os', 'pickle', 'pyrogram', 'random', 're', 'requests', 'selenium', 'seleniumwire', 'sqlite3', 'subprocess', 'sys', 'time', 'unittest']",['TELEGRAM\\PyroBot\\module\\Spamer'],2024-01-15 04:56:36,4
+TELEGRAM / PyroBot / module / un_active_other,"['asyncio', 'colorama', 'contextlib', 'json', 'logging', 'os', 'pyrogram', 'random', 're', 'sqlite3', 'subprocess', 'time', 'typing', 'utils']",['TELEGRAM\\PyroBot\\module\\un_active_other'],2024-01-15 04:56:36,5
+TELEGRAM / PyroBot / test_file,"['emoji', 'faker', 'logging', 'os', 'pyrogram', 'random', 'sqlite3', 'subprocess', 'winsound']",['TELEGRAM\\PyroBot\\test_file'],2024-01-15 04:56:44,8
+TELEGRAM / TeletoneMultiBot,"['asyncio', 'module']",['TELEGRAM\\TeletoneMultiBot'],2025-06-08 14:58:09,2
+TELEGRAM / TeletoneMultiBot / module,"['asyncio', 'configparser', 'json', 'logging', 'os', 're', 'sqlite3', 'telethon', 'time', 'tkinter', 'typing']",['TELEGRAM\\TeletoneMultiBot\\module'],2024-01-15 04:57:01,7
+TELEGRAM / TeletoneMultiBot / module / auth,"['asyncio', 'json', 'os', 'telethon']",['TELEGRAM\\TeletoneMultiBot\\module\\auth'],2025-07-02 21:00:59,2
+TELEGRAM / TeletoneMultiBot / module / checker,"['aiohttp', 'asyncio', 'module', 're', 'telethon']",['TELEGRAM\\TeletoneMultiBot\\module\\checker'],2025-07-02 21:00:59,3
+TELEGRAM / TeletoneMultiBot / module / commands,['telethon'],['TELEGRAM\\TeletoneMultiBot\\module\\commands'],2025-07-02 21:00:59,1
+TELEGRAM / TeletoneMultiBot / module / conv,"['TGConvertor', 'asyncio', 'os', 'pathlib', 'shutil']",['TELEGRAM\\TeletoneMultiBot\\module\\conv'],2024-01-15 04:57:03,1
+TELEGRAM / TeletoneMultiBot / module / db,"['os', 'sqlite3']",['TELEGRAM\\TeletoneMultiBot\\module\\db'],2025-07-02 21:00:59,2
+TELEGRAM / TeletoneMultiBot / module / message_sender,"['asyncio', 'configparser', 'json', 'logging', 'os', 'sqlite3', 'telethon', 'time']",['TELEGRAM\\TeletoneMultiBot\\module\\message_sender'],2024-01-15 04:57:01,1
+TELEGRAM / TeletoneMultiBot / module / message_sender / venvs / Lib / site-packages,"['functools', 'imp', 'importlib', 'os', 'pkgutil', 'sys', 'threading']",['TELEGRAM\\TeletoneMultiBot\\module\\message_sender\\venvs\\Lib\\site-packages'],2024-01-15 04:57:03,1
+TELEGRAM / TeletoneMultiBot / module / message_sender / venvs / Scripts,"['os', 'site', 'sys']",['TELEGRAM\\TeletoneMultiBot\\module\\message_sender\\venvs\\Scripts'],2024-01-15 04:57:03,1
+TELEGRAM / TeletoneMultiBot / module / parser,"['re', 'telethon']",['TELEGRAM\\TeletoneMultiBot\\module\\parser'],2025-07-02 21:00:59,2
+TELEGRAM / TeletoneMultiBot / module / reporter,['module'],['TELEGRAM\\TeletoneMultiBot\\module\\reporter'],2025-07-02 21:00:59,2
+TELEGRAM / TeletoneMultiBot / test,"['asyncio', 'configparser', 'emoji', 'googletrans', 'logging', 'operator', 'os', 'pydub', 'random', 'speech_recognition', 'sqlite3', 'telebot', 'telethon', 'time']",['TELEGRAM\\TeletoneMultiBot\\test'],2024-01-15 04:57:01,2
+TELEGRAM / tg_session_auto_dropper,"['aiogram', 'apscheduler', 'asyncio', 'config', 'datetime', 'dateutil', 'json', 'logging', 'os', 'peewee', 'pyrogram', 'sqlite3']",['TELEGRAM\\tg_session_auto_dropper'],2024-01-15 04:57:01,3
+TELEGRAM / WEB3TELEGRAM,"['colorama', 'connect_to_wifi', 'data', 'datetime', 'functions', 'models', 'os', 'peewee', 'psutil', 'pyautogui', 'pyewelink', 'pywifi', 'pywinauto', 'requests', 'selenium', 'sim_modem_reboot', 'socket', 'subprocess', 'threading', 'time', 'tkinter', 'ttkthemes', 'win32con', 'win32gui', 'winsound']",['TELEGRAM\\WEB3TELEGRAM'],2024-06-11 07:01:05,4
+TELEGRAM / WEB3TELEGRAM / data,[],['TELEGRAM\\WEB3TELEGRAM\\data'],2024-06-13 07:49:33,4
+TELEGRAM / WEB3TELEGRAM / data / image,[],['TELEGRAM\\WEB3TELEGRAM\\data\\image'],2024-06-13 07:49:35,1
+TELEGRAM / WEB3TELEGRAM / functions,"['datetime', 'models', 'os', 'time']",['TELEGRAM\\WEB3TELEGRAM\\functions'],2024-06-13 07:06:46,2
+TELEGRAM / WEB3TELEGRAM / functions / getgems-parser,"['bs4', 'colorama', 'selenium', 'sqlite3', 'time']",['TELEGRAM\\WEB3TELEGRAM\\functions\\getgems-parser'],2024-10-06 08:06:51,1
+TELEGRAM / WEB3TELEGRAM / functions / nox,"['colorama', 'ctypes', 'cv2', 'datetime', 'functions', 'models', 'numpy', 'os', 'psutil', 'pyautogui', 'pywinauto', 'sys', 'time', 'warnings']",['TELEGRAM\\WEB3TELEGRAM\\functions\\nox'],2024-06-11 04:12:10,8
+TELEGRAM / WEB3TELEGRAM / functions / speaker,['pyttsx3'],['TELEGRAM\\WEB3TELEGRAM\\functions\\speaker'],2024-09-22 03:32:09,2
+TELEGRAM / WEB3TELEGRAM / functions / telegram,"['data', 'functions', 'importlib', 'keyboard', 'models', 'os', 'pyautogui', 'random', 'sys', 'time', 'utils']",['TELEGRAM\\WEB3TELEGRAM\\functions\\telegram'],2024-06-18 07:53:07,2
+TELEGRAM / WEB3TELEGRAM / models,"['colorama', 'datetime', 'models', 'os', 'peewee', 'utils']",['TELEGRAM\\WEB3TELEGRAM\\models'],2024-06-12 09:51:49,5
+TELEGRAM / WEB3TELEGRAM / MY_WEB_APP,[],['TELEGRAM\\WEB3TELEGRAM\\MY_WEB_APP'],2024-09-18 00:44:21,1
+TELEGRAM / WEB3TELEGRAM / tests,"['colorama', 'data', 'functions', 'pyttsx3', 'requests', 'selenium', 'socket', 'sys', 'time', 'tqdm', 'webdriver_manager']",['TELEGRAM\\WEB3TELEGRAM\\tests'],2024-06-12 06:00:42,6
+TELEGRAM / WEB3TELEGRAM / utils,[],['TELEGRAM\\WEB3TELEGRAM\\utils'],2024-06-16 09:16:06,1
+TELEGRAM / WEB3TELEGRAM / utils / db_api,"['os', 'peewee', 'sqlite']",['TELEGRAM\\WEB3TELEGRAM\\utils\\db_api'],2024-06-16 09:16:06,2
+TELEGRAM / WEB3TELEGRAM / utils / misc,['logging'],['TELEGRAM\\WEB3TELEGRAM\\utils\\misc'],2024-06-16 09:16:06,2
+uneversal_socket_license,"['GPUtil', 'aiogram', 'asyncio', 'colorama', 'cpuinfo', 'cryptography', 'cx_Freeze', 'datetime', 'fingerprint', 'json', 'os', 'peewee', 'platform', 'psutil', 'requests', 'socket', 'ssl', 'sys', 'telebot', 'threading', 'time', 'utils', 'uuid']",['uneversal_socket_license'],2024-01-15 04:50:42,9
+uneversal_socket_license / utils,[],['uneversal_socket_license\\utils'],2024-01-15 04:50:42,1
+uneversal_socket_license / utils / db_api,"['peewee', 'sqlite']",['uneversal_socket_license\\utils\\db_api'],2024-01-15 04:57:03,2
+uneversal_socket_license / utils / misc,['logging'],['uneversal_socket_license\\utils\\misc'],2024-01-15 04:57:03,2
+video_face_changer,"['cv2', 'cx_Freeze', 'glob', 'numpy', 'os', 'pyvirtualcam', 'sys']",['video_face_changer'],2024-01-15 04:57:03,6
+WEB / django-shop-master,"['setuptools', 'shop']",['WEB\\django-shop-master'],2025-06-17 06:37:36,1
+WEB / django-shop-master / docs,"['datetime', 'django', 'os', 'shop', 'sys']",['WEB\\django-shop-master\\docs'],2025-06-17 06:37:36,1
+WEB / django-shop-master / email_auth,['django'],['WEB\\django-shop-master\\email_auth'],2025-06-17 06:37:36,2
+WEB / django-shop-master / email_auth / migrations,"['__future__', 'django', 'email_auth', 're']",['WEB\\django-shop-master\\email_auth\\migrations'],2025-06-17 06:37:36,6
+WEB / django-shop-master / shop,"['cms', 'compressor', 'copy', 'datetime', 'decimal', 'django', 'django_filters', 'djng', 'json', 'menus', 'polymorphic', 'post_office', 'redis', 'rest_auth', 'rest_framework', 'shop', 'urllib', 'warnings']",['WEB\\django-shop-master\\shop'],2025-06-17 06:37:36,15
+WEB / django-shop-master / shop / admin,"['adminsortable2', 'cms', 'collections', 'django', 'django_elasticsearch_dsl', 'django_fsm', 'fsm_admin', 'shop']",['WEB\\django-shop-master\\shop\\admin'],2025-06-17 06:37:36,6
+WEB / django-shop-master / shop / admin / defaults,"['adminsortable2', 'cms', 'django', 'parler', 'shop']",['WEB\\django-shop-master\\shop\\admin\\defaults'],2025-06-17 06:37:36,4
+WEB / django-shop-master / shop / cascade,"['adminsortable2', 'cms', 'cmsplugin_cascade', 'django', 'django_select2', 'djangocms_text_ckeditor', 'djng', 'entangled', 'shop']",['WEB\\django-shop-master\\shop\\cascade'],2025-06-17 06:37:36,13
+WEB / django-shop-master / shop / forms,"['cms', 'django', 'djangocms_text_ckeditor', 'djng', 'formtools', 'post_office', 'sass_processor', 'shop']",['WEB\\django-shop-master\\shop\\forms'],2025-06-17 06:37:36,6
+WEB / django-shop-master / shop / management,"['cms', 'cmsplugin_cascade', 'djangocms_text_ckeditor']",['WEB\\django-shop-master\\shop\\management'],2025-06-17 06:37:36,2
+WEB / django-shop-master / shop / management / commands,"['cms', 'cmsplugin_cascade', 'django', 'shop']",['WEB\\django-shop-master\\shop\\management\\commands'],2025-06-17 06:37:36,2
+WEB / django-shop-master / shop / migrations,"['HTMLParser', '__future__', 'django', 'djangocms_text_ckeditor', 'filer', 'html', 'json', 're', 'shop', 'warnings']",['WEB\\django-shop-master\\shop\\migrations'],2025-06-17 06:37:36,11
+WEB / django-shop-master / shop / models,"['cms', 'collections', 'decimal', 'django', 'django_elasticsearch_dsl', 'django_fsm', 'enum', 'filer', 'functools', 'importlib', 'ipware', 'jsonfield', 'logging', 'operator', 'polymorphic', 'post_office', 'shop', 'string', 'urllib', 'warnings']",['WEB\\django-shop-master\\shop\\models'],2025-06-17 06:37:36,11
+WEB / django-shop-master / shop / models / defaults,"['binascii', 'cms', 'django', 'djangocms_text_ckeditor', 'filer', 'os', 'parler', 'polymorphic', 'shop', 'urllib']",['WEB\\django-shop-master\\shop\\models\\defaults'],2025-06-17 06:37:36,11
+WEB / django-shop-master / shop / modifiers,"['decimal', 'django', 'shop']",['WEB\\django-shop-master\\shop\\modifiers'],2025-06-17 06:37:36,5
+WEB / django-shop-master / shop / money,"['cms', 'decimal', 'django', 'json', 'shop']",['WEB\\django-shop-master\\shop\\money'],2025-06-17 06:37:36,5
+WEB / django-shop-master / shop / payment,"['django', 'django_fsm', 'shop']",['WEB\\django-shop-master\\shop\\payment'],2025-06-17 06:37:36,4
+WEB / django-shop-master / shop / rest,"['collections', 'django', 'functools', 'operator', 'rest_framework', 'shop']",['WEB\\django-shop-master\\shop\\rest'],2025-06-17 06:37:36,5
+WEB / django-shop-master / shop / search,"['django', 'django_elasticsearch_dsl', 'elasticsearch', 'elasticsearch_dsl', 'shop']",['WEB\\django-shop-master\\shop\\search'],2025-06-17 06:37:36,4
+WEB / django-shop-master / shop / serializers,"['cms', 'django', 'filer', 'rest_auth', 'rest_framework', 'shop']",['WEB\\django-shop-master\\shop\\serializers'],2025-06-17 06:37:36,8
+WEB / django-shop-master / shop / serializers / defaults,"['rest_framework', 'shop']",['WEB\\django-shop-master\\shop\\serializers\\defaults'],2025-06-17 06:37:36,6
+WEB / django-shop-master / shop / shipping,"['django', 'django_fsm', 'shop']",['WEB\\django-shop-master\\shop\\shipping'],2025-06-17 06:37:36,3
+WEB / django-shop-master / shop / templatetags,"['cms', 'collections', 'django', 'sekizai', 'shop']",['WEB\\django-shop-master\\shop\\templatetags'],2025-06-17 06:37:36,3
+WEB / django-shop-master / shop / urls,"['django', 'rest_framework', 'shop', 'warnings']",['WEB\\django-shop-master\\shop\\urls'],2025-06-17 06:37:36,4
+WEB / django-shop-master / shop / views,"['cms', 'django', 'os', 'rest_auth', 'rest_framework', 'shop', 'urllib']",['WEB\\django-shop-master\\shop\\views'],2025-06-17 06:37:36,8
+WEB / django-shop-master / tests,"['bs4', 'cPickle', 'cms', 'conftest', 'copy', 'datetime', 'decimal', 'django', 'factory', 'importlib', 'json', 'math', 'os', 'pickle', 'polymorphic', 'post_office', 'pytest', 'pytest_factoryboy', 'pytz', 're', 'rest_framework', 'shop', 'sys', 'testshop', 'types']",['WEB\\django-shop-master\\tests'],2025-06-17 06:37:36,14
+WEB / django-shop-master / tests / testshop,"['django', 'shop']",['WEB\\django-shop-master\\tests\\testshop'],2025-06-17 06:37:36,6
+WEB / MyBrand - eCommerce-shop,"['decouple', 'django', 'os', 'subprocess', 'sys', 'time', 'watchdog']",['WEB\\MyBrand - eCommerce-shop'],2025-06-17 19:56:47,2
+WEB / MyBrand - eCommerce-shop / accounts,"['accounts', 'carts', 'django', 'models', 'orders', 'requests']",['WEB\\MyBrand - eCommerce-shop\\accounts'],2025-06-17 19:56:46,8
+WEB / MyBrand - eCommerce-shop / accounts / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\accounts\\migrations'],2025-06-17 19:56:46,5
+WEB / MyBrand - eCommerce-shop / carts,"['accounts', 'carts', 'django', 'models', 'store']",['WEB\\MyBrand - eCommerce-shop\\carts'],2025-06-17 19:56:46,8
+WEB / MyBrand - eCommerce-shop / carts / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\carts\\migrations'],2025-06-17 19:56:46,6
+WEB / MyBrand - eCommerce-shop / category,"['django', 'models', 'store']",['WEB\\MyBrand - eCommerce-shop\\category'],2025-06-17 19:56:46,7
+WEB / MyBrand - eCommerce-shop / category / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\category\\migrations'],2025-06-17 19:56:46,5
+WEB / MyBrand - eCommerce-shop / mensline,"['decouple', 'django', 'dropbox', 'orders', 'os', 'pathlib', 'slider', 'store']",['WEB\\MyBrand - eCommerce-shop\\mensline'],2025-06-17 19:56:47,6
+WEB / MyBrand - eCommerce-shop / orders,"['accounts', 'carts', 'datetime', 'django', 'json', 'mensline', 'orders', 'store', 'telebot', 'uuid', 'yookassa']",['WEB\\MyBrand - eCommerce-shop\\orders'],2025-06-17 19:56:47,8
+WEB / MyBrand - eCommerce-shop / orders / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\orders\\migrations'],2025-06-17 19:56:47,6
+WEB / MyBrand - eCommerce-shop / slider,"['django', 'slider']",['WEB\\MyBrand - eCommerce-shop\\slider'],2025-06-17 19:56:47,6
+WEB / MyBrand - eCommerce-shop / slider / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\slider\\migrations'],2025-06-17 19:56:47,3
+WEB / MyBrand - eCommerce-shop / store,"['accounts', 'admin_thumbnails', 'carts', 'category', 'django', 'forms', 'models', 'orders', 'store']",['WEB\\MyBrand - eCommerce-shop\\store'],2025-06-17 19:56:48,8
+WEB / MyBrand - eCommerce-shop / store / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\store\\migrations'],2025-06-17 19:56:48,10
+WEB / MyBrand - eCommerce-shop / store / templatetags,['django'],['WEB\\MyBrand - eCommerce-shop\\store\\templatetags'],2025-06-17 19:56:48,2
+WEB / MyBrand - eCommerce-shop / telebot,"['django', 'requests', 'telebot']",['WEB\\MyBrand - eCommerce-shop\\telebot'],2025-06-17 19:56:48,7
+WEB / MyBrand - eCommerce-shop / telebot / migrations,['django'],['WEB\\MyBrand - eCommerce-shop\\telebot\\migrations'],2025-06-17 19:56:48,2
+WEB / Template - Django-admin-tools,"['django', 'os', 'subprocess', 'sys', 'threading', 'time', 'watchdog']",['WEB\\Template - Django-admin-tools'],2025-02-05 19:18:55,2
+WEB / Template - Django-admin-tools / apps,[],['WEB\\Template - Django-admin-tools\\apps'],2025-06-13 15:09:06,1
+WEB / Template - Django-admin-tools / apps / core,"['apps', 'django']",['WEB\\Template - Django-admin-tools\\apps\\core'],2025-06-13 06:24:06,7
+WEB / Template - Django-admin-tools / config,"['admin_tools', 'django', 'os', 'pathlib']",['WEB\\Template - Django-admin-tools\\config'],2025-06-13 14:42:27,6
+WEB / Template - Django-mens-line-store (GIT),"['decouple', 'django', 'os', 'subprocess', 'sys', 'time', 'watchdog']",['WEB\\Template - Django-mens-line-store (GIT)'],2025-06-16 01:23:59,2
+WEB / Template - Django-mens-line-store (GIT) / accounts,"['accounts', 'carts', 'django', 'models', 'orders', 'requests']",['WEB\\Template - Django-mens-line-store (GIT)\\accounts'],2025-06-16 01:23:58,8
+WEB / Template - Django-mens-line-store (GIT) / accounts / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\accounts\\migrations'],2025-06-16 01:23:58,6
+WEB / Template - Django-mens-line-store (GIT) / carts,"['accounts', 'carts', 'django', 'models', 'store']",['WEB\\Template - Django-mens-line-store (GIT)\\carts'],2025-06-16 01:23:58,8
+WEB / Template - Django-mens-line-store (GIT) / carts / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\carts\\migrations'],2025-06-16 01:23:58,6
+WEB / Template - Django-mens-line-store (GIT) / category,"['django', 'models', 'store']",['WEB\\Template - Django-mens-line-store (GIT)\\category'],2025-06-16 01:23:58,7
+WEB / Template - Django-mens-line-store (GIT) / category / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\category\\migrations'],2025-06-16 01:23:58,5
+WEB / Template - Django-mens-line-store (GIT) / mensline,"['decouple', 'django', 'dropbox', 'orders', 'os', 'pathlib', 'slider', 'store']",['WEB\\Template - Django-mens-line-store (GIT)\\mensline'],2025-06-16 01:23:59,6
+WEB / Template - Django-mens-line-store (GIT) / orders,"['accounts', 'carts', 'datetime', 'django', 'json', 'mensline', 'orders', 'store', 'telebot', 'uuid', 'yookassa']",['WEB\\Template - Django-mens-line-store (GIT)\\orders'],2025-06-16 01:23:59,8
+WEB / Template - Django-mens-line-store (GIT) / orders / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\orders\\migrations'],2025-06-16 01:23:59,6
+WEB / Template - Django-mens-line-store (GIT) / slider,"['django', 'slider']",['WEB\\Template - Django-mens-line-store (GIT)\\slider'],2025-06-16 01:23:59,6
+WEB / Template - Django-mens-line-store (GIT) / slider / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\slider\\migrations'],2025-06-16 01:23:59,3
+WEB / Template - Django-mens-line-store (GIT) / store,"['accounts', 'admin_thumbnails', 'carts', 'category', 'django', 'forms', 'models', 'orders', 'store']",['WEB\\Template - Django-mens-line-store (GIT)\\store'],2025-06-16 01:24:00,8
+WEB / Template - Django-mens-line-store (GIT) / store / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\store\\migrations'],2025-06-16 01:24:00,10
+WEB / Template - Django-mens-line-store (GIT) / store / templatetags,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\store\\templatetags'],2025-06-16 01:24:00,2
+WEB / Template - Django-mens-line-store (GIT) / telebot,"['django', 'requests', 'telebot']",['WEB\\Template - Django-mens-line-store (GIT)\\telebot'],2025-06-16 01:24:00,7
+WEB / Template - Django-mens-line-store (GIT) / telebot / migrations,['django'],['WEB\\Template - Django-mens-line-store (GIT)\\telebot\\migrations'],2025-06-16 01:24:00,2
+WEB / Template - FAST_API-eCommerce-shop,"['pathlib', 'subprocess', 'sys', 'time', 'watchdog']",['WEB\\Template - FAST_API-eCommerce-shop'],2025-06-17 00:38:04,1
+WEB / Template - FAST_API-eCommerce-shop / app,"['admin', 'contextlib', 'fastapi', 'models', 'sqladmin', 'sqlalchemy']",['WEB\\Template - FAST_API-eCommerce-shop\\app'],2025-06-12 19:58:42,5
+WEB / Template - Flask-Admin,"['flask', 'flask_admin', 'flask_sqlalchemy']",['WEB\\Template - Flask-Admin'],2024-01-15 04:52:11,1
+WEB / Template - Flask-Admin-AdminLTE,"['flask', 'flask_admin', 'flask_adminlte3', 'flask_sqlalchemy']",['WEB\\Template - Flask-Admin-AdminLTE'],2025-06-16 17:41:14,1
+YouTube Viever,[],['YouTube Viever'],2024-02-23 14:53:33,1
diff --git a/project_stats.html b/project_stats.html
new file mode 100644
index 0000000..894186e
--- /dev/null
+++ b/project_stats.html
@@ -0,0 +1,8119 @@
+
name | +stack | +dirs | +date | +py_count | +
---|---|---|---|---|
A - OLD / Chrome Anti-Detect | +[selenium, time, undetected_chromedriver] | +[A - OLD\Chrome Anti-Detect] | +2024-07-17 01:53:59 | +2 | +
A - OLD / Discord / Discord_bot | +[asyncio, config, datetime, discord, example, json, os, requests, sqlite3, time] | +[A - OLD\Discord\Discord_bot] | +2024-01-15 04:51:04 | +3 | +
A - OLD / Network / PortScanner | +[Queue, argparse, colorama, ctypes, datetime, os, queue, shutil, signal, socket, struct, sys, threading, time] | +[A - OLD\Network\PortScanner] | +2024-01-15 04:51:04 | +3 | +
A - OLD / Other / GameBot | +[cv2, fuzzywuzzy, mss, numpy, pyautogui, pytesseract, rods, time, utils] | +[A - OLD\Other\GameBot] | +2024-01-15 04:51:04 | +1 | +
A - OLD / Other / Turtle | +[PIL, colorsys, math, matplotlib, random, turtle] | +[A - OLD\Other\Turtle] | +2024-01-15 04:51:09 | +5 | +
A - OLD / Other / YouTube-Viewer | +[concurrent, fake_headers, faker, glob, io, json, logging, os, psutil, re, requests, shutil, sys, tabulate, textwrap, time, undetected_chromedriver, wmi, youtubeviewer] | +[A - OLD\Other\YouTube-Viewer] | +2024-02-23 15:09:04 | +2 | +
A - OLD / Other / YouTube-Viewer / youtubeviewer | +[bypass, calendar, colors, contextlib, datetime, features, flask, glob, hashlib, json, os, platform, random, requests, selenium, shutil, sqlite3, subprocess, sys, time, undetected_chromedriver, warnings] | +[A - OLD\Other\YouTube-Viewer\youtubeviewer] | +2024-02-23 15:09:04 | +11 | +
A - OLD / Other / Вышка-экономика / Ex_IFX / fas | +[] | +[A - OLD\Other\Вышка-экономика\Ex_IFX\fas] | +2024-01-15 04:50:41 | +1 | +
A - OLD / Other / Вышка-экономика / эконометрика - вывод графиков | +[datetime, pandas_datareader, time] | +[A - OLD\Other\Вышка-экономика\эконометрика - вывод графиков] | +2024-01-15 04:51:09 | +2 | +
A - OLD / Other / Вышка-экономика / эконометрика - вывод графиков / Курсач - Графики - Finance | +[datetime, os, pandas_datareader, seaborn, time] | +[A - OLD\Other\Вышка-экономика\эконометрика - вывод графиков\Курсач - Графики - Finance] | +2024-01-15 04:51:09 | +2 | +
A - OLD / Parsing / Requests / CombotParser | +[bs4, json, requests, sqlite3, time, urllib, urllib3] | +[A - OLD\Parsing\Requests\CombotParser] | +2024-01-15 04:51:09 | +1 | +
A - OLD / Parsing / Requests / WebParserSport | +[bs4, requests] | +[A - OLD\Parsing\Requests\WebParserSport] | +2024-01-15 04:50:41 | +3 | +
A - OLD / Parsing / Selenium / AvitoBot | +[bs4, fake_useragent, logging, os, pickle, proxy, random, re, requests, selenium, seleniumwire, sqlite3, sys, time, unittest] | +[A - OLD\Parsing\Selenium\AvitoBot] | +2024-01-15 04:51:09 | +4 | +
A - OLD / Parsing / Selenium / Mvidia_parser | +[bs4, csv, googletrans, json, logging, re, requests, selenium, sqlite3, ssl, test1, time, unicodedata, urllib3] | +[A - OLD\Parsing\Selenium\Mvidia_parser] | +2024-01-15 04:51:09 | +2 | +
A - OLD / PyKwork / SQLiTrainer | +[flask, sqlite3] | +[A - OLD\PyKwork\SQLiTrainer] | +2025-01-18 23:22:31 | +2 | +
A - OLD / SPORT_1X / auto_1x | +[asyncio, bs4, captcha, config, configparser, contextlib, datetime, fake_useragent, logging, os, pickle, pyrogram, random, re, requests, selenium, seleniumwire, sqlite3, sys, telethon, threading, time, tkinter, unittest] | +[A - OLD\SPORT_1X\auto_1x] | +2024-01-15 04:51:09 | +6 | +
A - OLD / SPORT_1X / auto_1x / AutoReg_Vak_Sms | +[asyncio, bs4, configparser, datetime, fake_useragent, logging, os, pickle, proxy, random, re, requests, selenium, seleniumwire, sqlite3, sys, test, threading, time, unittest] | +[A - OLD\SPORT_1X\auto_1x\AutoReg_Vak_Sms] | +2024-01-15 04:51:09 | +4 | +
A - OLD / SPORT_1X / auto_1x / tkinter | +[Pmw, _tkinter, fileinput, pickle, time, tkinter] | +[A - OLD\SPORT_1X\auto_1x\tkinter] | +2024-01-15 04:51:10 | +8 | +
A - OLD / SPORT_1X / fotbal_api_parser | +[asyncio, calendar, json, openpyxl, requests, sqlite3, time] | +[A - OLD\SPORT_1X\fotbal_api_parser] | +2024-01-15 04:51:10 | +4 | +
A - OLD / SPORT_1X / бот футбол_py | +[black_list_football, conf_football, configparser, connect_1xstavka_football, mysql, pprint, python_mysql_dbconfig, requests, telebot, time, traceback] | +[A - OLD\SPORT_1X\бот футбол_py] | +2024-01-15 04:51:10 | +5 | +
A - OLD / TELEGRAM_OLD / Aiogram_Copy_Forward | +[aiogram, asyncio, config, datetime, googletrans, logging, random, re, sqlite3] | +[A - OLD\TELEGRAM_OLD\Aiogram_Copy_Forward] | +2024-01-15 04:51:10 | +2 | +
A - OLD / TELEGRAM_OLD / Bot_21_stavka_pyrogram | +[logging, pyrogram, pytube, re, sqlite3] | +[A - OLD\TELEGRAM_OLD\Bot_21_stavka_pyrogram] | +2024-01-15 04:51:11 | +5 | +
A - OLD / TELEGRAM_OLD / Instagram_DP_Saver_Bot-main | +[consts, instaloader, logging, os, re, telegram, time, traceback] | +[A - OLD\TELEGRAM_OLD\Instagram_DP_Saver_Bot-main] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / message_forward_bot | +[aiogram, asyncio, config, datetime, logging, os, sqlite3, tiktok_downloader, youtube_dl] | +[A - OLD\TELEGRAM_OLD\message_forward_bot] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main | +[aiogram, apscheduler, asyncio, database, handlers, logging, middlewares, sqlalchemy, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main] | +2024-01-15 04:50:41 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / database | +[] | +[A - OLD\TELEGRAM_OLD\omutchan-main\database] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / database / contexts | +[aiogram, contextlib, database, dataclasses, datetime, enum, sqlalchemy, sys, typing, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\database\contexts] | +2024-01-15 04:50:41 | +9 | +
A - OLD / TELEGRAM_OLD / omutchan-main / database / models | +[__future__, base, bill, chat, database, logging, luser, payment, personal_rp, rank, re, reward, sqlalchemy, typing, user] | +[A - OLD\TELEGRAM_OLD\omutchan-main\database\models] | +2024-01-15 04:51:11 | +10 | +
A - OLD / TELEGRAM_OLD / omutchan-main / filters | +[aiogram, handlers, re, typing, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\filters] | +2024-01-15 04:51:11 | +4 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers | +[aiogram, handlers] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers] | +2024-01-15 04:51:11 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / cbq_groups | +[aiogram, database, datetime, filters, glQiwiApi, handlers, keyboards, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\cbq_groups] | +2024-01-15 04:51:11 | +5 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / cbq_groups / shop | +[aiogram, database, datetime, keyboards, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\cbq_groups\shop] | +2024-01-15 04:51:11 | +11 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / errors | +[aiogram, handlers, logging] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\errors] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups | +[aiogram, any, balance, bonus, bot_stat, buy, database, donate, farm, filters, gender, info, lrp, migrate, nick, ping, reputation, rp, stat, subscribe, top_charts, transfer, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups] | +2024-01-15 04:51:11 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / balance | +[aiogram, database, dataclasses, handlers, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\balance] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / bonus | +[aiogram, database, dataclasses, datetime, handlers, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\bonus] | +2024-01-15 04:51:11 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / bot_stat | +[aiogram, database, dataclasses, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\bot_stat] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / buy | +[aiogram, apscheduler, database, dataclasses, datetime, glQiwiApi, handlers, keyboards, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\buy] | +2024-01-15 04:51:11 | +10 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / donate | +[aiogram, database, dataclasses, datetime, handlers, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\donate] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / farm | +[aiogram, database, dataclasses, datetime, keyboards, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\farm] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / gender | +[aiogram, database, dataclasses, handlers, keyboards] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\gender] | +2024-01-15 04:51:11 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / info | +[aiogram, database, dataclasses, datetime, handlers, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\info] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / lrp | +[aiogram, database, dataclasses, handlers, keyboards, re, typing, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\lrp] | +2024-01-15 04:51:11 | +5 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / nick | +[aiogram, database, dataclasses, handlers, re, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\nick] | +2024-01-15 04:51:11 | +4 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / ping | +[aiogram, dataclasses, random] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\ping] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / reputation | +[aiogram, database, dataclasses, handlers, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\reputation] | +2024-01-15 04:51:11 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / rp | +[aiogram, database, dataclasses, handlers, keyboards, re, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\rp] | +2024-01-15 04:51:11 | +5 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / stat | +[aiogram, database, dataclasses, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\stat] | +2024-01-15 04:51:11 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / subscribe | +[aiogram, database, dataclasses, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\subscribe] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / top_charts | +[aiogram, database, dataclasses] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\top_charts] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / groups / transfer | +[aiogram, database, dataclasses, handlers, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\groups\transfer] | +2024-01-15 04:51:11 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / handlers / users | +[aiogram, start] | +[A - OLD\TELEGRAM_OLD\omutchan-main\handlers\users] | +2024-01-15 04:51:11 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / keyboards | +[] | +[A - OLD\TELEGRAM_OLD\omutchan-main\keyboards] | +2024-01-15 04:51:11 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / keyboards / default | +[] | +[A - OLD\TELEGRAM_OLD\omutchan-main\keyboards\default] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / keyboards / inline | +[aiogram] | +[A - OLD\TELEGRAM_OLD\omutchan-main\keyboards\inline] | +2024-01-15 04:51:11 | +7 | +
A - OLD / TELEGRAM_OLD / omutchan-main / middlewares | +[aiogram, apscheduler, asyncio, cbq_groups, database, datetime, dignity, html, init_database, sqlalchemy, statistic, throttling, update_db, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\middlewares] | +2024-01-15 04:51:11 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / states | +[] | +[A - OLD\TELEGRAM_OLD\omutchan-main\states] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / utils | +[aiogram, aiohttp, dataclasses, datetime, environs, pytz, sqlalchemy, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\utils] | +2024-01-15 04:51:11 | +4 | +
A - OLD / TELEGRAM_OLD / omutchan-main / utils / misc | +[__future__, aiogram, apscheduler, asyncio, database, dataclasses, datetime, emoji, glQiwiApi, io, logging, matplotlib, pytz, random, sqlalchemy, throttling, typing, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\utils\misc] | +2024-01-15 04:51:12 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / utils / misc / consts | +[__future__, dataclasses, random, re, typing, utils] | +[A - OLD\TELEGRAM_OLD\omutchan-main\utils\misc\consts] | +2024-01-15 04:50:41 | +4 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages | +[StringIO, __future__, copy, functools, imp, importlib, io, itertools, operator, os, pkgutil, struct, sys, threading, types] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages] | +2024-01-15 04:51:14 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / aiogram | +[aiogram, aiohttp, asyncio, bot, dispatcher, os, platform, rapidjson, sys, ujson, utils, uvloop] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\aiogram] | +2024-01-15 04:51:12 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / aiohttp | +[_helpers, _http_parser, _websocket, abc, aiodns, aiohttp, aiosignal, argparse, async_timeout, asyncio, asynctest, attr, base64, base_protocol, binascii, brotli, cchardet, charset_normalizer, client, client_exceptions, client_proto, client_reqrep, client_ws, codecs, collections, concurrent, connector, contextlib, cookiejar, datetime, email, enum, formdata, frozenlist, functools, gc, gunicorn, hashlib, hdrs, helpers, html, http, http_exceptions, http_parser, http_websocket, http_writer, idna_ssl, importlib, inspect, io, ipaddress, itertools, json, keyword, locks, log, logging, math, mimetypes, multidict, multipart, netrc, os, pathlib, payload, payload_streamer, pickle, platform, pytest, random, re, resolver, signal, socket, ssl, streams, string, struct, sys, tcp_helpers, tempfile, test_utils, time, tokio, traceback, tracing, typedefs, types, typing, typing_extensions, unittest, urllib, uuid, uvloop, warnings, weakref, web, web_app, web_exceptions, web_fileresponse, ...] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\aiohttp] | +2024-01-15 04:51:12 | +45 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / aiosignal | +[frozenlist] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\aiosignal] | +2024-01-15 04:51:12 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / asynch | +[asynch, asyncio, collections, connection, itertools, logging, pool, ssl, typing, urllib] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\asynch] | +2024-01-15 04:51:12 | +5 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / async_timeout | +[asyncio, enum, sys, types, typing, typing_extensions, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\async_timeout] | +2024-01-15 04:51:12 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / attr | +[_cmp, _compat, _config, _funcs, _make, _next_gen, _version_info, abc, collections, contextlib, converters, copy, enum, exceptions, functools, inspect, linecache, operator, platform, re, sys, threading, types, typing, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\attr] | +2024-01-15 04:51:12 | +13 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / attrs | +[attr] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\attrs] | +2024-01-15 04:51:13 | +6 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / babel | +[StringIO, __future__, array, ast, babel, bisect, cPickle, cStringIO, cdecimal, codecs, collections, copy, datetime, decimal, gettext, io, itertools, locale, os, pickle, pytz, re, sys, textwrap, threading, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\babel] | +2024-01-15 04:51:13 | +12 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / certifi | +[argparse, certifi, core, importlib, os, sys, types, typing] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\certifi] | +2024-01-15 04:51:14 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / charset_normalizer | +[_multibytecodec, api, assets, cd, charset_normalizer, codecs, collections, constant, encodings, functools, hashlib, importlib, json, legacy, logging, md, models, os, re, typing, unicodedata, utils, version] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\charset_normalizer] | +2024-01-15 04:51:14 | +9 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / clickhouse_cityhash | +[] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\clickhouse_cityhash] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / dateutil | +[__future__, _common, _version, calendar, datetime, dateutil, fractions, functools, heapq, itertools, math, operator, re, six, sys, tz, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\dateutil] | +2024-01-15 04:51:14 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / dotenv | +[IPython, abc, cli, click, codecs, collections, contextlib, io, ipython, json, logging, main, os, parser, re, shlex, shutil, subprocess, sys, tempfile, typing, variables, version] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\dotenv] | +2024-01-15 04:51:14 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / environs | +[collections, contextlib, dj_database_url, dj_email_url, django_cache_url, dotenv, functools, inspect, json, logging, marshmallow, os, pathlib, re, types, typing, urllib] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\environs] | +2024-01-15 04:51:14 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / frozenlist | +[_frozenlist, collections, functools, os, sys, types, typing] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\frozenlist] | +2024-01-15 04:51:14 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / greenlet | +[__future__, _greenlet] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\greenlet] | +2024-01-15 04:51:14 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / idna | +[bisect, codec, codecs, core, intranges, package_data, re, typing, unicodedata, uts46data] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\idna] | +2024-01-15 04:51:14 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / kiwisolver | +[_cext] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\kiwisolver] | +2024-01-15 04:51:14 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / leb128 | +[typing] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\leb128] | +2024-01-15 04:51:14 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / lz4 | +[_version, version] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\lz4] | +2024-01-15 04:51:14 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / magic_filter | +[attrdict, functools, magic, magic_filter, operator, pkg_resources, re, typing] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\magic_filter] | +2024-01-15 04:51:14 | +6 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / marshmallow | +[__future__, abc, collections, copy, datetime, decimal, email, enum, functools, inspect, ipaddress, itertools, json, marshmallow, math, numbers, operator, packaging, pprint, re, typing, uuid, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\marshmallow] | +2024-01-15 04:51:14 | +13 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / multidict | +[_abc, _compat, _multidict, _multidict_py, abc, array, collections, os, platform, sys, types] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\multidict] | +2024-01-15 04:51:14 | +5 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / numpy | +[__future__, _globals, _version, builtins, core, ctypes, enum, glob, hypothesis, json, lib, matrixlib, numpy, os, pathlib, pytest, sys, tempfile, testing, version, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\numpy] | +2024-01-15 04:51:14 | +12 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / packaging | +[_elffile, _manylinux, _parser, _structures, _tokenizer, abc, ast, collections, contextlib, ctypes, dataclasses, enum, functools, importlib, itertools, logging, markers, operator, os, platform, re, specifiers, struct, subprocess, sys, sysconfig, tags, typing, urllib, utils, version, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\packaging] | +2024-01-15 04:51:16 | +13 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / PIL | +[IPython, JpegImagePlugin, JpegPresets, MpoImagePlugin, PIL, PcxImagePlugin, PyQt5, PyQt6, PySide2, PySide6, TiffImagePlugin, TiffTags, __future__, _binary, _deprecate, _util, array, atexit, base64, builtins, calendar, cffi, codecs, collections, colorsys, copy, defusedxml, enum, features, fractions, functools, io, itertools, logging, math, mmap, numbers, numpy, olefile, operator, os, packaging, pathlib, random, re, shlex, shutil, struct, subprocess, sys, tempfile, time, tkinter, warnings, zlib] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\PIL] | +2024-01-15 04:51:16 | +94 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pip | +[importlib, os, pip, runpy, sys, typing, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\pip] | +2024-01-15 04:51:18 | +3 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pkg_resources | +[__main__, _imp, collections, email, errno, functools, imp, importlib, inspect, io, itertools, linecache, ntpath, operator, os, pkg_resources, pkgutil, platform, plistlib, posixpath, re, stat, sys, sysconfig, tempfile, textwrap, time, types, warnings, zipfile, zipimport] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\pkg_resources] | +2024-01-15 04:51:18 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pyparsing | +[abc, actions, collections, common, contextlib, copy, core, datetime, diagram, enum, exceptions, functools, helpers, html, inspect, itertools, operator, os, pathlib, pdb, pprint, re, results, string, sys, testing, threading, traceback, types, typing, unicode, util, warnings, weakref] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\pyparsing] | +2024-01-15 04:51:18 | +10 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pytz | +[UserDict, bisect, collections, datetime, doctest, os, pkg_resources, pprint, pytz, sets, struct, sys, threading, time] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\pytz] | +2024-01-15 04:51:18 | +6 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / pytz_deprecation_shim | +[_common, _exceptions, _impl, backports, datetime, dateutil, pytz, sys, warnings, zoneinfo] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\pytz_deprecation_shim] | +2024-01-15 04:51:19 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / setuptools | +[_deprecation_warning, _distutils_hack, _imp, _importlib, _itertools, _path, _reqs, base64, builtins, collections, configparser, contextlib, ctypes, dis, distutils, email, extern, fnmatch, functools, glob, hashlib, html, http, importlib, importlib_metadata, inspect, io, itertools, json, logging, marshal, monkey, numbers, numpy, operator, org, os, pathlib, pickle, pkg_resources, platform, posixpath, py34compat, re, setuptools, shlex, shutil, socket, subprocess, sys, tarfile, tempfile, textwrap, tokenize, types, typing, unicodedata, urllib, warnings, winreg, zipfile] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\setuptools] | +2024-01-15 04:51:19 | +30 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / sqlalchemy | +[codecs, datetime, engine, inspect, inspection, logging, pool, re, schema, sql, sqlalchemy, sys, types, util] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\sqlalchemy] | +2024-01-15 04:51:20 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / tzdata | +[] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\tzdata] | +2024-01-15 04:51:21 | +1 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / tzlocal | +[_winreg, backports, calendar, datetime, os, pytz_deprecation_shim, re, subprocess, sys, time, tzlocal, warnings, winreg, zoneinfo] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\tzlocal] | +2024-01-15 04:51:21 | +5 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / wheel | +[__future__, base64, collections, csv, ctypes, email, glob, hashlib, io, logging, macosx_libfile, metadata, os, pkg_resources, re, setuptools, shutil, stat, sys, sysconfig, textwrap, time, typing, util, vendored, warnings, wheel, wheelfile, zipfile] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\wheel] | +2024-01-15 04:51:21 | +8 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / yarl | +[_quoting, _quoting_c, _quoting_py, _url, codecs, collections, functools, idna, ipaddress, math, multidict, os, re, string, sys, typing, urllib, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\yarl] | +2024-01-15 04:51:21 | +4 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Lib / site-packages / _distutils_hack | +[importlib, os, sys, traceback, warnings] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Lib\site-packages\_distutils_hack] | +2024-01-15 04:51:21 | +2 | +
A - OLD / TELEGRAM_OLD / omutchan-main / venvs / Scripts | +[os, site, sys] | +[A - OLD\TELEGRAM_OLD\omutchan-main\venvs\Scripts] | +2024-01-15 04:51:21 | +1 | +
A - OLD / TELEGRAM_OLD / Pinterest bot | +[] | +[A - OLD\TELEGRAM_OLD\Pinterest bot] | +2024-01-15 04:51:21 | +1 | +
A - OLD / TELEGRAM_OLD / pinterest_donwloader | +[bs4, concurrent, cv2, json, numpy, os, pydotmap, re, requests, sys, tqdm] | +[A - OLD\TELEGRAM_OLD\pinterest_donwloader] | +2024-01-15 04:51:23 | +1 | +
A - OLD / TELEGRAM_OLD / PRIZE_bot | +[aiogram, asyncio, config, datetime, logging, os, re, sqlite3, threading, time] | +[A - OLD\TELEGRAM_OLD\PRIZE_bot] | +2024-01-15 04:51:23 | +3 | +
A - OLD / TELEGRAM_OLD / pyuserbot-master | +[PIL, asyncio, configparser, download, gtts, io, math, os, pathlib, platform, pyrogram, random, requests, shutil, socket, sqlite3, string, struct, subprocess, sys, time, userbot, utils] | +[A - OLD\TELEGRAM_OLD\pyuserbot-master] | +2024-01-15 04:51:23 | +3 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram | +[aiogram, data, filters, handlers, loader, models] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / data | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\data] | +2024-01-15 04:50:41 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / filters | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\filters] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\handlers] | +2024-01-15 04:51:23 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / errors | +[aiogram, logging] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\handlers\errors] | +2024-01-15 04:50:41 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / groups | +[aiogram, loader] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\handlers\groups] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / supergroups | +[aiogram, data, keyboards, loader, logging, models, peewee, utils] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\handlers\supergroups] | +2024-01-15 04:51:23 | +6 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / handlers / users | +[aiogram, data, keyboards, loader, models, utils] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\handlers\users] | +2024-01-15 04:51:23 | +6 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / keyboards | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\keyboards] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / keyboards / inline | +[aiogram] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\keyboards\inline] | +2024-01-15 04:51:23 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / models | +[datetime, peewee, utils] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\models] | +2024-01-15 04:51:23 | +4 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / utils / db_api | +[peewee, sqlite] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\utils\db_api] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram / utils / misc | +[logging] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram\utils\misc] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old | +[aiogram, data, filters, handlers, loader, models] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / data | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\data] | +2024-01-15 04:50:41 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / filters | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\filters] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\handlers] | +2024-01-15 04:51:23 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / errors | +[aiogram, logging] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\handlers\errors] | +2024-01-15 04:50:41 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / groups | +[aiogram, loader] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\handlers\groups] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / supergroups | +[aiogram, data, keyboards, loader, logging, models, peewee, utils] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\handlers\supergroups] | +2024-01-15 04:51:23 | +6 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / handlers / users | +[aiogram, data, keyboards, loader, models, utils] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\handlers\users] | +2024-01-15 04:51:23 | +6 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / keyboards | +[] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\keyboards] | +2024-01-15 04:50:41 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / keyboards / inline | +[aiogram] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\keyboards\inline] | +2024-01-15 04:51:23 | +1 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / models | +[datetime, peewee, utils] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\models] | +2024-01-15 04:51:23 | +4 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / utils / db_api | +[peewee, sqlite] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\utils\db_api] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / subscribebot_aiogram / subscribebot_aiogram_old / utils / misc | +[logging] | +[A - OLD\TELEGRAM_OLD\subscribebot_aiogram\subscribebot_aiogram_old\utils\misc] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / Telebot_Video_Donwloader | +[bs4, fake_useragent, logging, random, re, requests, selenium, seleniumwire, telebot, time, youtube_dl] | +[A - OLD\TELEGRAM_OLD\Telebot_Video_Donwloader] | +2024-01-15 04:51:23 | +5 | +
A - OLD / TELEGRAM_OLD / Telebot_Video_Donwloader / videodonwloader / videodonwloader | +[itemadapter, scrapy] | +[A - OLD\TELEGRAM_OLD\Telebot_Video_Donwloader\videodonwloader\videodonwloader] | +2024-01-15 04:50:41 | +5 | +
A - OLD / TELEGRAM_OLD / Telebot_Video_Donwloader / videodonwloader / videodonwloader / spiders | +[scrapy] | +[A - OLD\TELEGRAM_OLD\Telebot_Video_Donwloader\videodonwloader\videodonwloader\spiders] | +2024-01-15 04:51:23 | +2 | +
A - OLD / TELEGRAM_OLD / TGPars-main | +[configparser, csv, os, pandas, random, requests, sys, telethon, time, traceback] | +[A - OLD\TELEGRAM_OLD\TGPars-main] | +2024-01-15 04:51:23 | +4 | +
A - OLD / TELEGRAM_OLD / TikTok Bot by @its_niks | +[aiogram, configparser, datetime, db, keyboards, os, re, requests, sqlite3, tiktok_downloader, time, urllib] | +[A - OLD\TELEGRAM_OLD\TikTok Bot by @its_niks] | +2024-01-15 04:51:23 | +3 | +
A - OLD / TELEGRAM_OLD / ttsaverbotbot | +[aiogram, aiohttp, asyncio, datetime, db, io, json, keyboards, os, peewee, re, tiktok_dl, time, typing, urllib, utils] | +[A - OLD\TELEGRAM_OLD\ttsaverbotbot] | +2024-01-15 04:51:23 | +5 | +
A - OLD / TELEGRAM_OLD / Vk_aiogram_Donwloader | +[aiogram, asyncio, config, datetime, logging, os, pickle, re, shutil, sqlite3, tiktok_downloader, youtube_dl, yt_dlp] | +[A - OLD\TELEGRAM_OLD\Vk_aiogram_Donwloader] | +2024-01-15 04:51:23 | +6 | +
A - OLD / TELEGRAM_OLD / zayavki bot | +[aiogram, config, datetime, pymysql] | +[A - OLD\TELEGRAM_OLD\zayavki bot] | +2024-01-15 04:51:23 | +3 | +
A - OLD / TELEGRAM_OLD / _ | +[aiogram, asyncio, colorama, dp, logging, sqlite3, typing] | +[A - OLD\TELEGRAM_OLD\_] | +2024-01-15 04:51:23 | +1 | +
A - OLD / TELEGRAM_OLD / скрипт, который даёт доступ в закрытый чат после выполнения условий Подписка на каналы | +[aiogram, asyncio, config, sqlite3, sqlitehelper, time] | +[A - OLD\TELEGRAM_OLD\скрипт, который даёт доступ в закрытый чат после выполнения условий Подписка на каналы] | +2024-01-15 04:51:23 | +3 | +
A - OLD / WomanDayOpenAi | +[aiogram, asyncio, config, logging, openai, random, sqlite3, time] | +[A - OLD\WomanDayOpenAi] | +2024-03-03 00:56:20 | +3 | +
ALL comp paramentrs | +[cx_Freeze, os, platform, psutil, socket, subprocess, sys, uuid] | +[ALL comp paramentrs] | +2024-08-07 08:02:15 | +2 | +
amnezia-time-tracker | +[PIL, app, argparse, datetime, json, os, pathlib, requests, subprocess, sys, typing, uvicorn] | +[amnezia-time-tracker] | +2025-08-06 13:58:41 | +9 | +
amnezia-time-tracker / app | +[app, collections, contextlib, fastapi, starlette, time, typing, uvicorn] | +[amnezia-time-tracker\app] | +2025-08-06 21:39:34 | +2 | +
amnezia-time-tracker / app / api | +[] | +[amnezia-time-tracker\app\api] | +2025-08-06 10:59:45 | +1 | +
amnezia-time-tracker / app / api / v1 | +[app, datetime, fastapi, typing] | +[amnezia-time-tracker\app\api\v1] | +2025-07-31 15:26:14 | +2 | +
amnezia-time-tracker / app / api / v1 / endpoints | +[] | +[amnezia-time-tracker\app\api\v1\endpoints] | +2025-07-31 15:26:14 | +1 | +
amnezia-time-tracker / app / api / v1 / routers | +[app, datetime, fastapi, os, pathlib, shutil, typing] | +[amnezia-time-tracker\app\api\v1\routers] | +2025-08-05 21:42:07 | +12 | +
amnezia-time-tracker / app / auth | +[app, datetime, fastapi, jose, os, passlib, secrets, typing] | +[amnezia-time-tracker\app\auth] | +2025-07-31 18:55:18 | +2 | +
amnezia-time-tracker / app / core | +[app, celery, constants, fastapi, functools, pydantic_settings, secrets, starlette, threading, time, typing] | +[amnezia-time-tracker\app\core] | +2025-07-31 15:26:14 | +9 | +
amnezia-time-tracker / app / db | +[app, connection, contextlib, dataclasses, datetime, pydantic, re, sqlite3, threading, typing, unicodedata] | +[amnezia-time-tracker\app\db] | +2025-07-31 15:26:14 | +9 | +
amnezia-time-tracker / app / db / migrations | +[app, os, sqlite3, typing] | +[amnezia-time-tracker\app\db\migrations] | +2025-07-31 15:33:21 | +6 | +
amnezia-time-tracker / app / db / repositories | +[app, company_repository, datetime, project_repository, time_entry_repository, token_repository, typing, user_repository] | +[amnezia-time-tracker\app\db\repositories] | +2025-08-05 21:17:22 | +7 | +
amnezia-time-tracker / app / middlewares | +[app, contextlib, fastapi, redis, starlette, time] | +[amnezia-time-tracker\app\middlewares] | +2025-08-05 10:28:33 | +2 | +
amnezia-time-tracker / app / models | +[] | +[amnezia-time-tracker\app\models] | +2025-07-31 15:26:14 | +1 | +
amnezia-time-tracker / app / schemas | +[app, collections, dataclasses, datetime, pydantic, re, typing] | +[amnezia-time-tracker\app\schemas] | +2025-07-31 15:26:14 | +9 | +
amnezia-time-tracker / app / services | +[PIL, app, cv2, dataclasses, datetime, hashlib, json, numpy, os, pathlib, time, typing] | +[amnezia-time-tracker\app\services] | +2025-07-31 15:26:14 | +4 | +
amnezia-time-tracker / app / tasks | +[app, datetime, email, json, os, smtplib, typing] | +[amnezia-time-tracker\app\tasks] | +2025-08-06 13:54:01 | +4 | +
amnezia-time-tracker / app / utils | +[PIL, app, collections, colorlog, contextlib, ctypes, dataclasses, datetime, enum, fastapi, functools, hashlib, json, logging, mimetypes, os, pathlib, pydantic, re, secrets, shutil, sqlite3, sys, threading, time, traceback, typing, uuid, validators] | +[amnezia-time-tracker\app\utils] | +2025-07-31 15:26:14 | +15 | +
amnezia-time-tracker / app / workers | +[] | +[amnezia-time-tracker\app\workers] | +2025-07-31 15:26:14 | +1 | +
amnezia-time-tracker / client_desktop | +[PIL, aiohttp, app, asyncio, client_desktop, contextlib, dataclasses, datetime, enum, functools, json, logging, os, platform, psutil, pyautogui, pynput, requests, signal, subprocess, sys, threading, time, traceback, typing, uuid] | +[amnezia-time-tracker\client_desktop] | +2025-07-31 15:26:14 | +12 | +
amnezia-time-tracker / frontend | +[] | +[amnezia-time-tracker\frontend] | +2025-07-31 15:33:04 | +1 | +
amnezia-time-tracker / sandbox | +[] | +[amnezia-time-tracker\sandbox] | +2025-07-31 15:40:45 | +2 | +
amnezia-time-tracker / scripts | +[argparse, datetime, json, logging, pathlib, subprocess, sys, typing] | +[amnezia-time-tracker\scripts] | +2025-08-06 12:52:48 | +1 | +
amnezia-time-tracker / tests | +[app, datetime, os, pathlib, sqlite3, sys, time, traceback] | +[amnezia-time-tracker\tests] | +2025-08-06 13:37:33 | +2 | +
amnezia-time-tracker / tests / e2e | +[] | +[amnezia-time-tracker\tests\e2e] | +2025-07-31 15:32:36 | +1 | +
amnezia-time-tracker / tests / integration | +[] | +[amnezia-time-tracker\tests\integration] | +2025-07-31 15:32:47 | +1 | +
amnezia-time-tracker / tests / unit | +[] | +[amnezia-time-tracker\tests\unit] | +2025-07-31 15:32:51 | +1 | +
deep_real_time1 | +[PIL, cv2, dlib, face_recognition, keras, numpy, pyvirtualcam, requests, time] | +[deep_real_time1] | +2024-01-15 04:51:25 | +14 | +
deep_real_time1 / age-and-gender-detection-python-main | +[] | +[deep_real_time1\age-and-gender-detection-python-main] | +2024-01-15 04:51:24 | +2 | +
deep_real_time1 / Emotion-master | +[cv2, keras, numpy, statistics, utils] | +[deep_real_time1\Emotion-master] | +2024-01-15 04:51:25 | +1 | +
deep_real_time1 / Emotion-master / utils | +[cv2, h5py, inference, keras, matplotlib, mpl_toolkits, numpy, os, pandas, pickle, preprocessor, random, scipy, tensorflow, utils] | +[deep_real_time1\Emotion-master\utils] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / python-gender-age-detect-master | +[cv2, math, sys] | +[deep_real_time1\python-gender-age-detect-master] | +2024-01-15 04:51:25 | +1 | +
deep_real_time1 / utils | +[cv2, h5py, inference, keras, matplotlib, mpl_toolkits, numpy, os, pandas, pickle, preprocessor, random, scipy, tensorflow, utils] | +[deep_real_time1\utils] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages | +[StringIO, __future__, abc, asyncio, atexit, cPickle, codecs, collections, configparser, contextlib, copy, ctypes, doctest, errno, functools, glob, hashlib, heapq, imp, importlib, inspect, io, itertools, json, jupyter_core, logging, matplotlib, operator, os, pathlib, pathlib2, pickle, pkgutil, pprint, pywintypes, random, re, shutil, socket, stat, struct, sys, tempfile, textwrap, threading, time, tornado, types, typing, unittest, warnings, zipfile] | +[deep_real_time1\venvs\Lib\site-packages] | +2024-01-15 04:51:28 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / cmake | +[_version, json, os, skbuild, subprocess, sys] | +[deep_real_time1\venvs\Lib\site-packages\cmake] | +2024-01-15 04:51:28 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / colorama | +[ansi, ansitowin32, atexit, contextlib, ctypes, initialise, msvcrt, os, re, sys, win32, winterm] | +[deep_real_time1\venvs\Lib\site-packages\colorama] | +2024-01-15 04:51:28 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / colorama / tests | +[ansi, ansitowin32, contextlib, contextlib2, initialise, io, mock, os, sys, unittest, utils, win32, winterm] | +[deep_real_time1\venvs\Lib\site-packages\colorama\tests] | +2024-01-15 04:51:28 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / contourpy | +[__future__, _contourpy, contourpy, math, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\contourpy] | +2024-01-15 04:51:28 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / contourpy / util | +[__future__, abc, bokeh, contourpy, io, matplotlib, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\contourpy\util] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / cv2 | +[copy, importlib, load_config_py2, load_config_py3, numpy, os, platform, sys, version] | +[deep_real_time1\venvs\Lib\site-packages\cv2] | +2024-01-15 04:51:28 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / cv2 / data | +[os] | +[deep_real_time1\venvs\Lib\site-packages\cv2\data] | +2024-01-15 04:51:28 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / cv2 / gapi | +[cv2, sys] | +[deep_real_time1\venvs\Lib\site-packages\cv2\gapi] | +2024-01-15 04:51:28 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / cv2 / mat_wrapper | +[cv2, numpy, sys] | +[deep_real_time1\venvs\Lib\site-packages\cv2\mat_wrapper] | +2024-01-15 04:51:28 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / cv2 / misc | +[cv2, version] | +[deep_real_time1\venvs\Lib\site-packages\cv2\misc] | +2024-01-15 04:51:28 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / cv2 / utils | +[collections, cv2] | +[deep_real_time1\venvs\Lib\site-packages\cv2\utils] | +2024-01-15 04:51:28 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / dateutil | +[__future__, _common, _version, calendar, datetime, dateutil, fractions, functools, heapq, itertools, math, operator, re, six, sys, tz, warnings] | +[deep_real_time1\venvs\Lib\site-packages\dateutil] | +2024-01-15 04:51:28 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / dateutil / parser | +[__future__, _parser, calendar, datetime, dateutil, decimal, functools, io, isoparser, re, six, string, time, warnings] | +[deep_real_time1\venvs\Lib\site-packages\dateutil\parser] | +2024-01-15 04:51:28 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / dateutil / tz | +[_common, _factories, bisect, collections, contextlib, ctypes, datetime, dateutil, functools, os, six, struct, sys, time, tz, warnings, weakref, win] | +[deep_real_time1\venvs\Lib\site-packages\dateutil\tz] | +2024-01-15 04:51:28 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / dateutil / zoneinfo | +[dateutil, io, json, logging, os, pkgutil, shutil, subprocess, tarfile, tempfile, warnings] | +[deep_real_time1\venvs\Lib\site-packages\dateutil\zoneinfo] | +2024-01-15 04:51:28 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / defusedxml | +[ElementTree, __future__, common, gzip, importlib, io, lxml, sax, sys, threading, warnings, xml, xmlrpc, xmlrpclib] | +[deep_real_time1\venvs\Lib\site-packages\defusedxml] | +2024-01-15 04:51:28 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / face_recognition_models | +[pkg_resources] | +[deep_real_time1\venvs\Lib\site-packages\face_recognition_models] | +2024-01-15 04:51:29 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / fastjsonschema | +[collections, contextlib, decimal, draft04, draft06, draft07, exceptions, functools, generator, indent, json, re, ref_resolver, sys, urllib, version] | +[deep_real_time1\venvs\Lib\site-packages\fastjsonschema] | +2024-01-15 04:51:29 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / flatbuffers | +[_version, array, builder, collections, compat, contextlib, enum, imp, importlib, number_types, numpy, struct, sys, table, warnings] | +[deep_real_time1\venvs\Lib\site-packages\flatbuffers] | +2024-01-15 04:51:29 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools | +[EasyDialogs, cffLib, collections, feaLib, fontTools, getopt, importlib, logging, misc, os, otlLib, pathlib, pkgutil, re, runpy, struct, sys, time, ttLib, types, unicodedata, unicodedata2, varLib] | +[deep_real_time1\venvs\Lib\site-packages\fontTools] | +2024-01-15 04:51:29 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / cffLib | +[argparse, array, collections, doctest, fontTools, functools, io, logging, operator, re, struct, sys] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\cffLib] | +2024-01-15 04:51:29 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / colorLib | +[collections, copy, enum, errors, fontTools, functools, geometry, math, pprint, sys, table_builder, typing] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\colorLib] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / config | +[fontTools, textwrap] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\config] | +2024-01-15 04:51:29 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / cu2qu | +[argparse, cli, contextlib, cu2qu, cython, defcon, errors, fontTools, functools, logging, math, multiprocessing, os, random, shutil, sys, timeit, ufo, ufoLib2] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\cu2qu] | +2024-01-15 04:51:29 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / designspaceLib | +[__future__, collections, copy, dataclasses, fontTools, io, itertools, logging, math, os, posixpath, textwrap, typing] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\designspaceLib] | +2024-01-15 04:51:29 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / encodings | +[codecs, encodings] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\encodings] | +2024-01-15 04:51:29 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / feaLib | +[argparse, collections, cython, fontTools, io, itertools, logging, os, re, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\feaLib] | +2024-01-15 04:51:29 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / merge | +[fontTools, functools, logging, operator, sys] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\merge] | +2024-01-15 04:51:29 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / misc | +[__future__, __pypy__, ast, binascii, calendar, collections, contextlib, cython, dataclasses, datetime, decimal, doctest, enum, fontTools, functools, io, itertools, logging, lxml, math, numbers, operator, os, psOperators, re, roundTools, shutil, string, struct, sympy, sys, tempfile, textTools, time, timeit, types, typing, unittest, warnings, xattr, xml] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\misc] | +2024-01-15 04:51:29 | +33 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / misc / plistlib | +[base64, collections, datetime, fontTools, functools, io, numbers, re, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\misc\plistlib] | +2024-01-15 04:51:29 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / mtiLib | +[argparse, contextlib, fontTools, logging, operator, os, sys] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\mtiLib] | +2024-01-15 04:51:29 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / otlLib | +[collections, copy, fontTools, functools, logging, os] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\otlLib] | +2024-01-15 04:51:29 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / otlLib / optimize | +[argparse, collections, doctest, fontTools, functools, itertools, logging, math, os, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\otlLib\optimize] | +2024-01-15 04:51:29 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / pens | +[AppKit, PIL, PyQt5, Quartz, argparse, array, collections, ctypes, cython, doctest, fontTools, freetype, hashlib, math, matplotlib, numpy, operator, os, platform, pprint, reportlab, subprocess, sys, typing, wx] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\pens] | +2024-01-15 04:51:29 | +28 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / qu2cu | +[argparse, cli, collections, cython, fontTools, logging, math, os, qu2cu, random, sys, timeit, typing] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\qu2cu] | +2024-01-15 04:51:29 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / subset | +[__future__, array, collections, fontTools, functools, itertools, logging, lxml, os, re, struct, sys, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\subset] | +2024-01-15 04:51:29 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / svgLib | +[path] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\svgLib] | +2024-01-15 04:51:29 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / svgLib / path | +[arc, fontTools, math, parser, re, shapes] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\svgLib\path] | +2024-01-15 04:51:29 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / t1Lib | +[Carbon, Res, fontTools, os, re] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\t1Lib] | +2024-01-15 04:51:29 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / ttLib | +[abc, argparse, array, brotli, brotlicffi, collections, contextlib, copy, doctest, fontTools, importlib, io, itertools, logging, os, pathops, re, struct, sys, tables, time, traceback, types, typing, zlib, zopfli] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\ttLib] | +2024-01-15 04:51:29 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / ttLib / tables | +[BitmapGlyphMetrics, DefaultTable, E_B_D_T_, T_S_I_V_, UserList, __future__, array, base64, bisect, collections, copy, dataclasses, doctest, enum, fontTools, functools, gzip, io, itertools, json, logging, lz4, math, numbers, os, otBase, otConverters, otData, otTables, pdb, re, sbixGlyph, sbixStrike, struct, sys, traceback, typing, uharfbuzz, warnings] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\ttLib\tables] | +2024-01-15 04:51:29 | +97 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / ufoLib | +[__future__, calendar, collections, copy, doctest, enum, fontTools, fs, functools, io, logging, os, warnings, xml, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\ufoLib] | +2024-01-15 04:51:30 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / unicodedata | +[bisect, fontTools, re, unicodedata, unicodedata2] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\unicodedata] | +2024-01-15 04:51:30 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / varLib | +[__future__, argparse, cff, collections, copy, cython, doctest, enum, errors, fontTools, functools, glyphsLib, io, itertools, json, logging, math, matplotlib, mpl_toolkits, munkres, numbers, numpy, operator, os, otlLib, pprint, re, scipy, sys, textwrap, typing] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\varLib] | +2024-01-15 04:51:30 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / varLib / instancer | +[argparse, collections, contextlib, copy, dataclasses, enum, featureVars, fontTools, functools, logging, os, re, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\varLib\instancer] | +2024-01-15 04:51:30 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / fontTools / voltLib | +[fontTools, io, typing] | +[deep_real_time1\venvs\Lib\site-packages\fontTools\voltLib] | +2024-01-15 04:51:30 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / gast | +[ast, ast2, ast3, astn, gast, inspect, sys] | +[deep_real_time1\venvs\Lib\site-packages\gast] | +2024-01-15 04:51:30 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / google / auth | +[__future__, abc, base64, cachetools, calendar, collections, copy, datetime, google, io, json, logging, oauth2client, os, six, subprocess] | +[deep_real_time1\venvs\Lib\site-packages\google\auth] | +2024-01-15 04:51:30 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / google / auth / compute_engine | +[datetime, google, json, logging, os, six] | +[deep_real_time1\venvs\Lib\site-packages\google\auth\compute_engine] | +2024-01-15 04:51:30 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / google / auth / crypt | +[__future__, abc, cryptography, google, io, json, pkg_resources, pyasn1, pyasn1_modules, rsa, six] | +[deep_real_time1\venvs\Lib\site-packages\google\auth\crypt] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / google / auth / transport | +[__future__, abc, certifi, functools, google, grpc, logging, requests, six, socket, urllib3] | +[deep_real_time1\venvs\Lib\site-packages\google\auth\transport] | +2024-01-15 04:51:30 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / google / oauth2 | +[copy, datetime, google, io, json, six] | +[deep_real_time1\venvs\Lib\site-packages\google\oauth2] | +2024-01-15 04:51:30 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / google / protobuf | +[base64, binascii, collections, encodings, google, hashlib, io, json, math, operator, os, re, sys, threading, warnings] | +[deep_real_time1\venvs\Lib\site-packages\google\protobuf] | +2024-01-15 04:51:30 | +26 | +
deep_real_time1 / venvs / Lib / site-packages / google / protobuf / compiler | +[google] | +[deep_real_time1\venvs\Lib\site-packages\google\protobuf\compiler] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / google / protobuf / internal | +[calendar, collections, copy, copyreg, ctypes, datetime, functools, gc, google, importlib, io, math, numbers, os, pickle, re, struct, sys, types, typing, unittest, uuid, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\google\protobuf\internal] | +2024-01-15 04:51:30 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / google / protobuf / pyext | +[google] | +[deep_real_time1\venvs\Lib\site-packages\google\protobuf\pyext] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / google / protobuf / util | +[] | +[deep_real_time1\venvs\Lib\site-packages\google\protobuf\util] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / google_auth_oauthlib | +[__future__, base64, contextlib, datetime, google, google_auth_oauthlib, hashlib, interactive, json, logging, random, requests_oauthlib, secrets, socket, string, webbrowser, wsgiref] | +[deep_real_time1\venvs\Lib\site-packages\google_auth_oauthlib] | +2024-01-15 04:51:30 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / google_auth_oauthlib / tool | +[click, google_auth_oauthlib, json, os] | +[deep_real_time1\venvs\Lib\site-packages\google_auth_oauthlib\tool] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / grpc | +[__future__, _typing, abc, collections, concurrent, contextlib, contextvars, copy, datetime, enum, functools, grpc, grpc_health, grpc_reflection, grpc_tools, inspect, logging, os, sys, threading, time, traceback, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\grpc] | +2024-01-15 04:51:30 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / aio | +[_base_call, _base_channel, _base_server, _call, _channel, _interceptor, _metadata, _server, _typing, _utils, abc, asyncio, collections, concurrent, enum, functools, grpc, inspect, logging, sys, time, traceback, typing] | +[deep_real_time1\venvs\Lib\site-packages\grpc\aio] | +2024-01-15 04:51:30 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / beta | +[abc, collections, grpc, threading, time] | +[deep_real_time1\venvs\Lib\site-packages\grpc\beta] | +2024-01-15 04:51:30 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / experimental | +[copy, functools, grpc, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\grpc\experimental] | +2024-01-15 04:51:30 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / experimental / aio | +[grpc] | +[deep_real_time1\venvs\Lib\site-packages\grpc\experimental\aio] | +2024-01-15 04:51:30 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / framework | +[] | +[deep_real_time1\venvs\Lib\site-packages\grpc\framework] | +2024-01-15 04:51:30 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / framework / common | +[enum] | +[deep_real_time1\venvs\Lib\site-packages\grpc\framework\common] | +2024-01-15 04:51:30 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / framework / foundation | +[abc, collections, concurrent, enum, functools, grpc, logging, threading] | +[deep_real_time1\venvs\Lib\site-packages\grpc\framework\foundation] | +2024-01-15 04:51:30 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / framework / interfaces | +[] | +[deep_real_time1\venvs\Lib\site-packages\grpc\framework\interfaces] | +2024-01-15 04:51:30 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / _cython | +[] | +[deep_real_time1\venvs\Lib\site-packages\grpc\_cython] | +2024-01-15 04:51:30 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / grpc / _cython / _cygrpc | +[] | +[deep_real_time1\venvs\Lib\site-packages\grpc\_cython\_cygrpc] | +2024-01-15 04:51:30 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / h5py | +[IPython, _conv, _hl, _selector, atexit, collections, h5, h5r, h5s, h5t, h5z, numpy, os, posixpath, re, sys, tests, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\h5py] | +2024-01-15 04:51:30 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / h5py / tests | +[binascii, collections, common, contextlib, data_files, functools, h5py, inspect, io, itertools, mpi4py, numpy, os, pathlib, pickle, platform, pytest, shlex, shutil, stat, subprocess, sys, tables, tempfile, threading, unittest, warnings, zlib] | +[deep_real_time1\venvs\Lib\site-packages\h5py\tests] | +2024-01-15 04:51:30 | +34 | +
deep_real_time1 / venvs / Lib / site-packages / h5py / tests / data_files | +[os] | +[deep_real_time1\venvs\Lib\site-packages\h5py\tests\data_files] | +2024-01-15 04:51:30 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / h5py / tests / test_vds | +[_hl, common, h5py, numpy, os, shutil, tempfile, test_highlevel_vds, test_lowlevel_vds, test_virtual_source] | +[deep_real_time1\venvs\Lib\site-packages\h5py\tests\test_vds] | +2024-01-15 04:51:30 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / h5py / _hl | +[_objects, base, collections, compat, contextlib, copy, dataset, datatype, dims, group, h5py_warnings, h5t, mpi4py, numpy, operator, os, posixpath, selections, sys, threading, urllib, uuid, vds, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\h5py\_hl] | +2024-01-15 04:51:30 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / idna | +[bisect, codec, codecs, core, intranges, package_data, re, sys, unicodedata, uts46data] | +[deep_real_time1\venvs\Lib\site-packages\idna] | +2024-01-15 04:51:30 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / imutils | +[__future__, base64, convenience, cv2, json, meta, numpy, os, re, scipy, sys, urllib, warnings] | +[deep_real_time1\venvs\Lib\site-packages\imutils] | +2024-01-15 04:51:30 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / imutils / face_utils | +[collections, cv2, facealigner, helpers, numpy] | +[deep_real_time1\venvs\Lib\site-packages\imutils\face_utils] | +2024-01-15 04:51:30 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / imutils / feature | +[__future__, convenience, cv2, dense, factories, gftt, harris, helpers, numpy, rootsift] | +[deep_real_time1\venvs\Lib\site-packages\imutils\feature] | +2024-01-15 04:51:30 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / imutils / io | +[os, tempfile, uuid] | +[deep_real_time1\venvs\Lib\site-packages\imutils\io] | +2024-01-15 04:51:30 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / imutils / video | +[Queue, convenience, count_frames, cv2, datetime, filevideostream, fps, picamera, pivideostream, queue, sys, threading, time, videostream, webcamvideostream] | +[deep_real_time1\venvs\Lib\site-packages\imutils\video] | +2024-01-15 04:51:30 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / ipython_genutils | +[__builtin__, __future__, _version, builtins, encoding, errno, functools, locale, os, platform, random, re, shutil, string, sys, tempfile, textwrap, types, warnings] | +[deep_real_time1\venvs\Lib\site-packages\ipython_genutils] | +2024-01-15 04:51:31 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / ipython_genutils / testing | +[nose, os, py3compat, sys, tempfile, unittest] | +[deep_real_time1\venvs\Lib\site-packages\ipython_genutils\testing] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / ipython_genutils / tests | +[__future__, importstring, math, nose, os, random, sys, tempdir, tempfile, testing] | +[deep_real_time1\venvs\Lib\site-packages\ipython_genutils\tests] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / isapi | +[cgi, imp, isapi, optparse, os, pythoncom, pywintypes, shutil, stat, sys, threading, time, traceback, win32api, win32com, win32event, win32file, win32security, winerror] | +[deep_real_time1\venvs\Lib\site-packages\isapi] | +2024-01-15 04:51:31 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / isapi / samples | +[isapi, optparse, os, stat, sys, threading, urllib, win32api, win32con, win32event, win32file, win32traceutil, winerror] | +[deep_real_time1\venvs\Lib\site-packages\isapi\samples] | +2024-01-15 04:51:31 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / isapi / test | +[isapi, urllib, win32api, win32traceutil, winerror] | +[deep_real_time1\venvs\Lib\site-packages\isapi\test] | +2024-01-15 04:51:31 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jax | +[__future__, argparse, collections, gzip, itertools, jax, json, os, pathlib, tempfile, tensorboard_plugin_profile, tensorflow, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax] | +2024-01-15 04:51:31 | +30 | +
deep_real_time1 / venvs / Lib / site-packages / jax / example_libraries | +[collections, functools, jax, operator, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\example_libraries] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / experimental | +[__future__, atexit, contextlib, enum, functools, inspect, io, itertools, jax, logging, math, numpy, operator, pickle, threading, traceback, typing, warnings, weakref, zlib] | +[deep_real_time1\venvs\Lib\site-packages\jax\experimental] | +2024-01-15 04:51:31 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / jax / experimental / compilation_cache | +[abc, hashlib, jax, logging, os, re, sys, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\experimental\compilation_cache] | +2024-01-15 04:51:31 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / jax / experimental / gda_serialization | +[abc, absl, asyncio, functools, itertools, jax, logging, math, numpy, os, pathlib, re, tensorstore, threading, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\experimental\gda_serialization] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / experimental / jax2tf | +[absl, base64, builtins, collections, contextlib, dataclasses, enum, functools, itertools, jax, math, numpy, operator, opt_einsum, os, re, string, tensorflow, threading, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax\experimental\jax2tf] | +2024-01-15 04:51:31 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / jax / experimental / sparse | +[__future__, abc, functools, itertools, jax, math, numpy, operator, scipy, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax\experimental\sparse] | +2024-01-15 04:51:31 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / jax / image | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\image] | +2024-01-15 04:51:31 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jax / interpreters | +[__future__, jax, os, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\interpreters] | +2024-01-15 04:51:31 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / jax / lax | +[jax, math] | +[deep_real_time1\venvs\Lib\site-packages\jax\lax] | +2024-01-15 04:51:31 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / jax / lib | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\lib] | +2024-01-15 04:51:31 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / jax / nn | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\nn] | +2024-01-15 04:51:31 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / jax / numpy | +[jax, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\numpy] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / ops | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\ops] | +2024-01-15 04:51:31 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jax / scipy | +[jax, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\scipy] | +2024-01-15 04:51:31 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / jax / scipy / cluster | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\scipy\cluster] | +2024-01-15 04:51:31 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / jax / scipy / interpolate | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\scipy\interpolate] | +2024-01-15 04:51:31 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jax / scipy / optimize | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\scipy\optimize] | +2024-01-15 04:51:31 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jax / scipy / sparse | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\scipy\sparse] | +2024-01-15 04:51:31 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / jax / scipy / stats | +[jax] | +[deep_real_time1\venvs\Lib\site-packages\jax\scipy\stats] | +2024-01-15 04:51:31 | +23 | +
deep_real_time1 / venvs / Lib / site-packages / jax / tools | +[absl, ast, functools, importlib, jax, re, tensorflow, textwrap] | +[deep_real_time1\venvs\Lib\site-packages\jax\tools] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src | +[IPython, __future__, abc, absl, atexit, builtins, collections, colorama, contextlib, dataclasses, difflib, enum, etils, functools, gc, glob, gzip, http, importlib, inspect, io, iree, itertools, jax, json, libtpu, logging, math, matplotlib, ml_dtypes, numpy, operator, opt_einsum, os, pathlib, platform, pytest, re, rich, scipy, socketserver, string, subprocess, sys, sysconfig, tempfile, textwrap, threading, time, traceback, types, typing, unittest, warnings, weakref, zlib] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src] | +2024-01-15 04:51:31 | +52 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / clusters | +[cloud_tpu_cluster, cluster, jax, logging, ompi_cluster, os, re, requests, slurm_cluster, time, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\clusters] | +2024-01-15 04:51:31 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / debugger | +[IPython, __future__, abc, cmd, dataclasses, functools, google, html, inspect, jax, numpy, os, pprint, pygments, sys, threading, traceback, typing, uuid, weakref, web_pdb] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\debugger] | +2024-01-15 04:51:31 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / image | +[enum, functools, jax, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\image] | +2024-01-15 04:51:31 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / internal_test_util | +[collections, itertools, jax, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\internal_test_util] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / interpreters | +[__future__, collections, contextlib, dataclasses, enum, functools, inspect, io, itertools, jax, logging, math, numpy, operator, os, re, sys, threading, typing, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\interpreters] | +2024-01-15 04:51:31 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / lax | +[__future__, builtins, enum, functools, inspect, itertools, jax, math, numpy, operator, os, string, typing, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\lax] | +2024-01-15 04:51:31 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / lib | +[gc, jax, jaxlib, pathlib, re, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\lib] | +2024-01-15 04:51:31 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / nn | +[functools, jax, math, numpy, operator, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\nn] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / numpy | +[abc, builtins, collections, functools, inspect, jax, math, numpy, operator, opt_einsum, re, textwrap, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\numpy] | +2024-01-15 04:51:31 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / ops | +[jax, numpy, sys, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\ops] | +2024-01-15 04:51:31 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / scipy | +[functools, itertools, jax, numpy, operator, scipy, textwrap, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\scipy] | +2024-01-15 04:51:31 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / state | +[__future__, dataclasses, functools, jax, math, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\state] | +2024-01-15 04:51:32 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / jax / _src / third_party | +[] | +[deep_real_time1\venvs\Lib\site-packages\jax\_src\third_party] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / jinja2 | +[_identifier, _string, ast, async_utils, asyncio, bccache, collections, compiler, constants, contextlib, debug, defaults, enum, environment, errno, exceptions, ext, filters, fnmatch, functools, gettext, hashlib, idtracking, importlib, inspect, io, itertools, json, keyword, lexer, loaders, logging, markupsafe, marshal, math, nodes, numbers, operator, optimizer, os, parser, pickle, posixpath, pprint, random, re, runtime, sandbox, stat, string, sys, tempfile, tests, textwrap, threading, types, typing, typing_extensions, urllib, utils, visitor, weakref, zipfile, zipimport] | +[deep_real_time1\venvs\Lib\site-packages\jinja2] | +2024-01-15 04:51:32 | +25 | +
deep_real_time1 / venvs / Lib / site-packages / jsonschema | +[__future__, argparse, attr, collections, contextlib, datetime, fqdn, fractions, functools, heapq, idna, importlib, importlib_metadata, importlib_resources, ipaddress, isoduration, itertools, json, jsonpointer, jsonschema, numbers, operator, pkgutil, pkgutil_resolve_name, pprint, pyrsistent, re, reprlib, requests, rfc3339_validator, rfc3986_validator, rfc3987, sys, textwrap, traceback, typing, typing_extensions, uri_template, urllib, uuid, warnings, webcolors] | +[deep_real_time1\venvs\Lib\site-packages\jsonschema] | +2024-01-15 04:51:32 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / jsonschema / benchmarks | +[jsonschema, pathlib, pyperf, pyrsistent] | +[deep_real_time1\venvs\Lib\site-packages\jsonschema\benchmarks] | +2024-01-15 04:51:32 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jsonschema / tests | +[__future__, atheris, attr, collections, contextlib, decimal, functools, hypothesis, importlib, importlib_metadata, io, json, jsonschema, os, pathlib, pyrsistent, re, subprocess, sys, tempfile, textwrap, unittest, urllib, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jsonschema\tests] | +2024-01-15 04:50:41 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / jupyterlab_pygments | +[_version, pygments, style] | +[deep_real_time1\venvs\Lib\site-packages\jupyterlab_pygments] | +2024-01-15 04:51:32 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / jupyter_core | +[application, argcomplete, argparse, command, contextlib, copy, ctypes, datetime, errno, json, logging, migrate, ntsecuritycon, os, pathlib, paths, platform, platformdirs, re, shutil, signal, site, stat, subprocess, sys, sysconfig, tempfile, traitlets, typing, utils, version, warnings, win32api, win32security] | +[deep_real_time1\venvs\Lib\site-packages\jupyter_core] | +2024-01-15 04:51:32 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / jupyter_core / tests | +[asyncio, ctypes, json, jupyter_core, os, pkg_resources, platformdirs, pytest, re, shutil, site, stat, subprocess, sys, sysconfig, tempfile, traitlets, unittest, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jupyter_core\tests] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / jupyter_core / utils | +[asyncio, atexit, errno, inspect, os, pathlib, sys, threading, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\jupyter_core\utils] | +2024-01-15 04:51:32 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras | +[abc, collections, copy, csv, functools, google, itertools, json, keras, math, numpy, os, random, re, requests, sys, tensorboard, tensorflow, threading, time, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\keras] | +2024-01-15 04:51:32 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / keras / api | +[keras, sys, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\api] | +2024-01-15 04:51:33 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras / api / keras | +[keras, sys, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\api\keras] | +2024-01-15 04:51:32 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras / api / _v1 | +[keras, sys, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\api\_v1] | +2024-01-15 04:51:32 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras / api / _v2 | +[keras, sys] | +[deep_real_time1\venvs\Lib\site-packages\keras\api\_v2] | +2024-01-15 04:51:33 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras / applications | +[copy, json, keras, math, numpy, sys, tensorflow, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\applications] | +2024-01-15 04:51:33 | +19 | +
deep_real_time1 / venvs / Lib / site-packages / keras / datasets | +[_pickle, gzip, json, keras, numpy, os, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\datasets] | +2024-01-15 04:51:33 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / keras / distribute | +[__future__, absl, collections, contextlib, copy, functools, json, keras, numpy, os, portpicker, requests, tempfile, tensorflow, threading, time, unittest] | +[deep_real_time1\venvs\Lib\site-packages\keras\distribute] | +2024-01-15 04:51:33 | +23 | +
deep_real_time1 / venvs / Lib / site-packages / keras / dtensor | +[absl, collections, contextlib, inspect, keras, numpy, re, tensorflow, threading] | +[deep_real_time1\venvs\Lib\site-packages\keras\dtensor] | +2024-01-15 04:51:33 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / keras / engine | +[abc, atexit, collections, contextlib, copy, functools, google, h5py, itertools, json, keras, math, multiprocessing, numpy, pandas, random, scipy, tensorflow, textwrap, threading, time, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\keras\engine] | +2024-01-15 04:50:41 | +24 | +
deep_real_time1 / venvs / Lib / site-packages / keras / estimator | +[tensorflow, tensorflow_estimator] | +[deep_real_time1\venvs\Lib\site-packages\keras\estimator] | +2024-01-15 04:51:33 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras / export | +[keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\export] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / keras / feature_column | +[__future__, collections, json, keras, re, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\feature_column] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / keras / initializers | +[keras, math, tensorflow, threading, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\initializers] | +2024-01-15 04:51:33 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / keras / integration_test | +[os, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\integration_test] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / keras / integration_test / models | +[keras, math, numpy, re, string, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\integration_test\models] | +2024-01-15 04:50:41 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers | +[keras, numpy, tensorflow, threading] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers] | +2024-01-15 04:51:33 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / activation | +[keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\activation] | +2024-01-15 04:51:33 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / attention | +[absl, collections, keras, math, numpy, string, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\attention] | +2024-01-15 04:51:33 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / convolutional | +[keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\convolutional] | +2024-01-15 04:51:33 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / core | +[keras, numpy, re, sys, tensorflow, textwrap, types, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\core] | +2024-01-15 04:51:33 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / locally_connected | +[keras, numpy, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\locally_connected] | +2024-01-15 04:51:33 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / merging | +[keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\merging] | +2024-01-15 04:51:33 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / normalization | +[keras, tensorflow, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\normalization] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / pooling | +[functools, keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\pooling] | +2024-01-15 04:51:33 | +19 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / preprocessing | +[collections, keras, numpy, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\preprocessing] | +2024-01-15 04:50:41 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / regularization | +[keras, numbers, numpy, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\regularization] | +2024-01-15 04:51:33 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / reshaping | +[copy, functools, keras, numpy, operator, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\reshaping] | +2024-01-15 04:51:33 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / keras / layers / rnn | +[__future__, collections, copy, functools, hashlib, keras, numbers, numpy, sys, tensorflow, types, uuid, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\layers\rnn] | +2024-01-15 04:51:33 | +26 | +
deep_real_time1 / venvs / Lib / site-packages / keras / legacy_tf_layers | +[__future__, contextlib, copy, functools, keras, sys, tensorflow, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\legacy_tf_layers] | +2024-01-15 04:51:33 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / keras / metrics | +[abc, keras, numpy, tensorflow, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\metrics] | +2024-01-15 04:51:33 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / keras / mixed_precision | +[contextlib, itertools, keras, tensorflow, threading] | +[deep_real_time1\venvs\Lib\site-packages\keras\mixed_precision] | +2024-01-15 04:51:33 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / keras / models | +[copy, keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\models] | +2024-01-15 04:51:33 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / keras / optimizers | +[abc, absl, functools, keras, platform, re, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\optimizers] | +2024-01-15 04:51:33 | +15 | +
deep_real_time1 / venvs / Lib / site-packages / keras / optimizers / legacy | +[abc, contextlib, functools, keras, numpy, tensorflow, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\optimizers\legacy] | +2024-01-15 04:50:41 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / keras / optimizers / schedules | +[abc, keras, math, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\optimizers\schedules] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / keras / premade_models | +[keras, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\keras\premade_models] | +2024-01-15 04:51:34 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / keras / preprocessing | +[PIL, collections, hashlib, json, keras, multiprocessing, numpy, os, random, scipy, tensorflow, threading, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\preprocessing] | +2024-01-15 04:51:34 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / keras / protobuf | +[google, keras] | +[deep_real_time1\venvs\Lib\site-packages\keras\protobuf] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / keras / saving | +[datetime, h5py, importlib, inspect, io, json, keras, numpy, os, re, tempfile, tensorflow, threading, types, warnings, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\keras\saving] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / keras / saving / legacy | +[copy, h5py, json, keras, numpy, os, tensorflow, threading, weakref] | +[deep_real_time1\venvs\Lib\site-packages\keras\saving\legacy] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / keras / testing_infra | +[absl, collections, contextlib, doctest, functools, h5py, itertools, keras, numpy, re, tensorflow, textwrap, threading, unittest] | +[deep_real_time1\venvs\Lib\site-packages\keras\testing_infra] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / keras / tests | +[collections, keras] | +[deep_real_time1\venvs\Lib\site-packages\keras\tests] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / keras / utils | +[IPython, PIL, abc, absl, binascii, codecs, collections, contextlib, copy, enum, functools, hashlib, importlib, inspect, io, itertools, keras, marshal, multiprocessing, numpy, os, pathlib, platform, pydot, pydot_ng, pydotplus, queue, random, re, shutil, six, sys, tarfile, tempfile, tensorflow, tensorflow_io, threading, time, traceback, types, typing, urllib, warnings, weakref, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\keras\utils] | +2024-01-15 04:51:34 | +30 | +
deep_real_time1 / venvs / Lib / site-packages / keras / utils / legacy | +[keras] | +[deep_real_time1\venvs\Lib\site-packages\keras\utils\legacy] | +2024-01-15 04:51:34 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / keras / wrappers | +[copy, keras, numpy, tensorflow, types, warnings] | +[deep_real_time1\venvs\Lib\site-packages\keras\wrappers] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / kiwisolver | +[_cext] | +[deep_real_time1\venvs\Lib\site-packages\kiwisolver] | +2024-01-15 04:51:34 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / markdown | +[__meta__, blockparser, blockprocessors, codecs, collections, core, extensions, functools, html, htmlentitydefs, htmlparser, importlib, importlib_metadata, inlinepatterns, itertools, json, logging, markdown, optparse, os, postprocessors, preprocessors, re, serializers, sys, textwrap, tidylib, treeprocessors, unittest, util, warnings, xml, yaml] | +[deep_real_time1\venvs\Lib\site-packages\markdown] | +2024-01-15 04:51:34 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / markdown / extensions | +[attr_list, blockprocessors, codehilite, collections, copy, html, htmlparser, inlinepatterns, logging, markdown, postprocessors, preprocessors, pygments, re, serializers, textwrap, treeprocessors, unicodedata, util, xml] | +[deep_real_time1\venvs\Lib\site-packages\markdown\extensions] | +2024-01-15 04:51:34 | +19 | +
deep_real_time1 / venvs / Lib / site-packages / markupsafe | +[_native, _speedups, functools, html, re, string, typing, typing_extensions] | +[deep_real_time1\venvs\Lib\site-packages\markupsafe] | +2024-01-15 04:51:34 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib | +[IPython, PIL, _color_data, _enums, _mathtext, _mathtext_data, abc, argparse, artist, ast, atexit, backend_bases, base64, bezier, binascii, cbook, certifi, cm, collections, colors, contextlib, contourpy, copy, cycler, dataclasses, datetime, dateutil, decimal, enum, font_manager, ft2font, functools, hashlib, importlib, inspect, io, itertools, json, kiwisolver, lines, locale, logging, markers, math, matplotlib, numbers, numpy, operator, os, packaging, patches, path, pathlib, pprint, pyparsing, re, setuptools_scm, shutil, ssl, string, struct, style, subprocess, sys, tempfile, text, textpath, textwrap, threading, ticker, time, transforms, types, unicodedata, urllib, uuid, warnings, weakref, winreg] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib] | +2024-01-15 04:51:34 | +76 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / axes | +[_axes, builtins, collections, contextlib, functools, inspect, itertools, logging, math, matplotlib, numbers, numpy, operator, types] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\axes] | +2024-01-15 04:51:34 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / backends | +[IPython, PIL, PyQt5, PyQt6, PySide2, PySide6, _afm, _backend_gtk, _backend_tk, asyncio, backend_agg, backend_bases, backend_cairo, backend_gtk3, backend_gtk4, backend_qt, backend_qtagg, backend_qtcairo, backend_webagg_core, backend_wx, base64, cairo, cairocffi, codecs, contextlib, ctypes, datetime, encodings, enum, errno, fontTools, functools, gi, gzip, hashlib, io, ipykernel, itertools, json, logging, math, matplotlib, mimetypes, numpy, operator, os, packaging, pathlib, platform, qt_compat, random, re, shiboken2, shiboken6, shutil, signal, sip, socket, string, struct, subprocess, sys, tempfile, threading, time, tkinter, tornado, traceback, types, uuid, warnings, weakref, webbrowser, wx, zlib] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\backends] | +2024-01-15 04:51:34 | +34 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / backends / qt_editor | +[copy, datetime, itertools, logging, matplotlib, numbers] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\backends\qt_editor] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / cbook | +[bz2, collections, contextlib, functools, gc, gi, gzip, itertools, math, matplotlib, numpy, operator, os, pathlib, shlex, subprocess, sys, time, traceback, types, weakref] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\cbook] | +2024-01-15 04:51:34 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / projections | +[geo, math, matplotlib, mpl_toolkits, numpy, polar, types] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\projections] | +2024-01-15 04:51:35 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / sphinxext | +[contextlib, doctest, docutils, hashlib, io, itertools, jinja2, matplotlib, os, pathlib, re, shutil, sphinx, sys, textwrap, traceback] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\sphinxext] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / style | +[contextlib, core, importlib, importlib_resources, logging, matplotlib, os, pathlib, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\style] | +2024-01-15 04:51:35 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / testing | +[PIL, atexit, compare, contextlib, exceptions, functools, hashlib, inspect, locale, logging, matplotlib, numpy, os, packaging, pandas, pathlib, pytest, shutil, string, subprocess, sys, tempfile, unittest, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\testing] | +2024-01-15 04:51:35 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / testing / jpl_units | +[Duration, Epoch, EpochConverter, StrConverter, UnitDbl, UnitDblConverter, UnitDblFormatter, datetime, functools, math, matplotlib, numpy, operator] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\testing\jpl_units] | +2024-01-15 04:51:35 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / tests | +[PIL, ast, base64, builtins, collections, concurrent, contextlib, contourpy, copy, cycler, datetime, dateutil, decimal, difflib, filecmp, functools, gc, gi, importlib, inspect, io, itertools, json, locale, logging, matplotlib, mpl_toolkits, multiprocessing, numpy, os, packaging, pandas, pathlib, pickle, pickletools, pkgutil, platform, psutil, pylab, pytest, re, shlex, shutil, signal, subprocess, sys, tempfile, textwrap, threading, time, timeit, tkinter, types, unittest, urllib, warnings, weakref, win32api, xml] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\tests] | +2024-01-15 04:51:35 | +88 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / tri | +[_triangulation, _tricontour, _trifinder, _triinterpolate, _tripcolor, _triplot, _trirefine, _tritools, matplotlib, numpy] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\tri] | +2024-01-15 04:51:35 | +17 | +
deep_real_time1 / venvs / Lib / site-packages / matplotlib / _api | +[contextlib, deprecation, functools, inspect, itertools, math, matplotlib, re, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\matplotlib\_api] | +2024-01-15 04:51:35 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / mistune | +[block_parser, html, inline_parser, markdown, plugins, re, renderers, scanner, urllib, util] | +[deep_real_time1\venvs\Lib\site-packages\mistune] | +2024-01-15 04:51:35 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / mistune / directives | +[admonition, base, include, mistune, os, re, toc] | +[deep_real_time1\venvs\Lib\site-packages\mistune\directives] | +2024-01-15 04:51:35 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / mistune / plugins | +[abbr, def_list, extra, footnotes, inline_parser, re, table, task_lists, util] | +[deep_real_time1\venvs\Lib\site-packages\mistune\plugins] | +2024-01-15 04:51:35 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / ml_dtypes | +[ml_dtypes, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\ml_dtypes] | +2024-01-15 04:51:35 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / ml_dtypes / tests | +[absl, collections, contextlib, copy, importlib, itertools, math, ml_dtypes, numpy, pickle, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\ml_dtypes\tests] | +2024-01-15 04:51:35 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits | +[os, sys] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits] | +2024-01-15 04:51:35 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axes_grid1 | +[axes_divider, axes_grid, functools, matplotlib, mpl_axes, numbers, numpy, parasite_axes] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits\axes_grid1] | +2024-01-15 04:51:35 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axes_grid1 / tests | +[itertools, matplotlib, mpl_toolkits, numpy, pathlib, platform, pytest] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits\axes_grid1\tests] | +2024-01-15 04:51:35 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axisartist | +[axis_artist, axisline_style, axislines, floating_axes, functools, grid_finder, grid_helper_curvelinear, itertools, math, matplotlib, mpl_toolkits, numpy, operator] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits\axisartist] | +2024-01-15 04:51:35 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / axisartist / tests | +[matplotlib, mpl_toolkits, numpy, pathlib, pytest, re] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits\axisartist\tests] | +2024-01-15 04:51:35 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / mplot3d | +[axes3d, collections, contextlib, functools, inspect, itertools, math, matplotlib, numpy, textwrap] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits\mplot3d] | +2024-01-15 04:51:35 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / mpl_toolkits / mplot3d / tests | +[functools, itertools, matplotlib, mpl_toolkits, numpy, pathlib, pytest] | +[deep_real_time1\venvs\Lib\site-packages\mpl_toolkits\mplot3d\tests] | +2024-01-15 04:51:35 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / numpy | +[__future__, _globals, _version, builtins, core, ctypes, enum, glob, hypothesis, json, lib, matrixlib, numpy, os, pathlib, pytest, sys, tempfile, testing, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy] | +2024-01-15 04:51:35 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / array_api | +[__future__, _array_object, _constants, _creation_functions, _data_type_functions, _dtypes, _elementwise_functions, _manipulation_functions, _searching_functions, _set_functions, _sorting_functions, _statistical_functions, _typing, _utility_functions, collections, dataclasses, enum, linalg, numpy, operator, sys, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\array_api] | +2024-01-15 04:51:35 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / array_api / tests | +[_array_object, _creation_functions, _dtypes, _elementwise_functions, hypothesis, inspect, numpy, operator, pytest, typing] | +[deep_real_time1\venvs\Lib\site-packages\numpy\array_api\tests] | +2024-01-15 04:51:35 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / compat | +[_inspect, collections, importlib, io, itertools, numpy, os, pathlib, pickle, pickle5, py3k, re, sys, types] | +[deep_real_time1\venvs\Lib\site-packages\numpy\compat] | +2024-01-15 04:51:35 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / compat / tests | +[numpy, os] | +[deep_real_time1\venvs\Lib\site-packages\numpy\compat\tests] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / core | +[_asarray, _ctypes, _dtype, _dummy_thread, _exceptions, _machar, _multiarray_umath, _string_helpers, _thread, _type_aliases, _ufunc_config, _umath_tests, arrayprint, ast, builtins, code_generators, collections, contextlib, copy, copyreg, ctypes, defchararray, distutils, einsumfunc, fromnumeric, function_base, functools, genapi, getlimits, glob, itertools, math, memmap, mmap, multiarray, numbers, numeric, numerictypes, numpy, numpy_api, operator, os, overrides, pathlib, pickle, platform, re, records, setup_common, shape_base, sys, sysconfig, textwrap, types, umath, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\core] | +2024-01-15 04:51:35 | +32 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / core / tests | +[Cython, __future__, _testbuffer, array_interface_testing, asyncio, builtins, checks, cmath, code, collections, concurrent, contextlib, copy, ctypes, cython, datetime, decimal, enum, fnmatch, fractions, functools, gc, hashlib, hypothesis, inspect, io, itertools, locale, math, mem_policy, mmap, nose, numbers, numpy, operator, os, pathlib, pickle, platform, pytest, pytz, random, re, shutil, subprocess, sys, sysconfig, tempfile, textwrap, threading, traceback, types, typing, unittest, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\numpy\core\tests] | +2024-01-15 04:50:41 | +60 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / distutils | +[Numeric, __future__, atexit, builtins, concurrent, configparser, copy, cpuinfo, ctypes, curses, distutils, functools, glob, importlib, inspect, locale, misc_util, msvcrt, multiprocessing, npy_pkg_config, numarray, numpy, optparse, os, pipes, platform, pprint, re, setuptools, shlex, shutil, subprocess, sys, sysconfig, system_info, tempfile, textwrap, threading, time, types, warnings, winreg] | +[deep_real_time1\venvs\Lib\site-packages\numpy\distutils] | +2024-01-15 04:51:36 | +26 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / distutils / command | +[atexit, copy, distutils, glob, numpy, os, re, setuptools, shlex, shutil, signal, subprocess, sys, textwrap, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\distutils\command] | +2024-01-15 04:51:36 | +18 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / distutils / fcompiler | +[__future__, base64, distutils, environment, functools, glob, hashlib, numpy, os, platform, re, subprocess, sys, sysconfig, tempfile, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\distutils\fcompiler] | +2024-01-15 04:51:36 | +20 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / distutils / tests | +[ccompiler_opt, contextlib, distutils, io, json, numpy, os, pytest, re, shutil, subprocess, sys, tempfile, textwrap, unittest] | +[deep_real_time1\venvs\Lib\site-packages\numpy\distutils\tests] | +2024-01-15 04:50:41 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / doc | +[os, re, textwrap] | +[deep_real_time1\venvs\Lib\site-packages\numpy\doc] | +2024-01-15 04:51:36 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / f2py | +[__version__, auxfuncs, capi_maps, copy, crackfortran, enum, fileinput, functools, math, numpy, numpy_distutils, os, pathlib, platform, pprint, re, shlex, shutil, string, subprocess, sys, tempfile, time, types, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\f2py] | +2024-01-15 04:51:36 | +17 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / f2py / tests | +[atexit, collections, contextlib, copy, importlib, math, numpy, os, pathlib, platform, pytest, re, shlex, shutil, subprocess, sys, tempfile, textwrap, threading, time, traceback, uuid] | +[deep_real_time1\venvs\Lib\site-packages\numpy\f2py\tests] | +2024-01-15 04:50:41 | +27 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / fft | +[_pocketfft, functools, helper, numpy, sys] | +[deep_real_time1\venvs\Lib\site-packages\numpy\fft] | +2024-01-15 04:51:36 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / fft / tests | +[numpy, pytest, queue, threading] | +[deep_real_time1\venvs\Lib\site-packages\numpy\fft\tests] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / lib | +[_datasource, _iotools, _version, arraypad, arraysetops, arrayterator, ast, builtins, bz2, collections, contextlib, function_base, functools, gzip, histograms, index_tricks, inspect, io, itertools, lzma, math, nanfunctions, npyio, numpy, operator, os, polynomial, pydoc, re, shape_base, shutil, stride_tricks, struct, sys, tempfile, textwrap, tokenize, twodim_base, type_check, types, ufunclike, urllib, utils, warnings, weakref, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\numpy\lib] | +2024-01-15 04:51:36 | +25 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / lib / tests | +[bz2, ctypes, datetime, decimal, fractions, functools, gc, gzip, hypothesis, inspect, io, itertools, locale, lzma, math, multiprocessing, numbers, numpy, operator, os, pathlib, pytest, random, re, shutil, subprocess, sys, tempfile, threading, time, urllib, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\lib\tests] | +2024-01-15 04:50:41 | +26 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / linalg | +[functools, linalg, numpy, operator, os, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\linalg] | +2024-01-15 04:51:37 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / linalg / tests | +[itertools, numpy, os, pytest, resource, subprocess, sys, textwrap, traceback, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\linalg\tests] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / ma | +[builtins, copy, core, extras, functools, inspect, itertools, numpy, operator, re, textwrap, timeit, unittest, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\ma] | +2024-01-15 04:51:37 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / ma / tests | +[copy, datetime, functools, io, itertools, numpy, operator, pytest, sys, textwrap, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\ma\tests] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / matrixlib | +[ast, defmatrix, numpy, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\matrixlib] | +2024-01-15 04:51:37 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / matrixlib / tests | +[collections, numpy, pytest, textwrap, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\matrixlib\tests] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / polynomial | +[_polybase, abc, chebyshev, functools, hermite, hermite_e, laguerre, legendre, numbers, numpy, operator, os, polynomial, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\polynomial] | +2024-01-15 04:51:37 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / polynomial / tests | +[decimal, fractions, functools, numbers, numpy, operator, pytest] | +[deep_real_time1\venvs\Lib\site-packages\numpy\polynomial\tests] | +2024-01-15 04:50:41 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / random | +[_generator, _mt19937, _pcg64, _philox, _sfc64, bit_generator, mtrand, numpy, os, platform, sys] | +[deep_real_time1\venvs\Lib\site-packages\numpy\random] | +2024-01-15 04:51:37 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / random / tests | +[Cython, cffi, ctypes, cython, functools, gc, hashlib, numba, numpy, os, pickle, pytest, shutil, subprocess, sys, threading, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\random\tests] | +2024-01-15 04:50:41 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / testing | +[_private, collections, numpy, unittest, warnings] | +[deep_real_time1\venvs\Lib\site-packages\numpy\testing] | +2024-01-15 04:51:37 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / testing / tests | +[datetime, itertools, nose, numpy, os, pytest, sys, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\numpy\testing\tests] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / testing / _private | +[collections, contextlib, difflib, distutils, doctest, functools, gc, importlib, inspect, io, nose, noseclasses, nosetester, numpy, operator, os, parameterized, pathlib, platform, pprint, psutil, pytest, re, scipy, shutil, sys, sysconfig, tempfile, time, traceback, types, unittest, utils, warnings, win32pdh] | +[deep_real_time1\venvs\Lib\site-packages\numpy\testing\_private] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / tests | +[ast, collections, ctypes, importlib, numpy, os, pathlib, pkgutil, pytest, re, subprocess, sys, sysconfig, textwrap, tokenize, types, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\numpy\tests] | +2024-01-15 04:50:41 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / typing | +[__future__, collections, mypy, numpy, typing] | +[deep_real_time1\venvs\Lib\site-packages\numpy\typing] | +2024-01-15 04:51:37 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / typing / tests | +[__future__, _pytest, collections, copy, importlib, itertools, mypy, numpy, os, pathlib, pickle, pytest, re, shutil, sys, types, typing, typing_extensions, weakref] | +[deep_real_time1\venvs\Lib\site-packages\numpy\typing\tests] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / _pyinstaller | +[PyInstaller, numpy, pathlib, pytest, subprocess] | +[deep_real_time1\venvs\Lib\site-packages\numpy\_pyinstaller] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / numpy / _typing | +[__future__, _array_like, _char_codes, _dtype_like, _generic_alias, _nbit, _nested_sequence, _scalars, _shape, _ufunc, collections, numpy, re, sys, textwrap, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\numpy\_typing] | +2024-01-15 04:51:37 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib | +[blinker, collections, datetime, jwt, logging, random, re, secrets, time, urllib] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib] | +2024-01-15 04:51:38 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth1 | +[rfc5849] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\oauth1] | +2024-01-15 04:51:38 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth1 / rfc5849 | +[base64, binascii, hashlib, hmac, ipaddress, jwt, logging, oauthlib, urllib, warnings] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\oauth1\rfc5849] | +2024-01-15 04:51:38 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth2 | +[rfc6749, rfc8628] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\oauth2] | +2024-01-15 04:51:38 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth2 / rfc6749 | +[binascii, datetime, endpoints, errors, functools, hashlib, hmac, inspect, json, logging, oauthlib, os, sys, time, tokens, urllib, utils, warnings] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\oauth2\rfc6749] | +2024-01-15 04:51:38 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / oauth2 / rfc8628 | +[logging] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\oauth2\rfc8628] | +2024-01-15 04:51:38 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / openid | +[connect] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\openid] | +2024-01-15 04:51:38 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / oauthlib / openid / connect | +[] | +[deep_real_time1\venvs\Lib\site-packages\oauthlib\openid\connect] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera | +[blurry, collections, color_space, colorama, compression, cv2, dataclasses, display, distortion, enum, importlib, io, matplotlib, mono, numpy, reproject, save, stereo, targets, threaded_camera, threading, time, undistort] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera] | +2024-01-15 04:51:38 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / bin | +[BaseHTTPServer, argparse, colorama, cv2, glob, numpy, opencv_camera, os, platform, re, socket, struct, sys, threading, time] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\bin] | +2024-01-15 04:51:38 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / display | +[color_space, cv2, dataclasses, numpy, time] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\display] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / mono | +[color_space, colorama, cv2, dataclasses, numpy, pathlib, time, undistort, yaml] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\mono] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / parameters | +[math, utils] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\parameters] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / save | +[cv2, dataclasses, numpy, os, platform, time] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\save] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / stereo | +[camera, color_space, colorama, cv2, dataclasses, mono, numpy, pathlib, save, time, undistort, yaml] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\stereo] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / opencv_camera / targets | +[cv2, numpy, opencv_camera] | +[deep_real_time1\venvs\Lib\site-packages\opencv_camera\targets] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / opt_einsum | +[_version, collections, concurrent, contextlib, contract, decimal, functools, heapq, itertools, json, math, numbers, numpy, parser, path_random, paths, random, sharing, threading, time] | +[deep_real_time1\venvs\Lib\site-packages\opt_einsum] | +2024-01-15 04:51:38 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / opt_einsum / backends | +[cupy, dispatch, functools, importlib, jax, numpy, operator, parser, sharing, tensorflow, theano, torch] | +[deep_real_time1\venvs\Lib\site-packages\opt_einsum\backends] | +2024-01-15 04:51:38 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / opt_einsum / tests | +[autograd, collections, concurrent, cupy, itertools, jax, multiprocessing, numpy, opt_einsum, os, pytest, sys, tensorflow, theano, torch, weakref] | +[deep_real_time1\venvs\Lib\site-packages\opt_einsum\tests] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / packaging | +[_elffile, _manylinux, _parser, _structures, _tokenizer, abc, ast, collections, contextlib, ctypes, dataclasses, enum, functools, importlib, itertools, logging, markers, operator, os, platform, re, specifiers, struct, subprocess, sys, sysconfig, tags, typing, urllib, utils, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\packaging] | +2024-01-15 04:51:38 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / pasta | +[pasta] | +[deep_real_time1\venvs\Lib\site-packages\pasta] | +2024-01-15 04:51:38 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pasta / augment | +[__future__, ast, copy, logging, pasta, six, textwrap, traceback, unittest] | +[deep_real_time1\venvs\Lib\site-packages\pasta\augment] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / pasta / base | +[__future__, abc, ast, collections, contextlib, difflib, functools, itertools, os, pasta, re, six, sys, textwrap, tokenize, unittest] | +[deep_real_time1\venvs\Lib\site-packages\pasta\base] | +2024-01-15 04:50:41 | +15 | +
deep_real_time1 / venvs / Lib / site-packages / PIL | +[IPython, JpegImagePlugin, JpegPresets, MpoImagePlugin, PIL, PcxImagePlugin, PyQt5, PyQt6, PySide2, PySide6, TiffImagePlugin, TiffTags, __future__, _binary, _deprecate, _util, array, atexit, base64, builtins, calendar, cffi, codecs, collections, colorsys, copy, defusedxml, enum, features, fractions, functools, io, itertools, logging, math, mmap, numbers, numpy, olefile, operator, os, packaging, pathlib, random, re, shlex, shutil, struct, subprocess, sys, tempfile, time, tkinter, warnings, zlib] | +[deep_real_time1\venvs\Lib\site-packages\PIL] | +2024-01-15 04:51:38 | +95 | +
deep_real_time1 / venvs / Lib / site-packages / pip | +[importlib, os, pip, runpy, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pip] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal | +[collections, configparser, dataclasses, datetime, functools, hashlib, importlib, itertools, json, locale, logging, optparse, os, pathlib, pip, re, shutil, site, sys, sysconfig, textwrap, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal] | +2024-01-15 04:51:38 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / cli | +[contextlib, functools, importlib, itertools, locale, logging, optparse, os, pip, shutil, ssl, subprocess, sys, textwrap, time, traceback, truststore, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\cli] | +2024-01-15 04:51:38 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / commands | +[collections, difflib, errno, hashlib, importlib, json, locale, logging, operator, optparse, os, pip, shutil, site, subprocess, sys, textwrap, types, typing, xmlrpc] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\commands] | +2024-01-15 04:51:38 | +18 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / distributions | +[abc, logging, pip, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\distributions] | +2024-01-15 04:51:38 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / index | +[collections, email, enum, functools, html, itertools, json, logging, mimetypes, optparse, os, pathlib, pip, re, sources, typing, urllib] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\index] | +2024-01-15 04:51:38 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / locations | +[base, distutils, functools, logging, os, pathlib, pip, site, sys, sysconfig, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\locations] | +2024-01-15 04:51:38 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / metadata | +[_json, base, contextlib, csv, email, functools, importlib, json, logging, os, pathlib, pip, re, sys, typing, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\metadata] | +2024-01-15 04:51:38 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / models | +[dataclasses, functools, itertools, json, logging, os, pip, posixpath, re, sys, typing, urllib] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\models] | +2024-01-15 04:51:38 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / network | +[_ssl, bisect, contextlib, email, io, ipaddress, json, keyring, logging, mimetypes, os, pip, platform, shutil, ssl, subprocess, sys, tempfile, typing, urllib, warnings, xmlrpc, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\network] | +2024-01-15 04:51:38 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / operations | +[collections, logging, mimetypes, os, pip, shutil, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\operations] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / req | +[collections, enum, functools, importlib, logging, optparse, os, pip, re, req_file, req_install, req_set, shlex, shutil, sys, sysconfig, typing, urllib, uuid, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\req] | +2024-01-15 04:51:39 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / resolution | +[pip, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\resolution] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / utils | +[_ssl, bz2, codecs, compat, contextlib, ctypes, dataclasses, datetime, email, errno, fnmatch, functools, getopt, getpass, hashlib, io, itertools, locale, logging, lzma, operator, os, pip, posixpath, random, re, shlex, shutil, site, ssl, stat, string, subprocess, sys, tarfile, tempfile, textwrap, threading, types, typing, urllib, warnings, wheel, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\utils] | +2024-01-15 04:50:41 | +28 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _internal / vcs | +[configparser, logging, os, pathlib, pip, re, shutil, sys, typing, urllib] | +[deep_real_time1\venvs\Lib\site-packages\pip\_internal\vcs] | +2024-01-15 04:51:39 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor | +[StringIO, __future__, abc, collections, functools, glob, importlib, io, itertools, operator, os, struct, sys, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor] | +2024-01-15 04:51:39 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / cachecontrol | +[adapter, argparse, base64, cPickle, cache, calendar, compat, controller, datetime, email, filewrapper, functools, io, json, logging, mmap, pickle, pip, re, serialize, tempfile, threading, time, types, urllib, urlparse, wrapper, zlib] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\cachecontrol] | +2024-01-15 04:51:39 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / certifi | +[argparse, core, importlib, os, pip, sys, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\certifi] | +2024-01-15 04:51:39 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / chardet | +[big5freq, big5prober, chardistribution, charsetgroupprober, charsetprober, codecs, codingstatemachine, collections, cp949prober, enums, escprober, escsm, eucjpprober, euckrfreq, euckrprober, euctwfreq, euctwprober, gb2312freq, gb2312prober, hebrewprober, jisfreq, johabfreq, johabprober, jpcntx, langbulgarianmodel, langgreekmodel, langhebrewmodel, langrussianmodel, langthaimodel, langturkishmodel, latin1prober, logging, mbcharsetprober, mbcsgroupprober, mbcssm, pip, re, sbcharsetprober, sbcsgroupprober, sjisprober, universaldetector, utf1632prober, utf8prober, version] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\chardet] | +2024-01-15 04:51:39 | +41 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / colorama | +[ansi, ansitowin32, atexit, contextlib, ctypes, initialise, os, re, sys, win32, winterm] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\colorama] | +2024-01-15 04:51:39 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / distlib | +[ConfigParser, HTMLParser, Queue, StringIO, __builtin__, __future__, _abcoll, _aix_support, _frozen_importlib, _frozen_importlib_external, _osx_support, base64, bisect, builtins, cgi, codecs, collections, compat, configparser, contextlib, csv, database, datetime, distutils, dummy_thread, dummy_threading, email, fnmatch, glob, gzip, hashlib, html, htmlentitydefs, http, httplib, imp, importlib, io, itertools, java, json, logging, markers, metadata, os, pkgutil, platform, posixpath, py_compile, queue, re, reprlib, resources, shutil, socket, ssl, stat, struct, subprocess, sys, sysconfig, tarfile, tempfile, textwrap, thread, threading, time, tokenize, types, urllib, urllib2, urlparse, util, version, warnings, wheel, xmlrpc, xmlrpclib, zipfile, zipimport, zlib] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\distlib] | +2024-01-15 04:51:39 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / distro | +[argparse, distro, functools, json, logging, os, re, shlex, subprocess, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\distro] | +2024-01-15 04:51:39 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / idna | +[bisect, codec, codecs, core, intranges, package_data, re, typing, unicodedata, uts46data] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\idna] | +2024-01-15 04:51:39 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / msgpack | +[__pypy__, _cmsgpack, collections, datetime, exceptions, ext, fallback, io, os, struct, sys] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\msgpack] | +2024-01-15 04:51:39 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / packaging | +[__about__, _manylinux, _structures, abc, collections, contextlib, ctypes, functools, importlib, itertools, logging, markers, operator, os, pip, platform, re, specifiers, string, struct, subprocess, sys, sysconfig, tags, typing, urllib, utils, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\packaging] | +2024-01-15 04:51:39 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pep517 | +[_compat, argparse, build, colorlog, contextlib, curses, dirtools, envbuild, functools, importlib, importlib_metadata, in_process, io, json, logging, os, pip, shutil, subprocess, sys, sysconfig, tarfile, tempfile, threading, tomllib, wrappers, zipfile, zipp] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\pep517] | +2024-01-15 04:51:39 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pkg_resources | +[__future__, __main__, _imp, collections, email, errno, functools, imp, importlib, inspect, io, itertools, linecache, ntpath, operator, os, pip, pkgutil, platform, plistlib, posixpath, re, stat, sys, sysconfig, tempfile, textwrap, time, types, warnings, zipfile, zipimport] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\pkg_resources] | +2024-01-15 04:51:39 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / platformdirs | +[__future__, abc, api, configparser, ctypes, functools, jnius, os, pathlib, pip, re, sys, typing, version, winreg] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\platformdirs] | +2024-01-15 04:51:39 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pygments | +[argparse, codecs, docutils, importlib, importlib_metadata, io, itertools, json, locale, operator, os, pip, re, shutil, sphinx, sys, textwrap, time, traceback, unicodedata] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\pygments] | +2024-01-15 04:51:39 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / pyparsing | +[abc, actions, collections, common, contextlib, copy, core, datetime, diagram, enum, exceptions, functools, helpers, html, inspect, itertools, operator, os, pathlib, pdb, pprint, re, results, string, sys, testing, threading, traceback, types, typing, unicode, util, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\pyparsing] | +2024-01-15 04:51:39 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / requests | +[OpenSSL, __version__, _internal_utils, adapters, api, auth, base64, calendar, codecs, collections, compat, contextlib, cookies, copy, cryptography, datetime, dummy_threading, encodings, exceptions, hashlib, hooks, http, io, json, logging, models, netrc, os, pip, platform, re, sessions, socket, ssl, status_codes, struct, structures, sys, tempfile, threading, time, urllib, utils, warnings, winreg, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\requests] | +2024-01-15 04:51:39 | +18 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / resolvelib | +[collections, compat, itertools, operator, providers, reporters, resolvers, structs] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\resolvelib] | +2024-01-15 04:51:39 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / rich | +[IPython, __future__, __main__, _cell_widths, _emoji_codes, _emoji_replace, _export_format, _extension, _inspect, _log_render, _loop, _palettes, _pick, _ratio, _spinners, _timer, _windows, _wrap, abc, align, ansi, argparse, array, ast, attr, box, builtins, cells, collections, color, color_triplet, colorsys, columns, configparser, console, constrain, containers, contextlib, control, ctypes, dataclasses, datetime, default_styles, emoji, enum, errors, file_proxy, fractions, functools, getpass, highlighter, html, inspect, io, ipywidgets, itertools, json, jupyter, live, live_render, logging, markup, marshal, math, measure, mmap, operator, os, padding, pager, palette, panel, pathlib, pip, platform, pretty, progress_bar, protocol, pty, random, re, region, repr, rule, scope, screen, segment, spinner, status, style, styled, syntax, sys, table, terminal_theme, text, textwrap, theme, threading, time, ...] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\rich] | +2024-01-15 04:51:39 | +75 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / tenacity | +[abc, after, asyncio, before, before_sleep, concurrent, datetime, functools, inspect, logging, nap, pip, random, re, retry, stop, sys, threading, time, tornado, types, typing, wait, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\tenacity] | +2024-01-15 04:51:39 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / tomli | +[__future__, _parser, _re, _types, collections, datetime, functools, re, string, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\tomli] | +2024-01-15 04:51:39 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / urllib3 | +[__future__, _collections, _version, binascii, codecs, collections, connection, connectionpool, contextlib, datetime, email, errno, exceptions, fields, filepost, functools, io, logging, mimetypes, os, packages, poolmanager, re, request, response, socket, ssl, sys, threading, urllib3_secure_extra, util, warnings, zlib] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\urllib3] | +2024-01-15 04:51:39 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / pip / _vendor / webencodings | +[__future__, codecs, json, labels, urllib, x_user_defined] | +[deep_real_time1\venvs\Lib\site-packages\pip\_vendor\webencodings] | +2024-01-15 04:51:40 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources | +[__main__, _imp, collections, email, errno, functools, imp, importlib, inspect, io, itertools, linecache, ntpath, operator, os, pkg_resources, pkgutil, platform, plistlib, posixpath, re, stat, sys, sysconfig, tempfile, textwrap, time, types, warnings, zipfile, zipimport] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources] | +2024-01-15 04:51:40 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / extern | +[importlib, sys] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\extern] | +2024-01-15 04:51:40 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor | +[_winreg, array, collections, com, contextlib, ctypes, io, itertools, os, pathlib, platform, posixpath, sys, win32api, win32com, winreg, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\_vendor] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / importlib_resources | +[_common, _compat, _itertools, _legacy, abc, collections, contextlib, functools, importlib, io, itertools, operator, os, pathlib, sys, tempfile, types, typing, warnings, zipfile, zipp] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\_vendor\importlib_resources] | +2024-01-15 04:51:40 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / jaraco | +[collections, contextlib, functools, inspect, itertools, operator, os, pkg_resources, shutil, subprocess, tempfile, time, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\_vendor\jaraco] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / more_itertools | +[collections, functools, heapq, itertools, math, more, operator, queue, random, recipes, sys, time, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\_vendor\more_itertools] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / packaging | +[__about__, _manylinux, _structures, abc, collections, contextlib, ctypes, functools, importlib, itertools, logging, markers, operator, os, pkg_resources, platform, re, specifiers, string, struct, subprocess, sys, sysconfig, tags, typing, urllib, utils, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\_vendor\packaging] | +2024-01-15 04:51:40 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / pkg_resources / _vendor / pyparsing | +[abc, actions, collections, common, contextlib, copy, core, datetime, diagram, enum, exceptions, functools, helpers, html, inspect, itertools, operator, os, pathlib, pdb, pprint, re, results, string, sys, testing, threading, traceback, types, typing, unicode, util, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\pkg_resources\_vendor\pyparsing] | +2024-01-15 04:51:40 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / platformdirs | +[__future__, abc, api, configparser, ctypes, functools, jnius, os, pathlib, platformdirs, re, sys, typing, typing_extensions, version, winreg] | +[deep_real_time1\venvs\Lib\site-packages\platformdirs] | +2024-01-15 04:51:40 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit | +[__future__, abc, application, auto_suggest, bisect, buffer, buffer_mapping, cache, clipboard, collections, completion, ctypes, datetime, document, enums, eventloop, filters, functools, history, input, inspect, interface, io, key_binding, keys, layout, os, output, prompt_toolkit, pygments, re, renderer, search_state, selection, shlex, shortcuts, signal, six, string, styles, subprocess, sys, tempfile, terminal, textwrap, threading, time, token, types, utils, validation, wcwidth, weakref] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit] | +2024-01-15 04:51:40 | +24 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / clipboard | +[__future__, abc, base, collections, in_memory, prompt_toolkit, pyperclip, six] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\clipboard] | +2024-01-15 04:51:40 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib | +[] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\contrib] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / completers | +[__future__, base, filesystem, os, prompt_toolkit, six, system] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\contrib\completers] | +2024-01-15 04:51:40 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / regular_languages | +[__future__, compiler, prompt_toolkit, re, regex_parser, six] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\contrib\regular_languages] | +2024-01-15 04:51:40 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / telnet | +[__future__, abc, application, codecs, fcntl, log, logging, os, prompt_toolkit, protocol, select, server, six, socket, struct, threading] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\contrib\telnet] | +2024-01-15 04:51:40 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / contrib / validators | +[__future__, prompt_toolkit, six] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\contrib\validators] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / eventloop | +[__future__, abc, asyncio, asyncio_base, base, callbacks, codecs, ctypes, errno, fcntl, inputhook, msvcrt, os, posix_utils, prompt_toolkit, select, selectors, signal, six, sys, terminal, threading, time, utils, win32_types] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\eventloop] | +2024-01-15 04:50:41 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / filters | +[__future__, abc, base, cli, collections, prompt_toolkit, six, types, utils, weakref] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\filters] | +2024-01-15 04:51:40 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / key_binding | +[__future__, abc, collections, defaults, prompt_toolkit, registry, six, weakref] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\key_binding] | +2024-01-15 04:51:40 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / key_binding / bindings | +[__future__, codecs, completion, itertools, math, named_commands, prompt_toolkit, registry, scroll, six, string] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\key_binding\bindings] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / layout | +[__future__, abc, collections, containers, controls, dimension, enums, itertools, lexers, margins, math, processors, prompt_toolkit, pygments, re, screen, six, time, utils] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\layout] | +2024-01-15 04:51:40 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / styles | +[__future__, abc, base, collections, defaults, from_dict, from_pygments, prompt_toolkit, pygments, six, utils] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\styles] | +2024-01-15 04:51:40 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / prompt_toolkit / terminal | +[__future__, array, ctypes, errno, fcntl, key_binding, keys, msvcrt, os, prompt_toolkit, re, six, sys, termios, tty, vt100_output, win32_output] | +[deep_real_time1\venvs\Lib\site-packages\prompt_toolkit\terminal] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 | +[logging, pyasn1, sys] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec | +[] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\codec] | +2024-01-15 04:51:40 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / ber | +[pyasn1, sys] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\codec\ber] | +2024-01-15 04:51:40 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / cer | +[pyasn1] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\codec\cer] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / der | +[pyasn1] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\codec\der] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / codec / native | +[collections, pyasn1] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\codec\native] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / compat | +[binascii, collections, datetime, platform, pyasn1, sys, time] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\compat] | +2024-01-15 04:51:40 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1 / type | +[datetime, math, pyasn1, sys] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1\type] | +2024-01-15 04:51:40 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / pyasn1_modules | +[base64, pyasn1, pyasn1_modules, string, sys] | +[deep_real_time1\venvs\Lib\site-packages\pyasn1_modules] | +2024-01-15 04:51:40 | +107 | +
deep_real_time1 / venvs / Lib / site-packages / pyfakewebcam | +[ctypes, cv2, fcntl, numpy, os, pyfakewebcam, sys, timeit] | +[deep_real_time1\venvs\Lib\site-packages\pyfakewebcam] | +2024-01-15 04:51:40 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / pygments | +[argparse, chardet, codecs, colorama, docutils, importlib, importlib_metadata, io, itertools, json, locale, operator, os, pkg_resources, pygments, re, shutil, sphinx, sys, textwrap, time, traceback, unicodedata] | +[deep_real_time1\venvs\Lib\site-packages\pygments] | +2024-01-15 04:51:40 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / pygments / filters | +[pygments, re] | +[deep_real_time1\venvs\Lib\site-packages\pygments\filters] | +2024-01-15 04:51:40 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pygments / formatters | +[PIL, _winreg, bz2, ctags, fnmatch, functools, gzip, io, math, os, pygments, subprocess, sys, types, winreg] | +[deep_real_time1\venvs\Lib\site-packages\pygments\formatters] | +2024-01-15 04:51:40 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / pygments / lexers | +[ast, bisect, bz2, copy, fnmatch, glob, gzip, keyword, os, pprint, pygments, re, shutil, string, subprocess, sys, tarfile, types, urllib] | +[deep_real_time1\venvs\Lib\site-packages\pygments\lexers] | +2024-01-15 04:51:41 | +223 | +
deep_real_time1 / venvs / Lib / site-packages / pygments / styles | +[pygments] | +[deep_real_time1\venvs\Lib\site-packages\pygments\styles] | +2024-01-15 04:51:41 | +45 | +
deep_real_time1 / venvs / Lib / site-packages / pyparsing | +[abc, actions, collections, common, contextlib, copy, core, datetime, diagram, enum, exceptions, functools, helpers, html, inspect, itertools, operator, os, pathlib, pdb, pprint, re, results, string, sys, testing, threading, traceback, types, typing, unicode, util, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\pyparsing] | +2024-01-15 04:51:41 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / pyparsing / diagram | +[inspect, io, jinja2, pyparsing, railroad, typing] | +[deep_real_time1\venvs\Lib\site-packages\pyparsing\diagram] | +2024-01-15 04:51:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pyrsistent | +[__future__, _pset, abc, collections, enum, functools, inspect, itertools, numbers, operator, os, pvectorc, pyrsistent, re, sys, typing] | +[deep_real_time1\venvs\Lib\site-packages\pyrsistent] | +2024-01-15 04:51:41 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin | +[] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin] | +2024-01-15 04:51:42 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / debugger | +[__main__, bdb, commctrl, dbgcon, linecache, os, pdb, pywin, string, sys, time, traceback, types, win32api, win32con, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\debugger] | +2024-01-15 04:51:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / Demos | +[OpenGL, __main__, _thread, commctrl, demoutils, fontdemo, os, pywin, regutil, sys, timer, traceback, win32api, win32con, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\Demos] | +2024-01-15 04:51:41 | +17 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / dialogs | +[commctrl, pywin, sys, threading, time, win32api, win32con, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\dialogs] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / docking | +[pywin, struct, win32api, win32con, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\docking] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / framework | +[__main__, _thread, afxres, array, bdb, cmdline, code, commctrl, dde, glob, importlib, io, linecache, operator, os, pywin, queue, re, regutil, string, sys, sysconfig, time, traceback, warnings, win32api, win32clipboard, win32con, win32help, win32ui, winerror] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\framework] | +2024-01-15 04:50:41 | +18 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / idle | +[CallTipWindow, __main__, inspect, pywin, re, string, sys, tokenize, traceback] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\idle] | +2024-01-15 04:51:42 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / mfc | +[pywin, types, win32con, win32ui, win32uiole] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\mfc] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / scintilla | +[__main__, afxres, array, codecs, config, glob, importlib, keyword, marshal, os, pythoncom, pywin, re, stat, string, struct, sys, time, traceback, types, win32api, win32con, win32trace, win32traceutil, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\scintilla] | +2024-01-15 04:51:42 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / pythonwin / pywin / tools | +[__main__, _thread, afxres, commctrl, dialog, glob, os, pyclbr, pywin, re, regutil, sys, types, win32api, win32con, win32event, win32process, win32trace, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\pythonwin\pywin\tools] | +2024-01-15 04:51:42 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / pytz | +[UserDict, bisect, collections, datetime, doctest, os, pkg_resources, pprint, pytz, sets, struct, sys, threading, time] | +[deep_real_time1\venvs\Lib\site-packages\pytz] | +2024-01-15 04:51:42 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / pyvirtualcam | +[_version, abc, camera, enum, numpy, platform, pyvirtualcam, time, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\pyvirtualcam] | +2024-01-15 04:51:43 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / requests | +[Cookie, OpenSSL, StringIO, __future__, __version__, _internal_utils, _winreg, adapters, api, auth, base64, calendar, certifi, chardet, codecs, collections, compat, contextlib, cookielib, cookies, copy, cryptography, datetime, dummy_threading, encodings, exceptions, hashlib, hooks, http, idna, io, json, logging, models, netrc, os, platform, re, sessions, simplejson, socket, ssl, status_codes, struct, structures, sys, tempfile, threading, time, urllib, urllib2, urllib3, urlparse, utils, warnings, winreg, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\requests] | +2024-01-15 04:51:43 | +18 | +
deep_real_time1 / venvs / Lib / site-packages / requests_oauthlib | +[__future__, json, logging, oauth1_auth, oauth1_session, oauth2_auth, oauth2_session, oauthlib, requests, urllib, urlparse] | +[deep_real_time1\venvs\Lib\site-packages\requests_oauthlib] | +2024-01-15 04:51:43 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / requests_oauthlib / compliance_fixes | +[__future__, ebay, facebook, fitbit, instagram, json, mailchimp, oauthlib, plentymarkets, re, slack, urllib, urlparse, weibo] | +[deep_real_time1\venvs\Lib\site-packages\requests_oauthlib\compliance_fixes] | +2024-01-15 04:51:43 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / rsa | +[abc, base64, doctest, hashlib, hmac, math, multiprocessing, optparse, os, pyasn1, rsa, struct, sys, threading, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\rsa] | +2024-01-15 04:51:43 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / scipy | +[_lib, ctypes, enum, glob, importlib, json, numpy, os, pytest, pytest_timeout, scipy, sys, threadpoolctl, types, warnings, yaml] | +[deep_real_time1\venvs\Lib\site-packages\scipy] | +2024-01-15 04:51:43 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / cluster | +[bisect, collections, matplotlib, numpy, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\cluster] | +2024-01-15 04:51:43 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / cluster / tests | +[matplotlib, numpy, pytest, scipy, string, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\cluster\tests] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / constants | +[__future__, _codata, _constants, math, numpy, scipy, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\constants] | +2024-01-15 04:51:43 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / constants / tests | +[numpy, scipy] | +[deep_real_time1\venvs\Lib\site-packages\scipy\constants\tests] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / datasets | +[_download_all, _fetchers, _registry, _utils, appdirs, argparse, bz2, numpy, os, pickle, pooch, scipy, shutil] | +[deep_real_time1\venvs\Lib\site-packages\scipy\datasets] | +2024-01-15 04:51:43 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / datasets / tests | +[numpy, os, pooch, pytest, scipy] | +[deep_real_time1\venvs\Lib\site-packages\scipy\datasets\tests] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / fft | +[_backend, _basic, _fftlog, _fftlog_multimethods, _helper, _pocketfft, _realtransforms, functools, numpy, scipy, special, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\fft] | +2024-01-15 04:51:43 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / fft / tests | +[functools, math, multiprocessing, numpy, os, pytest, queue, scipy, subprocess, sys, threading, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\fft\tests] | +2024-01-15 04:50:41 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / fft / _pocketfft | +[basic, contextlib, functools, helper, numbers, numpy, operator, os, pypocketfft, realtransforms, scipy, threading] | +[deep_real_time1\venvs\Lib\site-packages\scipy\fft\_pocketfft] | +2024-01-15 04:51:43 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / fftpack | +[_basic, _helper, _pseudo_diffs, _realtransforms, numpy, operator, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\fftpack] | +2024-01-15 04:51:43 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / fftpack / tests | +[numpy, os, pathlib, pytest, re, scipy, tokenize] | +[deep_real_time1\venvs\Lib\site-packages\scipy\fftpack\tests] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / integrate | +[__future__, _bvp, _ivp, _ode, _odepack_py, _quad_vec, _quadpack_py, _quadrature, collections, copy, functools, heapq, math, numpy, re, scipy, sys, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\integrate] | +2024-01-15 04:51:43 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / integrate / tests | +[StringIO, ctypes, io, itertools, math, multiprocessing, numpy, pytest, scipy, sys] | +[deep_real_time1\venvs\Lib\site-packages\scipy\integrate\tests] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / integrate / _ivp | +[base, bdf, common, inspect, itertools, ivp, lsoda, numpy, radau, rk, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\integrate\_ivp] | +2024-01-15 04:51:43 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / interpolate | +[_bsplines, _cubic, _fitpack2, _fitpack_impl, _fitpack_py, _interpolate, _ndgriddata, _pade, _polyint, _rbf, _rbfinterp, _rbfinterp_pythran, _rgi, _rgi_cython, interpnd, itertools, numpy, operator, scipy, sympy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\interpolate] | +2024-01-15 04:51:43 | +20 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / interpolate / tests | +[io, itertools, numpy, os, pickle, pytest, scipy, threading, time, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\interpolate\tests] | +2024-01-15 04:50:41 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / io | +[_fortran, _harwell_boeing, _idl, _mmio, _netcdf, bz2, enum, functools, gzip, io, matlab, mmap, numpy, operator, os, platform, scipy, struct, sys, tempfile, warnings, weakref, zlib] | +[deep_real_time1\venvs\Lib\site-packages\scipy\io] | +2024-01-15 04:51:43 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / io / arff | +[_arffread, csv, ctypes, datetime, numpy, re, scipy, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\io\arff] | +2024-01-15 04:51:43 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / io / matlab | +[_byteordercodes, _mio, _mio4, _mio5, _mio5_params, _mio5_utils, _mio_utils, _miobase, _streams, contextlib, functools, io, numpy, operator, os, scipy, sys, time, warnings, zlib] | +[deep_real_time1\venvs\Lib\site-packages\scipy\io\matlab] | +2024-01-15 04:51:43 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / io / tests | +[bz2, contextlib, glob, gzip, io, numpy, os, pathlib, pytest, re, scipy, shutil, sys, tempfile, textwrap, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\io\tests] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / io / _harwell_boeing | +[_fortran_format_parser, hb, numpy, re, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\io\_harwell_boeing] | +2024-01-15 04:51:43 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / linalg | +[_basic, _cythonized_array_utils, _decomp, _decomp_cholesky, _decomp_cossin, _decomp_ldl, _decomp_lu, _decomp_polar, _decomp_qr, _decomp_qz, _decomp_schur, _decomp_svd, _decomp_update, _expm_frechet, _flinalg_py, _matfuncs, _matfuncs_expm, _matfuncs_sqrtm, _matfuncs_sqrtm_triu, _misc, _procrustes, _sketches, _solve_toeplitz, _solvers, _special_matrices, blas, collections, fft, functools, itertools, lapack, math, numpy, re, scipy, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\linalg] | +2024-01-15 04:51:44 | +38 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / linalg / tests | +[functools, itertools, math, numpy, os, platform, pytest, random, scipy, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\linalg\tests] | +2024-01-15 04:50:41 | +23 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / misc | +[_common, bz2, numpy, os, pickle, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\misc] | +2024-01-15 04:51:44 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / misc / tests | +[numpy, pytest, scipy, sys, unittest] | +[deep_real_time1\venvs\Lib\site-packages\scipy\misc\tests] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / ndimage | +[_filters, _fourier, _interpolation, _measurements, _morphology, _ni_docstrings, collections, itertools, numbers, numpy, operator, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\ndimage] | +2024-01-15 04:51:44 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / ndimage / tests | +[__future__, functools, math, numpy, os, pytest, scipy, sys, threading, typing] | +[deep_real_time1\venvs\Lib\site-packages\scipy\ndimage\tests] | +2024-01-15 04:51:44 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / odr | +[_models, _odrpack, numpy, os, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\odr] | +2024-01-15 04:51:44 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / odr / tests | +[numpy, os, pytest, scipy, shutil, tempfile] | +[deep_real_time1\venvs\Lib\site-packages\scipy\odr\tests] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize | +[__future__, _basinhopping, _bglu_dense, _cobyla_py, _constraints, _differentiable_functions, _differentialevolution, _direct, _direct_py, _dual_annealing, _group_columns, _hessian_update_strategy, _highs, _lbfgsb_py, _linesearch, _linprog, _linprog_doc, _linprog_highs, _linprog_ip, _linprog_rs, _linprog_simplex, _linprog_util, _lsap, _lsq, _milp, _minimize, _minpack_py, _nnls, _nonlin, _numdiff, _optimize, _qap, _root, _root_scalar, _shgo, _slsqp_py, _spectral, _tnc, _trlib, _trustregion, _trustregion_constr, _trustregion_dogleg, _trustregion_exact, _trustregion_krylov, _trustregion_ncg, _typeshed, _zeros_py, collections, copy, functools, inspect, itertools, logging, math, numpy, operator, random, scikits, scipy, sksparse, sparse, sys, textwrap, threading, time, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize] | +2024-01-15 04:51:44 | +51 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / cython_optimize | +[] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\cython_optimize] | +2024-01-15 04:51:44 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / tests | +[concurrent, copy, datetime, functools, itertools, logging, math, multiprocessing, numpy, platform, pytest, re, scikits, scipy, sksparse, sys, test_linprog, test_minimize_constrained, test_minpack, time, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\tests] | +2024-01-15 04:50:41 | +39 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _highs | +[] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\_highs] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _lsq | +[bvls, common, dogbox, givens_elimination, least_squares, lsq_linear, math, numpy, scipy, trf, trf_linear, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\_lsq] | +2024-01-15 04:51:44 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _shgo_lib | +[copy, matplotlib, numpy] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\_shgo_lib] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _trlib | +[_trlib] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\_trlib] | +2024-01-15 04:51:44 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / optimize / _trustregion_constr | +[__future__, _constraints, _differentiable_functions, _hessian_update_strategy, _optimize, canonical_constraint, equality_constrained_sqp, math, minimize_trustregion_constr, numpy, projections, qp_subproblem, report, scipy, sksparse, time, tr_interior_point, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\optimize\_trustregion_constr] | +2024-01-15 04:51:44 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / signal | +[_arraytools, _bsplines, _czt, _filter_design, _fir_filter_design, _lti_conversion, _ltisys, _max_len_seq, _max_len_seq_inner, _peak_finding, _peak_finding_utils, _savitzky_golay, _signaltools, _sosfilt, _spectral, _spectral_py, _spline, _upfirdn, _upfirdn_apply, _waveforms, _wavelets, cmath, copy, math, numbers, numpy, operator, scipy, timeit, warnings, windows] | +[deep_real_time1\venvs\Lib\site-packages\scipy\signal] | +2024-01-15 04:51:44 | +27 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / signal / tests | +[concurrent, copy, decimal, itertools, math, mpmath, numpy, pickle, pytest, scipy, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\signal\tests] | +2024-01-15 04:50:41 | +20 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / signal / windows | +[_windows, numpy, operator, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\signal\windows] | +2024-01-15 04:51:45 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / sparse | +[_arrays, _base, _bsr, _compressed, _construct, _coo, _csc, _csr, _data, _dia, _dok, _extract, _index, _lil, _matrix_io, _sparsetools, _spfuncs, _sputils, bisect, functools, itertools, numbers, numpy, operator, scipy, sys, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\sparse] | +2024-01-15 04:51:45 | +33 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / sparse / csgraph | +[_flow, _laplacian, _matching, _min_spanning_tree, _reordering, _shortest_path, _tools, _traversal, numpy, scipy] | +[deep_real_time1\venvs\Lib\site-packages\scipy\sparse\csgraph] | +2024-01-15 04:51:45 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / sparse / linalg | +[_dsolve, _eigen, _expm_multiply, _interface, _isolve, _matfuncs, _norm, _onenormest, _propack, numpy, scipy, sparse, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\sparse\linalg] | +2024-01-15 04:51:45 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / sparse / tests | +[contextlib, functools, gc, itertools, numpy, operator, os, pickle, platform, pytest, random, scipy, sys, tempfile, threading] | +[deep_real_time1\venvs\Lib\site-packages\scipy\sparse\tests] | +2024-01-15 04:50:41 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / spatial | +[__future__, _ckdtree, _geometric_slerp, _kdtree, _lib, _plotutils, _procrustes, _qhull, _spherical_voronoi, dataclasses, functools, linalg, matplotlib, numpy, scipy, special, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\spatial] | +2024-01-15 04:51:45 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / spatial / tests | +[copy, functools, itertools, matplotlib, numpy, os, pickle, platform, psutil, pytest, resource, scipy, sys, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\scipy\spatial\tests] | +2024-01-15 04:50:41 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / spatial / transform | +[_rotation, _rotation_spline, numpy, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\spatial\transform] | +2024-01-15 04:51:45 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / special | +[_basic, _comb, _ellip_harm, _ellip_harm_2, _lambertw, _logsumexp, _orthogonal, _sf_error, _spfun_stats, _spherical_bessel, _ufuncs, functools, itertools, math, mpmath, numpy, operator, os, posix, pytest, scipy, signal, sys, time, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\special] | +2024-01-15 04:51:45 | +18 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / special / tests | +[__future__, itertools, math, mpmath, numpy, os, platform, pytest, scipy, sympy, sys, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\special\tests] | +2024-01-15 04:50:41 | +49 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / special / _precompute | +[argparse, functools, matplotlib, mpmath, numpy, os, re, scipy, sympy, time] | +[deep_real_time1\venvs\Lib\site-packages\scipy\special\_precompute] | +2024-01-15 04:50:41 | +13 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / stats | +[__future__, _axis_nan_policy, _biasedurn, _binned_statistic, _binomtest, _common, _constants, _continuous_distns, _covariance, _crosstab, _discrete_distns, _distn_infrastructure, _distr_params, _entropy, _fit, _hypotests, _kde, _ksstats, _levy_stable, _lib, _mannwhitneyu, _morestats, _mstats_basic, _mstats_extras, _multivariate, _odds_ratio, _page_trend_test, _qmc, _qmc_cy, _relative_risk, _resampling, _rvs_sampling, _sobol, _stats, _stats_mstats_common, _stats_py, _stats_pythran, _tukeylambda_stats, _unuran, _variation, _warnings_errors, abc, argparse, builtins, collections, contingency, copy, ctypes, dataclasses, distributions, functools, inspect, itertools, keyword, math, matplotlib, numbers, numpy, operator, os, pathlib, re, scipy, subprocess, sys, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\stats] | +2024-01-15 04:51:46 | +48 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / stats / tests | +[_discrete_distns, _hypotests, collections, common_tests, copy, data, functools, itertools, json, math, matplotlib, numpy, os, pathlib, pickle, platform, pytest, re, scipy, sys, test_continuous_basic, test_discrete_basic, threading, unittest, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\stats\tests] | +2024-01-15 04:50:41 | +28 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _boost | +[scipy] | +[deep_real_time1\venvs\Lib\site-packages\scipy\stats\_boost] | +2024-01-15 04:51:46 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _levy_stable | +[_continuous_distns, _distn_infrastructure, functools, levyst, numpy, scipy, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\stats\_levy_stable] | +2024-01-15 04:51:46 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _rcont | +[rcont] | +[deep_real_time1\venvs\Lib\site-packages\scipy\stats\_rcont] | +2024-01-15 04:51:46 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / stats / _unuran | +[] | +[deep_real_time1\venvs\Lib\site-packages\scipy\stats\_unuran] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / _lib | +[_uarray, cffi, collections, contextlib, copy, ctypes, functools, gc, importlib, inspect, itertools, keyword, math, multiprocessing, numbers, numpy, operator, os, platform, psutil, pydoc, pytest, re, scipy, shutil, sphinx, sys, tempfile, textwrap, threading, typing, uarray, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\scipy\_lib] | +2024-01-15 04:51:46 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / _lib / tests | +[ast, cffi, ctypes, fractions, gc, importlib, math, multiprocessing, numpy, os, pathlib, pickle, pkgutil, pytest, re, scipy, subprocess, sys, threading, time, tokenize, traceback, types, warnings] | +[deep_real_time1\venvs\Lib\site-packages\scipy\_lib\tests] | +2024-01-15 04:50:41 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / scipy / _lib / _uarray | +[_backend, _uarray, contextlib, copyreg, functools, importlib, inspect, pickle, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\scipy\_lib\_uarray] | +2024-01-15 04:51:46 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools | +[_deprecation_warning, _distutils_hack, _imp, _importlib, _itertools, _path, _reqs, base64, builtins, collections, configparser, contextlib, ctypes, dis, distutils, email, extern, fnmatch, functools, glob, hashlib, html, http, importlib, importlib_metadata, inspect, io, itertools, json, logging, marshal, monkey, numbers, numpy, operator, org, os, pathlib, pickle, pkg_resources, platform, posixpath, py34compat, re, setuptools, shlex, shutil, socket, subprocess, sys, tarfile, tempfile, textwrap, tokenize, types, typing, unicodedata, urllib, warnings, winreg, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\setuptools] | +2024-01-15 04:51:46 | +30 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / command | +[Cython, _importlib, _path, abc, base64, build, collections, configparser, contextlib, distutils, dl, enum, extern, fnmatch, functools, glob, http, importlib, inspect, io, itertools, logging, marshal, operator, os, pathlib, pkg_resources, platform, py36compat, random, re, setuptools, shlex, shutil, site, socket, stat, struct, subprocess, sys, sysconfig, tempfile, textwrap, time, traceback, types, typing, typing_extensions, unittest, upload, urllib, warnings, wheel, zipfile, zipimport] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\command] | +2024-01-15 04:51:46 | +26 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / config | +[_apply_pyprojecttoml, _deprecation_warning, _importlib, _path, ast, collections, configparser, contextlib, distutils, email, functools, glob, importlib, inspect, io, itertools, logging, os, pathlib, setuptools, sys, textwrap, types, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\config] | +2024-01-15 04:51:46 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / config / _validate_pyproject | +[contextlib, email, error_reporting, extra_validations, fastjsonschema_exceptions, fastjsonschema_validations, functools, io, itertools, json, logging, os, packaging, re, setuptools, ssl, string, textwrap, trove_classifiers, typing, urllib] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\config\_validate_pyproject] | +2024-01-15 04:51:46 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / extern | +[importlib, sys] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\extern] | +2024-01-15 04:51:46 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _distutils | +[_aix_support, _functools, _imp, _macos_compat, _osx_support, cgi, collections, configparser, contextlib, copy, distutils, email, errno, errors, fnmatch, functools, getopt, grp, importlib, itertools, operator, os, pathlib, platform, pprint, pwd, py38compat, py_compile, re, shlex, stat, string, subprocess, sys, sysconfig, tarfile, tempfile, tokenize, unittest, warnings, win32api, win32con, winreg, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_distutils] | +2024-01-15 04:51:46 | +33 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _distutils / command | +[base64, concurrent, contextlib, distutils, docutils, functools, getpass, glob, hashlib, importlib, io, itertools, os, pprint, re, site, stat, subprocess, sys, sysconfig, tokenize, urllib, warnings] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_distutils\command] | +2024-01-15 04:51:46 | +23 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor | +[_collections_abc, abc, collections, contextlib, io, itertools, operator, pathlib, posixpath, sys, typing, warnings, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / importlib_metadata | +[_collections, _compat, _functools, _itertools, _meta, _text, abc, collections, contextlib, csv, email, functools, importlib, itertools, operator, os, pathlib, platform, posixpath, re, sys, textwrap, types, typing, typing_extensions, warnings] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\importlib_metadata] | +2024-01-15 04:51:46 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / importlib_resources | +[_common, _compat, _itertools, _legacy, abc, collections, contextlib, functools, importlib, io, itertools, operator, os, pathlib, sys, tempfile, types, typing, warnings, zipfile, zipp] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\importlib_resources] | +2024-01-15 04:51:46 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / jaraco | +[collections, contextlib, functools, inspect, itertools, operator, os, setuptools, shutil, subprocess, tempfile, time, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\jaraco] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / more_itertools | +[collections, functools, heapq, itertools, math, more, operator, queue, random, recipes, sys, time, warnings] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\more_itertools] | +2024-01-15 04:51:46 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / packaging | +[__about__, _manylinux, _structures, abc, collections, contextlib, ctypes, functools, importlib, itertools, logging, markers, operator, os, platform, re, setuptools, specifiers, string, struct, subprocess, sys, sysconfig, tags, typing, urllib, utils, version, warnings] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\packaging] | +2024-01-15 04:51:46 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / pyparsing | +[abc, actions, collections, common, contextlib, copy, core, datetime, diagram, enum, exceptions, functools, helpers, html, inspect, itertools, operator, os, pathlib, pdb, pprint, re, results, string, sys, testing, threading, traceback, types, typing, unicode, util, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\pyparsing] | +2024-01-15 04:51:46 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / setuptools / _vendor / tomli | +[__future__, _parser, _re, _types, collections, datetime, functools, re, string, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\setuptools\_vendor\tomli] | +2024-01-15 04:51:46 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / soupsieve | +[__future__, __meta__, bs4, collections, copyreg, datetime, functools, pretty, re, typing, unicodedata, util, warnings] | +[deep_real_time1\venvs\Lib\site-packages\soupsieve] | +2024-01-15 04:51:47 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard | +[IPython, abc, absl, argparse, atexit, base64, collections, dataclasses, datetime, errno, functools, google, html, importlib, json, logging, markdown, mimetypes, numpy, os, pkg_resources, random, shlex, signal, socket, subprocess, sys, tempfile, tensorboard, textwrap, threading, time, types, typing, urllib, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard] | +2024-01-15 04:51:47 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / backend | +[base64, collections, dataclasses, gzip, hashlib, io, json, math, re, struct, tensorboard, textwrap, time, typing, urllib, werkzeug, wsgiref, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\backend] | +2024-01-15 04:50:41 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / backend / event_processing | +[base64, bisect, collections, contextlib, dataclasses, itertools, json, multiprocessing, os, queue, random, re, tensorboard, tensorflow, tensorflow_io, threading, time, typing] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\backend\event_processing] | +2024-01-15 04:50:41 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / compat | +[tensorboard, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\compat] | +2024-01-15 04:51:47 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / compat / proto | +[google, tensorboard] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\compat\proto] | +2024-01-15 04:50:41 | +35 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / compat / tensorflow_stub | +[absl, array, dtypes, errno, io, logging, numpy, struct, sys, tensorboard, traceback, warnings] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\compat\tensorflow_stub] | +2024-01-15 04:51:47 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / data | +[abc, contextlib, errno, grpc, logging, numpy, os, pkg_resources, subprocess, tempfile, tensorboard, tensorboard_data_server, time] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\data] | +2024-01-15 04:51:47 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / data / experimental | +[abc, grpc, numpy, pandas, sys, tensorboard, time] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\data\experimental] | +2024-01-15 04:51:47 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / data / proto | +[google, grpc, tensorboard] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\data\proto] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins | +[abc] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / audio | +[functools, google, numpy, tensorboard, tensorflow, urllib, warnings, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\audio] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / core | +[argparse, functools, gzip, io, mimetypes, posixpath, tensorboard, werkzeug, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\core] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / custom_scalar | +[google, re, tensorboard, tensorflow, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\custom_scalar] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / debugger_v2 | +[json, tensorboard, tensorflow, threading, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\debugger_v2] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / distribution | +[dataclasses, numpy, tensorboard, typing, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\distribution] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / graph | +[json, tensorboard, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\graph] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / histogram | +[google, numpy, tensorboard, tensorflow, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\histogram] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / hparams | +[abc, collections, csv, dataclasses, google, hashlib, io, json, math, numpy, operator, os, random, re, tensorboard, tensorflow, time, typing, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\hparams] | +2024-01-15 04:51:47 | +17 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / image | +[google, imghdr, numpy, tensorboard, tensorflow, urllib, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\image] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / mesh | +[dataclasses, google, json, numpy, tensorboard, tensorflow, typing, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\mesh] | +2024-01-15 04:51:47 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / metrics | +[collections, imghdr, json, tensorboard, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\metrics] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / npmi | +[google, math, tensorboard, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\npmi] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / profile_redirect | +[tensorboard, tensorboard_plugin_profile] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\profile_redirect] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / projector | +[collections, functools, google, imghdr, mimetypes, numpy, os, tensorboard, threading, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\projector] | +2024-01-15 04:51:47 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / pr_curve | +[google, numpy, tensorboard, tensorflow, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\pr_curve] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / scalar | +[csv, google, io, numpy, tensorboard, tensorflow, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\scalar] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / text | +[google, numpy, tensorboard, tensorflow, textwrap, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\text] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / plugins / text_v2 | +[numpy, tensorboard, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\plugins\text_v2] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / summary | +[abc, numpy, tensorboard, time] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\summary] | +2024-01-15 04:51:47 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / summary / writer | +[os, queue, socket, struct, tensorboard, threading, time] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\summary\writer] | +2024-01-15 04:51:47 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / summary / _tf | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\summary\_tf] | +2024-01-15 04:51:47 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / uploader | +[abc, absl, argparse, base64, collections, contextlib, datetime, errno, functools, google, google_auth_oauthlib, grpc, json, numpy, os, requests, string, sys, tensorboard, textwrap, time, webbrowser] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\uploader] | +2024-01-15 04:50:41 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / uploader / proto | +[google, grpc, tensorboard] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\uploader\proto] | +2024-01-15 04:50:41 | +15 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / util | +[contextlib, enum, functools, grpc, logging, numpy, random, tensorboard, tensorflow, threading, time] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\util] | +2024-01-15 04:50:41 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\_vendor] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor / bleach | +[__future__, collections, datetime, decimal, re, six, tensorboard, types, xml] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\_vendor\bleach] | +2024-01-15 04:51:47 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor / html5lib | +[__future__, _inputstream, _trie, chardet, codecs, collections, constants, filters, html5parser, io, re, serializer, six, string, sys, tensorboard, treebuilders, treewalkers, types, warnings, xml] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\_vendor\html5lib] | +2024-01-15 04:51:47 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard / _vendor / webencodings | +[__future__, codecs, json, labels, urllib, x_user_defined] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard\_vendor\webencodings] | +2024-01-15 04:51:47 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard_data_server | +[os] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard_data_server] | +2024-01-15 04:51:48 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit | +[__future__, argparse, copy, google, grpc, importlib, io, json, logging, math, numpy, os, pkg_resources, six, tensorboard, tensorboard_plugin_wit, tensorflow, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard_plugin_wit] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit / _utils | +[__future__, absl, collections, copy, csv, glob, google, grpc, inspect, json, math, numpy, os, random, six, tensorboard_plugin_wit, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard_plugin_wit\_utils] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit / _vendor | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard_plugin_wit\_vendor] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorboard_plugin_wit / _vendor / tensorflow_serving | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorboard_plugin_wit\_vendor\tensorflow_serving] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow | +[_api, distutils, inspect, keras, logging, os, site, sys, tensorboard, tensorflow, tensorflow_estimator, tensorflow_io_gcs_filesystem, typing] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow] | +2024-01-15 04:52:06 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\compiler] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / jit | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\compiler\jit] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / mlir | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\compiler\mlir] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / tf2tensorrt | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\compiler\tf2tensorrt] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / tf2xla | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\compiler\tf2xla] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / compiler / xla | +[google] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\compiler\xla] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / config | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\config] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / debug | +[google, grpc, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\debug] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / distributed_runtime | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\distributed_runtime] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / example | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\example] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / framework | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\framework] | +2024-01-15 04:50:41 | +30 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / function | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\function] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / grappler | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\grappler] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / lib | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\lib] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / profiler | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\profiler] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / protobuf | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\protobuf] | +2024-01-15 04:50:41 | +32 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / core / util | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\core\util] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / distribute | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\distribute] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / distribute / experimental | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\distribute\experimental] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / dtensor | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\dtensor] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / dtensor / proto | +[google] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\dtensor\proto] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / dtensor / python | +[absl, atexit, collections, contextlib, dataclasses, functools, itertools, logging, numpy, os, tensorflow, threading, time, typing, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\dtensor\python] | +2024-01-15 04:51:48 | +15 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\lite] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / experimental | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\lite\experimental] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / python | +[absl, argparse, collections, copy, ctypes, datetime, distutils, enum, flatbuffers, functools, google, hashlib, jax, json, numpy, os, platform, pprint, shutil, subprocess, sys, tempfile, tensorflow, tflite_runtime, time, typing, uuid, warnings] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\lite\python] | +2024-01-15 04:50:41 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / toco | +[google, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\lite\toco] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / lite / tools | +[copy, flatbuffers, json, numpy, os, random, re, struct, sys, tensorflow, tflite_runtime] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\lite\tools] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python | +[ctypes, importlib, sys, tensorflow, traceback] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / autograph | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\autograph] | +2024-01-15 04:51:59 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / checkpoint | +[abc, absl, atexit, collections, copy, functools, glob, google, os, re, tensorflow, threading, time, typing, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\checkpoint] | +2024-01-15 04:50:41 | +15 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / client | +[collections, copy, functools, json, numpy, re, tensorflow, threading, warnings, wrapt] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\client] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / compat | +[datetime, os, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\compat] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / compiler | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\compiler] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / data | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\data] | +2024-01-15 04:52:00 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / debug | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\debug] | +2024-01-15 04:52:00 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / distribute | +[__future__, absl, atexit, collections, contextlib, copy, dataclasses, dill, enum, faulthandler, functools, io, itertools, json, math, multiprocessing, numpy, objgraph, os, platform, re, signal, six, subprocess, sys, tblib, tempfile, tensorflow, threading, time, types, typing, unittest, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\distribute] | +2024-01-15 04:50:41 | +47 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / dlpack | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\dlpack] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / eager | +[absl, collections, contextlib, copy, datetime, functools, gc, google, numpy, operator, os, random, tensorflow, threading, time, uuid, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\eager] | +2024-01-15 04:50:41 | +23 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / estimator | +[tensorflow_estimator] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\estimator] | +2024-01-15 04:50:41 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / feature_column | +[abc, collections, math, numpy, re, six, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\feature_column] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / framework | +[abc, absl, builtins, collections, contextlib, copy, enum, errno, functools, gc, google, hashlib, importlib, inspect, itertools, math, numpy, operator, os, packaging, platform, portpicker, random, re, site, sys, tempfile, tensorflow, threading, time, traceback, types, typing, typing_extensions, unittest, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\framework] | +2024-01-15 04:50:41 | +60 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / grappler | +[contextlib, tensorflow, threading] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\grappler] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / keras | +[abc, absl, collections, contextlib, copy, csv, functools, google, h5py, itertools, json, math, numpy, os, re, requests, sys, tensorboard, tensorflow, threading, time, types, unittest, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\keras] | +2024-01-15 04:52:01 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / kernel_tests | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\kernel_tests] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / layers | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\layers] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / lib | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\lib] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / module | +[re, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\module] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / ops | +[abc, absl, builtins, collections, contextlib, copy, enum, functools, hashlib, itertools, math, numbers, numpy, operator, opt_einsum, os, platform, pprint, random, re, string, sys, tensorflow, threading, traceback, typing, uuid, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\ops] | +2024-01-15 04:50:41 | +169 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / platform | +[_thread, absl, atexit, collections, ctypes, functools, logging, math, mock, numbers, os, platform, re, rules_python, sys, tempfile, tensorflow, threading, time, traceback, types, unittest] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\platform] | +2024-01-15 04:50:41 | +17 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / profiler | +[collections, copy, functools, google, os, sys, tensorflow, threading] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\profiler] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / saved_model | +[absl, collections, contextlib, enum, functools, google, keras, os, pprint, re, sys, tensorflow, threading, traceback, warnings] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\saved_model] | +2024-01-15 04:50:41 | +31 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / summary | +[abc, contextlib, google, tensorboard, tensorflow, warnings] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\summary] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / tools | +[absl, argparse, ast, collections, copy, google, importlib, json, math, numpy, os, re, shlex, sys, tensorflow, typing] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\tools] | +2024-01-15 04:50:41 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / tpu | +[abc, absl, collections, contextlib, copy, enum, functools, gc, google, hashlib, itertools, logging, math, numpy, operator, os, re, sys, tensorflow, tensorflow_estimator, threading, time, typing] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\tpu] | +2024-01-15 04:52:02 | +40 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / trackable | +[__future__, abc, absl, collections, contextlib, copy, enum, functools, operator, os, sys, tensorflow, third_party, typing, warnings, weakref, wrapt] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\trackable] | +2024-01-15 04:50:41 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / training | +[abc, collections, contextlib, glob, google, math, numpy, os, sys, tensorflow, threading, time, weakref] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\training] | +2024-01-15 04:50:41 | +45 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / types | +[abc, numpy, sys, tensorflow, textwrap, typing, typing_extensions] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\types] | +2024-01-15 04:52:03 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / user_ops | +[tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\user_ops] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / python / util | +[codecs, collections, contextlib, copy, functools, importlib, inspect, itertools, numbers, numpy, os, re, six, sys, tensorflow, textwrap, threading, traceback, types, typing, weakref, wrapt] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\python\util] | +2024-01-15 04:50:41 | +31 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tools] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / common | +[enum, re, sys, tensorflow] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tools\common] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / compatibility | +[argparse, ast, collections, copy, functools, json, os, pasta, re, shutil, sys, tempfile, tensorflow, traceback] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tools\compatibility] | +2024-01-15 04:50:41 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / docs | +[doctest, numpy, re, textwrap, typing] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tools\docs] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tools / pip_package | +[code, fnmatch, os, platform, re, setuptools, sys] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tools\pip_package] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tsl | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tsl] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tsl / profiler | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tsl\profiler] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / tsl / protobuf | +[google] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\tsl\protobuf] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / _api | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\_api] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow / _api / v2 | +[distutils, inspect, keras, logging, os, site, sys, tensorboard, tensorflow, tensorflow_estimator, tensorflow_io_gcs_filesystem, typing] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow\_api\v2] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator | +[sys, tensorflow, tensorflow_estimator] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_estimator] | +2024-01-15 04:52:07 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / python | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_estimator\python] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / python / estimator | +[__future__, abc, absl, collections, copy, google, heapq, json, math, numpy, operator, os, re, six, tempfile, tensorflow, tensorflow_estimator, time] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_estimator\python\estimator] | +2024-01-15 04:50:41 | +14 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / _api | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_estimator\_api] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / _api / v1 | +[sys, tensorflow, tensorflow_estimator] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_estimator\_api\v1] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_estimator / _api / v2 | +[sys, tensorflow_estimator] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_estimator\_api\v2] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_io_gcs_filesystem | +[tensorflow_io_gcs_filesystem] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_io_gcs_filesystem] | +2024-01-15 04:52:07 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_io_gcs_filesystem / core | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_io_gcs_filesystem\core] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / tensorflow_io_gcs_filesystem / core / python | +[] | +[deep_real_time1\venvs\Lib\site-packages\tensorflow_io_gcs_filesystem\core\python] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / termcolor | +[__future__, os, sys, termcolor, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\termcolor] | +2024-01-15 04:52:07 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / tinycss2 | +[ast, bytes, collections, colorsys, parser, re, serializer, sys, tokenizer, webencodings] | +[deep_real_time1\venvs\Lib\site-packages\tinycss2] | +2024-01-15 04:52:07 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / tornado | +[Cookie, __builtin__, __future__, _thread, array, atexit, backports, backports_abc, base64, binascii, builtins, cStringIO, calendar, certifi, codecs, collections, colorama, concurrent, copy, csv, curses, datetime, doctest, email, errno, functools, gettext, gzip, hashlib, heapq, hmac, html, htmlentitydefs, http, httplib, inspect, io, itertools, json, linecache, logging, math, mimetypes, multiprocessing, numbers, os, pkgutil, platform, posixpath, pycurl, random, re, runpy, select, signal, singledispatch, socket, ssl, stat, struct, subprocess, sys, textwrap, thread, threading, time, tornado, traceback, types, typing, unittest, unittest2, urllib, urlparse, uuid, weakref, zlib] | +[deep_real_time1\venvs\Lib\site-packages\tornado] | +2024-01-15 04:52:07 | +32 | +
deep_real_time1 / venvs / Lib / site-packages / tornado / platform | +[__future__, asyncio, auto, ctypes, datetime, errno, fcntl, functools, monotime, monotonic, numbers, os, pycares, select, socket, sys, time, tornado, trollius, twisted, zope] | +[deep_real_time1\venvs\Lib\site-packages\tornado\platform] | +2024-01-15 04:50:41 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / tornado / test | +[__future__, _thread, base64, binascii, cStringIO, collections, concurrent, contextlib, copy, datetime, email, errno, fcntl, functools, gc, glob, gzip, hashlib, io, itertools, locale, logging, mock, operator, os, pickle, platform, pycares, pycurl, random, re, shutil, signal, socket, ssl, subprocess, sys, tempfile, textwrap, thread, threading, time, tornado, traceback, twisted, types, unittest, unittest2, urllib, warnings, weakref, wsgiref, zope] | +[deep_real_time1\venvs\Lib\site-packages\tornado\test] | +2024-01-15 04:50:41 | +38 | +
deep_real_time1 / venvs / Lib / site-packages / traitlets | +[_version, ast, config, contextlib, enum, inspect, logging, os, re, sys, traitlets, types, typing, utils, warnings] | +[deep_real_time1\venvs\Lib\site-packages\traitlets] | +2024-01-15 04:52:07 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / traitlets / config | +[application, argcomplete, argparse, collections, configurable, contextlib, copy, difflib, errno, functools, json, loader, logging, os, pprint, re, sys, textwrap, traitlets, typing, utils, warnings] | +[deep_real_time1\venvs\Lib\site-packages\traitlets\config] | +2024-01-15 04:52:07 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / traitlets / config / tests | +[contextlib, copy, io, itertools, json, logging, os, pickle, pytest, sys, tempfile, tests, traitlets, typing, unittest] | +[deep_real_time1\venvs\Lib\site-packages\traitlets\config\tests] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / traitlets / tests | +[_warnings, contextlib, copy, enum, inspect, os, pickle, pytest, re, subprocess, sys, traitlets, typing, unittest, warnings] | +[deep_real_time1\venvs\Lib\site-packages\traitlets\tests] | +2024-01-15 04:50:41 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / traitlets / utils | +[copy, functools, inspect, os, pathlib, re, textwrap, traitlets, types, typing] | +[deep_real_time1\venvs\Lib\site-packages\traitlets\utils] | +2024-01-15 04:52:07 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / traitlets / utils / tests | +[bunch, decorators, importstring, inspect, os, traitlets, unittest] | +[deep_real_time1\venvs\Lib\site-packages\traitlets\utils\tests] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 | +[__future__, _collections, binascii, codecs, collections, connection, connectionpool, contextlib, datetime, email, errno, exceptions, fields, filepost, functools, io, logging, mimetypes, os, packages, poolmanager, request, response, socket, ssl, sys, threading, util, warnings, zlib] | +[deep_real_time1\venvs\Lib\site-packages\urllib3] | +2024-01-15 04:52:07 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 / contrib | +[OpenSSL, __future__, _securetransport, connection, connectionpool, contextlib, cryptography, ctypes, errno, exceptions, google, idna, io, logging, ntlm, os, packages, poolmanager, request, response, shutil, socket, socks, ssl, sys, threading, util, warnings, weakref] | +[deep_real_time1\venvs\Lib\site-packages\urllib3\contrib] | +2024-01-15 04:50:41 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 / contrib / _securetransport | +[__future__, base64, bindings, ctypes, itertools, os, platform, re, ssl, tempfile] | +[deep_real_time1\venvs\Lib\site-packages\urllib3\contrib\_securetransport] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 / packages | +[StringIO, __future__, functools, io, itertools, operator, struct, sys, types] | +[deep_real_time1\venvs\Lib\site-packages\urllib3\packages] | +2024-01-15 04:52:07 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 / packages / backports | +[io, socket] | +[deep_real_time1\venvs\Lib\site-packages\urllib3\packages\backports] | +2024-01-15 04:50:41 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 / packages / ssl_match_hostname | +[_implementation, backports, ipaddress, re, ssl, sys] | +[deep_real_time1\venvs\Lib\site-packages\urllib3\packages\ssl_match_hostname] | +2024-01-15 04:52:07 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / urllib3 / util | +[Queue, __future__, base64, binascii, collections, connection, contrib, email, errno, exceptions, functools, hashlib, hmac, ipaddress, itertools, logging, packages, re, request, response, retry, select, socket, ssl, ssl_, sys, time, timeout, url, wait, warnings] | +[deep_real_time1\venvs\Lib\site-packages\urllib3\util] | +2024-01-15 04:52:07 | +10 | +
deep_real_time1 / venvs / Lib / site-packages / wcwidth | +[__future__, backports, functools, os, sys, table_wide, table_zero, unicode_versions, warnings, wcwidth] | +[deep_real_time1\venvs\Lib\site-packages\wcwidth] | +2024-01-15 04:52:08 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / webencodings | +[__future__, codecs, json, labels, urllib, x_user_defined] | +[deep_real_time1\venvs\Lib\site-packages\webencodings] | +2024-01-15 04:52:08 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / werkzeug | +[_internal, _reloader, _typeshed, atexit, base64, codecs, collections, colorama, contextvars, copy, cryptography, datastructures, datetime, debug, email, enum, errno, exceptions, fnmatch, functools, hashlib, hmac, http, io, itertools, json, logging, markupsafe, math, middleware, mimetypes, ntpath, operator, os, pathlib, pkg_resources, pkgutil, posixpath, random, re, sansio, secrets, security, serving, shutil, signal, socket, socketserver, ssl, string, subprocess, sys, tempfile, termios, test, textwrap, threading, time, typing, typing_extensions, unicodedata, urllib, urls, utils, warnings, watchdog, weakref, wrappers, wsgi, zlib] | +[deep_real_time1\venvs\Lib\site-packages\werkzeug] | +2024-01-15 04:52:08 | +16 | +
deep_real_time1 / venvs / Lib / site-packages / werkzeug / debug | +[_internal, _typeshed, code, codecs, codeop, collections, console, contextlib, contextvars, exceptions, getpass, hashlib, http, io, itertools, json, linecache, markupsafe, os, pkgutil, pydoc, re, repr, security, subprocess, sys, sysconfig, tbtools, time, traceback, types, typing, utils, uuid, winreg, wrappers, zlib] | +[deep_real_time1\venvs\Lib\site-packages\werkzeug\debug] | +2024-01-15 04:52:08 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / werkzeug / middleware | +[_typeshed, cProfile, datastructures, datetime, exceptions, fnmatch, http, io, mimetypes, os, pkgutil, posixpath, profile, pstats, security, sys, time, types, typing, urllib, urls, utils, warnings, wsgi, zlib] | +[deep_real_time1\venvs\Lib\site-packages\werkzeug\middleware] | +2024-01-15 04:52:08 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / werkzeug / routing | +[_internal, _typeshed, ast, converters, dataclasses, datastructures, difflib, exceptions, map, matcher, posixpath, pprint, re, rules, string, threading, types, typing, typing_extensions, urls, utils, uuid, warnings, wrappers, wsgi] | +[deep_real_time1\venvs\Lib\site-packages\werkzeug\routing] | +2024-01-15 04:52:08 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / werkzeug / sansio | +[_internal, dataclasses, datastructures, datetime, enum, exceptions, http, re, typing, urls, user_agent, utils, werkzeug] | +[deep_real_time1\venvs\Lib\site-packages\werkzeug\sansio] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / werkzeug / wrappers | +[_internal, _typeshed, datastructures, exceptions, formparser, functools, http, io, json, request, response, sansio, test, typing, typing_extensions, urls, utils, warnings, werkzeug, wsgi] | +[deep_real_time1\venvs\Lib\site-packages\werkzeug\wrappers] | +2024-01-15 04:52:08 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / wheel | +[__future__, base64, collections, csv, ctypes, email, glob, hashlib, io, logging, macosx_libfile, metadata, os, pkg_resources, re, setuptools, shutil, stat, sys, sysconfig, textwrap, time, typing, util, vendored, warnings, wheel, wheelfile, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\wheel] | +2024-01-15 04:52:08 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / wheel / cli | +[__future__, argparse, bdist_wheel, convert, distutils, glob, os, pack, pathlib, re, setuptools, shutil, sys, tempfile, unpack, wheel, wheelfile, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\wheel\cli] | +2024-01-15 04:52:08 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / wheel / vendored | +[] | +[deep_real_time1\venvs\Lib\site-packages\wheel\vendored] | +2024-01-15 04:50:41 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / wheel / vendored / packaging | +[__future__, _manylinux, collections, contextlib, ctypes, functools, importlib, logging, operator, os, platform, re, struct, subprocess, sys, sysconfig, typing, warnings] | +[deep_real_time1\venvs\Lib\site-packages\wheel\vendored\packaging] | +2024-01-15 04:50:41 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos | +[_thread, array, commctrl, getopt, glob, io, math, mmapfile, msvcrt, ntsecuritycon, optparse, os, pickle, pprint, pythoncom, pywin32_testutil, pywintypes, queue, random, struct, sys, tempfile, threading, time, timer, traceback, win32api, win32clipboard, win32com, win32con, win32console, win32cred, win32event, win32evtlog, win32evtlogutil, win32file, win32gui, win32gui_dialog, win32gui_struct, win32net, win32netcon, win32print, win32process, win32profile, win32ras, win32rcparser, win32security, win32service, win32transaction, win32ts, wincerapi, winerror, winioctlcon, winnt, winxpgui] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos] | +2024-01-15 04:52:08 | +38 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / c_extension | +[distutils, os, sysconfig] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos\c_extension] | +2024-01-15 04:52:08 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / dde | +[dde, pywin, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos\dde] | +2024-01-15 04:52:08 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / pipes | +[msvcrt, os, sys, win32api, win32con, win32file, win32pipe, win32process, win32security] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos\pipes] | +2024-01-15 04:52:08 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / security | +[ntsecuritycon, os, pywintypes, security_enums, sys, win32api, win32con, win32event, win32file, win32net, win32process, win32security, winerror, winnt] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos\security] | +2024-01-15 04:52:08 | +20 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / service | +[_thread, getopt, ntsecuritycon, os, pipeTestService, pywintypes, servicemanager, sys, traceback, win32api, win32con, win32event, win32file, win32gui, win32gui_struct, win32pipe, win32service, win32serviceutil, win32traceutil, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos\service] | +2024-01-15 04:52:09 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / Demos / win32wnet | +[os, win32api, win32wnet, winnetwk] | +[deep_real_time1\venvs\Lib\site-packages\win32\Demos\win32wnet] | +2024-01-15 04:52:09 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / lib | +[_thread, _win32sysloader, _winxptheme, array, collections, commctrl, copy, datetime, gc, getopt, glob, importlib, itertools, logging, ntsecuritycon, odbc, operator, optparse, os, perfmon, pickle, pprint, pythoncom, pywin32_system32, pywintypes, re, regutil, servicemanager, shlex, site, sspicon, stat, struct, sys, time, unittest, warnings, win32api, win32com, win32con, win32evtlog, win32evtlogutil, win32gui, win32pdh, win32ras, win32security, win32service, win32trace, win32wnet, winerror, winreg] | +[deep_real_time1\venvs\Lib\site-packages\win32\lib] | +2024-01-15 04:52:09 | +33 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / scripts | +[getopt, importlib, os, pythoncom, pywin, pywintypes, regcheck, regutil, shutil, sys, time, win32api, win32con, win32evtlog, win32pdhutil, win32ras, win32service, win32ui, winreg] | +[deep_real_time1\venvs\Lib\site-packages\win32\scripts] | +2024-01-15 04:52:09 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / scripts / ce | +[fnmatch, getopt, os, pywin, string, sys, win32api, win32con, win32file, win32ui, wincerapi] | +[deep_real_time1\venvs\Lib\site-packages\win32\scripts\ce] | +2024-01-15 04:52:09 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / scripts / VersionStamp | +[bulkstamp, fnmatch, getopt, os, pythoncom, pywin, string, sys, time, traceback, verstamp, vssutil, win32api, win32com, win32con, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\win32\scripts\VersionStamp] | +2024-01-15 04:52:09 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / win32 / test | +[argparse, array, binascii, contextlib, datetime, doctest, gc, netbios, ntsecuritycon, odbc, operator, os, pythoncom, pywin32_testutil, pywintypes, random, re, sets, shutil, socket, sspi, sspicon, subprocess, sys, tempfile, threading, time, traceback, typing, unittest, win32api, win32clipboard, win32com, win32con, win32crypt, win32cryptcon, win32event, win32file, win32gui, win32gui_struct, win32inet, win32inetcon, win32net, win32netcon, win32pipe, win32print, win32process, win32profile, win32rcparser, win32security, win32timezone, win32trace, win32ui, win32wnet, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32\test] | +2024-01-15 04:52:09 | +23 | +
deep_real_time1 / venvs / Lib / site-packages / win32com | +[os, pythoncom, sys, types, win32api, win32com, win32con, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32com] | +2024-01-15 04:52:09 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / win32com / client | +[codecs, commctrl, datetime, getopt, glob, importlib, io, keyword, os, pickle, pythoncom, pywin, pywintypes, shutil, string, sys, time, traceback, types, win32api, win32com, win32con, win32ui, winerror, zipfile] | +[deep_real_time1\venvs\Lib\site-packages\win32com\client] | +2024-01-15 04:52:09 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / win32com / demos | +[datetime, pythoncom, pywin32_testutil, sys, threading, time, win32api, win32com, win32con, win32event, win32ui, winreg] | +[deep_real_time1\venvs\Lib\site-packages\win32com\demos] | +2024-01-15 04:50:41 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / win32com / makegw | +[re, string, traceback, win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32com\makegw] | +2024-01-15 04:52:09 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / win32com / server | +[dispatcher, exception, os, pythoncom, pywintypes, sys, tempfile, traceback, types, win32api, win32com, win32con, win32event, win32process, win32trace, win32traceutil, winerror, winxpgui] | +[deep_real_time1\venvs\Lib\site-packages\win32com\server] | +2024-01-15 04:52:09 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / win32com / servers | +[importlib, pythoncom, pywintypes, sys, time, win32com, win32pdhutil, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32com\servers] | +2024-01-15 04:50:41 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / win32com / test | +[_thread, copy, datetime, decimal, distutils, gc, getopt, logging, msvcrt, netscape, numpy, os, pythoncom, pywin32_testutil, pywintypes, random, re, shutil, string, struct, sys, tempfile, testServers, threading, time, traceback, types, unittest, util, win32api, win32clipboard, win32com, win32con, win32event, win32gui, win32timezone, win32ui, winerror, winreg, xl5en32] | +[deep_real_time1\venvs\Lib\site-packages\win32com\test] | +2024-01-15 04:52:09 | +41 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / adsi | +[adsi, pythoncom, sys, win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\adsi] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / adsi / demos | +[getopt, logging, ntsecuritycon, optparse, os, pythoncom, pywintypes, string, sys, textwrap, traceback, win32api, win32clipboard, win32com, win32con, win32security, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\adsi\demos] | +2024-01-15 04:52:10 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / authorization | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\authorization] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / authorization / demos | +[ntsecuritycon, os, pythoncom, win32api, win32com, win32con, win32security, win32service] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\authorization\demos] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / axcontrol | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\axcontrol] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / axdebug | +[_thread, bdb, io, linecache, os, pprint, pythoncom, string, sys, tokenize, traceback, ttest, util, win32api, win32com, win32traceutil, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\axdebug] | +2024-01-15 04:52:10 | +11 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\axscript] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript / client | +[framework, imp, linecache, os, profile, pstats, pyscript, pythoncom, re, signal, sys, traceback, types, win32api, win32com, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\axscript\client] | +2024-01-15 04:52:10 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript / server | +[pythoncom, win32com, winerror] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\axscript\server] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / axscript / test | +[os, pythoncom, sys, traceback, unittest, win32com, win32ui] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\axscript\test] | +2024-01-15 04:52:10 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / bits | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\bits] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / bits / test | +[os, pythoncom, tempfile, win32api, win32com, win32event] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\bits\test] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / directsound | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\directsound] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / directsound / test | +[os, pythoncom, pywin32_testutil, pywintypes, struct, sys, unittest, win32api, win32com, win32event] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\directsound\test] | +2024-01-15 04:52:10 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / ifilter | +[pywintypes] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\ifilter] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / ifilter / demo | +[operator, os, pythoncom, pywintypes, sys, win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\ifilter\demo] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / internet | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\internet] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / mapi | +[exchange, exchdapi, mapi, mapitags, pythoncom, pywintypes, sys, win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\mapi] | +2024-01-15 04:52:10 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / mapi / demos | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\mapi\demos] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / propsys | +[pywintypes] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\propsys] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / propsys / test | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\propsys\test] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / shell | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\shell] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / shell / demos | +[glob, os, pythoncom, sys, time, win32api, win32com, win32con, win32gui] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\shell\demos] | +2024-01-15 04:52:10 | +12 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / shell / test | +[os, unittest, win32api, win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\shell\test] | +2024-01-15 04:52:10 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / taskscheduler | +[win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\taskscheduler] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / win32comext / taskscheduler / test | +[os, pythoncom, sys, time, win32api, win32com] | +[deep_real_time1\venvs\Lib\site-packages\win32comext\taskscheduler\test] | +2024-01-15 04:52:10 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / wrapt | +[_wrappers, arguments, builtins, decorators, functools, importer, importlib, inspect, operator, os, pkg_resources, sys, threading, weakref, wrappers] | +[deep_real_time1\venvs\Lib\site-packages\wrapt] | +2024-01-15 04:52:10 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / yaml | +[base64, binascii, codecs, collections, composer, constructor, copyreg, cyaml, datetime, dumper, emitter, error, events, io, loader, nodes, parser, re, reader, representer, resolver, scanner, serializer, sys, tokens, types, yaml] | +[deep_real_time1\venvs\Lib\site-packages\yaml] | +2024-01-15 04:52:10 | +17 | +
deep_real_time1 / venvs / Lib / site-packages / zmq | +[asyncio, collections, constants, contextlib, ctypes, enum, errno, functools, importlib, itertools, os, platform, selectors, sys, tornado, typing, typing_extensions, warnings, weakref, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq] | +2024-01-15 04:52:10 | +7 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / auth | +[asyncio, base, certs, datetime, glob, logging, os, threading, typing, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\auth] | +2024-01-15 04:52:10 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / backend | +[importlib, os, platform, select, typing] | +[deep_real_time1\venvs\Lib\site-packages\zmq\backend] | +2024-01-15 04:52:10 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / backend / cffi | +[__pypy__, _cffi, _poll, context, devices, errno, error, message, socket, threading, time, utils, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\backend\cffi] | +2024-01-15 04:52:10 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / backend / cython | +[_device, _poll, _proxy_steerable, _version, context, error, message, socket, utils] | +[deep_real_time1\venvs\Lib\site-packages\zmq\backend\cython] | +2024-01-15 04:52:10 | +1 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / devices | +[multiprocessing, threading, time, typing, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\devices] | +2024-01-15 04:52:10 | +6 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / eventloop | +[asyncio, minitornado, pickle, queue, time, tornado, typing, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\eventloop] | +2024-01-15 04:52:10 | +5 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / green | +[gevent, poll, sys, time, typing, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\green] | +2024-01-15 04:52:10 | +4 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / green / eventloop | +[zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\green\eventloop] | +2024-01-15 04:52:10 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / log | +[argparse, colorama, copy, datetime, logging, typing, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\log] | +2024-01-15 04:50:41 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / ssh | +[atexit, forward, getpass, logging, multiprocessing, os, paramiko, pexpect, re, select, signal, socket, socketserver, sys, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\ssh] | +2024-01-15 04:52:10 | +3 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / sugar | +[atexit, attrsettr, constants, errno, os, pickle, poll, pyczmq, random, re, socket, sys, threading, time, typing, warnings, weakref, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\sugar] | +2024-01-15 04:52:10 | +9 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / tests | +[asyncio, concurrent, contextlib, copy, ctypes, datetime, errno, functools, gc, gevent, inspect, json, logging, multiprocessing, numpy, os, platform, pyczmq, pytest, pyximport, queue, shutil, signal, socket, struct, subprocess, sys, threading, time, tornado, typing, unittest, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\tests] | +2024-01-15 04:52:10 | +37 | +
deep_real_time1 / venvs / Lib / site-packages / zmq / utils | +[atexit, cffi, collections, ctypes, json, os, struct, threading, typing, warnings, zmq] | +[deep_real_time1\venvs\Lib\site-packages\zmq\utils] | +2024-01-15 04:50:41 | +8 | +
deep_real_time1 / venvs / Lib / site-packages / _distutils_hack | +[importlib, os, sys, traceback, warnings] | +[deep_real_time1\venvs\Lib\site-packages\_distutils_hack] | +2024-01-15 04:52:11 | +2 | +
deep_real_time1 / venvs / Lib / site-packages / _yaml | +[sys, warnings, yaml] | +[deep_real_time1\venvs\Lib\site-packages\_yaml] | +2024-01-15 04:52:11 | +1 | +
deep_real_time1 / venvs / Scripts | +[argparse, asyncio, collections, glob, importlib, logging, os, pythoncom, shutil, signal, site, socket, subprocess, sys, sysconfig, tempfile, traceback, webbrowser, win32api, win32com, win32con, win32process, winreg] | +[deep_real_time1\venvs\Scripts] | +2024-01-15 04:52:11 | +4 | +
foto_generator_to_tg_channel | +[aiogram, apscheduler, data, handlers, loader, models, states] | +[foto_generator_to_tg_channel] | +2024-01-15 04:52:11 | +3 | +
foto_generator_to_tg_channel / data | +[] | +[foto_generator_to_tg_channel\data] | +2024-01-15 04:52:11 | +1 | +
foto_generator_to_tg_channel / handlers | +[] | +[foto_generator_to_tg_channel\handlers] | +2024-01-15 04:52:11 | +1 | +
foto_generator_to_tg_channel / handlers / admin | +[] | +[foto_generator_to_tg_channel\handlers\admin] | +2024-01-15 04:52:11 | +1 | +
foto_generator_to_tg_channel / handlers / admin / callback | +[aiogram, asyncio, datetime, json, loader, models, sqlite3, sys] | +[foto_generator_to_tg_channel\handlers\admin\callback] | +2024-01-15 04:52:11 | +2 | +
foto_generator_to_tg_channel / handlers / admin / message | +[aiogram, asyncio, data, datetime, keyboards, loader, re] | +[foto_generator_to_tg_channel\handlers\admin\message] | +2024-01-15 04:52:11 | +4 | +
foto_generator_to_tg_channel / keyboards | +[] | +[foto_generator_to_tg_channel\keyboards] | +2024-01-15 04:50:41 | +1 | +
foto_generator_to_tg_channel / keyboards / inline | +[aiogram] | +[foto_generator_to_tg_channel\keyboards\inline] | +2024-01-15 04:52:11 | +1 | +
foto_generator_to_tg_channel / keyboards / reply | +[aiogram] | +[foto_generator_to_tg_channel\keyboards\reply] | +2024-01-15 04:52:11 | +1 | +
foto_generator_to_tg_channel / models | +[sqlite3] | +[foto_generator_to_tg_channel\models] | +2024-01-15 04:52:11 | +2 | +
foto_generator_to_tg_channel / module | +[] | +[foto_generator_to_tg_channel\module] | +2024-01-15 04:52:12 | +1 | +
foto_generator_to_tg_channel / module / generator | +[asyncio, bs4, datetime, os, pyppeteer, random, string] | +[foto_generator_to_tg_channel\module\generator] | +2024-01-15 04:52:12 | +3 | +
foto_generator_to_tg_channel / states | +[] | +[foto_generator_to_tg_channel\states] | +2024-01-15 04:52:12 | +1 | +
foto_generator_to_tg_channel / states / admin | +[aiogram, asyncio, datetime, keyboards, loader, logging, module, os, random, re, string] | +[foto_generator_to_tg_channel\states\admin] | +2024-01-15 04:52:12 | +4 | +
foto_generator_to_tg_channel / utils | +[] | +[foto_generator_to_tg_channel\utils] | +2024-01-15 04:50:41 | +1 | +
foto_generator_to_tg_channel / utils / db_api | +[peewee, sqlite] | +[foto_generator_to_tg_channel\utils\db_api] | +2024-01-15 04:52:12 | +2 | +
foto_generator_to_tg_channel / utils / misc | +[logging] | +[foto_generator_to_tg_channel\utils\misc] | +2024-01-15 04:52:12 | +2 | +
GIThub-Search-Dork-Parser | +[os, pickle, selenium, time] | +[GIThub-Search-Dork-Parser] | +2025-05-22 02:15:28 | +2 | +
LanguageInFileSearcher | +[googletrans, os, tkinter] | +[LanguageInFileSearcher] | +2024-04-27 01:34:37 | +1 | +
OTHER | +[os, subprocess, tkinter] | +[OTHER] | +2025-06-15 05:32:41 | +1 | +
Python Scrypt | +[aiogram, arrow, asyncio, bs4, csv, datetime, db, email, io, json, keyboards, numpy, opentele, os, pip, platform, pydantic, pyrogram, re, requests, selenium, sklearn, smtplib, ssl, subprocess, sys, threading, tiktok_dl, time, tkinter, typing, unicodedata, urllib3, utils, uuid, win32api, win32con, win32file, winreg, winsound] | +[Python Scrypt] | +2024-01-15 04:52:20 | +19 | +
Python Scrypt / Первонах_pyrogram | +[] | +[Python Scrypt\Первонах_pyrogram] | +2024-01-15 04:52:20 | +2 | +
py_import_parser | +[ast, collections, colorama, concurrent, datetime, matplotlib, os, pandas, pyperclip, queue, re, stats_window, threading, tkinter, utils] | +[py_import_parser] | +2025-04-27 23:03:09 | +3 | +
roop-main(virtual_camera_deep) / roop-main | +[PIL, argparse, collections, core, ctypes, cv2, glob, multiprocessing, opennsfw2, os, pathlib, platform, psutil, resource, shutil, signal, sys, threading, tkinter, torch, webbrowser] | +[roop-main(virtual_camera_deep)\roop-main] | +2024-01-15 04:52:22 | +2 | +
roop-main(virtual_camera_deep) / roop-main / core | +[core, cv2, insightface, onnxruntime, os, shutil, tqdm] | +[roop-main(virtual_camera_deep)\roop-main\core] | +2024-01-15 04:52:20 | +7 | +
roop-main(virtual_camera_deep) / roop-main1.0 | +[PIL, argparse, core, cv2, glob, multiprocessing, os, pathlib, psutil, shutil, sys, threading, time, tkinter, torch, webbrowser] | +[roop-main(virtual_camera_deep)\roop-main1.0] | +2024-01-15 04:53:46 | +2 | +
roop-main(virtual_camera_deep) / roop-main1.0 / core | +[core, cv2, insightface, onnxruntime, os, shutil] | +[roop-main(virtual_camera_deep)\roop-main1.0\core] | +2024-01-15 04:53:46 | +5 | +
roop-main(virtual_camera_deep) / roop-main3.0 | +[PIL, argparse, core, ctypes, cv2, glob, multiprocessing, opennsfw2, os, pathlib, platform, psutil, resource, shutil, signal, sys, threading, tkinter, torch, webbrowser] | +[roop-main(virtual_camera_deep)\roop-main3.0] | +2024-01-15 04:54:05 | +1 | +
roop-main(virtual_camera_deep) / roop-main3.0 / core | +[core, cv2, insightface, onnxruntime, os, shutil, tqdm] | +[roop-main(virtual_camera_deep)\roop-main3.0\core] | +2024-01-15 04:54:05 | +5 | +
roop-main(virtual_camera_deep) / roop-main4.0 | +[PIL, cv2, os, pyvirtualcam, roop, threading, tkinter] | +[roop-main(virtual_camera_deep)\roop-main4.0] | +2024-01-15 04:54:06 | +3 | +
roop-main(virtual_camera_deep) / roop-main4.0 / roop | +[PIL, argparse, ctypes, cv2, glob, insightface, multiprocessing, onnxruntime, opennsfw2, os, pathlib, platform, psutil, resource, roop, shutil, signal, sys, tensorflow, threading, tkinter, torch, tqdm, typing, webbrowser] | +[roop-main(virtual_camera_deep)\roop-main4.0\roop] | +2024-01-15 04:54:06 | +7 | +
roop-main(virtual_camera_deep) / roop-main5.0 | +[roop] | +[roop-main(virtual_camera_deep)\roop-main5.0] | +2024-01-15 04:55:31 | +1 | +
roop-main(virtual_camera_deep) / roop-main5.0 / roop | +[PIL, argparse, ctypes, cv2, glob, insightface, multiprocessing, onnxruntime, opennsfw2, os, pathlib, platform, psutil, resource, roop, shutil, signal, sys, tensorflow, threading, tkinter, torch, tqdm, typing, webbrowser] | +[roop-main(virtual_camera_deep)\roop-main5.0\roop] | +2024-01-15 04:55:31 | +7 | +
SteamTraderBot | +[parsers, sys] | +[SteamTraderBot] | +2024-01-15 04:51:24 | +1 | +
SteamTraderBot / data | +[] | +[SteamTraderBot\data] | +2025-05-30 01:08:44 | +1 | +
SteamTraderBot / parsers / buff163 | +[bs4, datetime, fake_useragent, logging, os, pickle, proxy, random, re, requests, selenium, seleniumwire, sqlite3, sys, telebot, time, unittest] | +[SteamTraderBot\parsers\buff163] | +2024-01-15 04:51:24 | +3 | +
SteamTraderBot / parsers / steam | +[bs4, colorama, currency, data, datetime, get_data, json, os, pandas, parsers, random, requests, sqlite3, sys, time, typing, urllib] | +[SteamTraderBot\parsers\steam] | +2024-10-23 10:47:58 | +8 | +
SteamTraderBot / utils | +[] | +[SteamTraderBot\utils] | +2025-05-21 21:57:11 | +1 | +
SteamTraderBot / utils / db_api | +[peewee, sqlite] | +[SteamTraderBot\utils\db_api] | +2025-05-21 21:57:11 | +2 | +
SteamTraderBot / utils / misc | +[logging] | +[SteamTraderBot\utils\misc] | +2025-05-21 21:57:11 | +2 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram | +[aiogram, apscheduler, asyncio, config, data, datetime, httpcore, json, keyboards, logging, opentele, os, pickle, re, requests, sqlite3, yt_dlp] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram] | +2024-01-15 04:50:42 | +7 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / data | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\data] | +2024-01-15 04:50:42 | +2 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / filters | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\filters] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\handlers] | +2024-01-15 04:55:39 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / errors | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\handlers\errors] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / groups | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\handlers\groups] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / supergroups | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\handlers\supergroups] | +2024-01-15 04:55:39 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / users | +[aiogram, asyncio, data, loader, models, utils] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\handlers\users] | +2024-01-15 04:55:39 | +7 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / handlers / users / chat_join_request_handler | +[aiogram, apscheduler, asyncio, config, datetime, json, keyboards, logging, os, re, requests, sqlite3] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\handlers\users\chat_join_request_handler] | +2024-01-15 04:55:39 | +2 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / keyboards | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\keyboards] | +2024-01-15 04:55:39 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / keyboards / inline | +[aiogram, main] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\keyboards\inline] | +2024-01-15 04:55:39 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / keyboards / reply | +[aiogram] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\keyboards\reply] | +2024-01-15 04:55:39 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / models | +[datetime, peewee, utils] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\models] | +2024-01-15 04:55:39 | +4 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / utils | +[] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\utils] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / utils / db_api | +[peewee, sqlite] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\utils\db_api] | +2024-01-15 04:55:39 | +2 | +
TELEGRAM / AIOGRAM / Admin_E_commerce_Bot_Aiogram / utils / misc | +[logging] | +[TELEGRAM\AIOGRAM\Admin_E_commerce_Bot_Aiogram\utils\misc] | +2024-01-15 04:55:39 | +2 | +
TELEGRAM / AIOGRAM / aiogram_chat_state_poster | +[aiogram, apscheduler, asyncio, config, datetime, json, keyboards, logging, re, requests, sqlite3] | +[TELEGRAM\AIOGRAM\aiogram_chat_state_poster] | +2024-01-15 04:55:31 | +4 | +
TELEGRAM / AIOGRAM / Aiogram_Chat_Translator | +[aiogram, arq, asyncio, config, datetime, googletrans, logging, os, random, re, sqlite3, sys] | +[TELEGRAM\AIOGRAM\Aiogram_Chat_Translator] | +2024-01-15 04:55:31 | +3 | +
TELEGRAM / AIOGRAM / approve_bot | +[aiogram, apscheduler, asyncio, config, datetime, logging, random, sqlite3, string] | +[TELEGRAM\AIOGRAM\approve_bot] | +2024-01-15 04:55:39 | +2 | +
TELEGRAM / AIOGRAM / ChatAdminBot | +[aiogram, asyncio, config, copy, datetime, keyboards, logging, pymongo, random, re, telebot, threading, time] | +[TELEGRAM\AIOGRAM\ChatAdminBot] | +2024-01-15 04:55:39 | +3 | +
TELEGRAM / AIOGRAM / ItChatsAdmin | +[aiogram, apscheduler, asyncio, data, datetime, filters, handlers, keyboards, loader, models, module, sqlite3, states] | +[TELEGRAM\AIOGRAM\ItChatsAdmin] | +2025-06-28 21:47:28 | +3 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / data | +[aiogram, datetime] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\data] | +2024-01-15 04:57:05 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / data / image | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\data\image] | +2025-06-28 17:18:26 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / filters | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\filters] | +2025-06-27 01:06:12 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers] | +2024-01-15 04:57:05 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / errors | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\errors] | +2024-01-15 04:57:05 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / errors / callback | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\errors\callback] | +2025-06-28 17:18:31 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / errors / message | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\errors\message] | +2025-06-28 17:18:33 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / groups | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\groups] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / groups / callback | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\groups\callback] | +2025-06-28 17:18:37 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / groups / message | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\groups\message] | +2025-06-28 17:18:39 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / supergroups | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\supergroups] | +2024-01-15 04:57:05 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / supergroups / callback | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\supergroups\callback] | +2025-06-28 17:19:18 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / supergroups / message | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\supergroups\message] | +2025-06-28 17:19:20 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / users | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\users] | +2024-01-15 04:57:05 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / users / callback | +[aiogram, asyncio, data, datetime, json, keyboards, loader, models, sqlite3, sys] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\users\callback] | +2024-01-15 04:57:05 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / handlers / users / message | +[aiogram, data, loader] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\handlers\users\message] | +2024-01-15 04:57:05 | +3 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / keyboards | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\keyboards] | +2025-06-27 01:06:12 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / keyboards / inline | +[aiogram] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\keyboards\inline] | +2025-06-27 01:06:12 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / keyboards / reply | +[aiogram] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\keyboards\reply] | +2025-06-27 01:06:12 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / models | +[asyncio, module, sqlite3] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\models] | +2024-01-15 04:57:05 | +3 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module] | +2025-06-29 19:27:06 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module / auth | +[asyncio, json, os, telethon] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module\auth] | +2025-07-01 21:17:43 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module / checker | +[aiohttp, asyncio, module, re, telethon] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module\checker] | +2025-07-01 21:17:43 | +3 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module / commands | +[telethon] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module\commands] | +2025-07-01 21:17:43 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module / db | +[os, sqlite3] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module\db] | +2025-07-01 21:17:30 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module / parser | +[re, telethon] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module\parser] | +2025-07-01 21:17:43 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / module / reporter | +[module] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\module\reporter] | +2025-07-01 21:17:43 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / states | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\states] | +2024-01-15 04:57:05 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / states / admin | +[aiogram, asyncio, data, datetime, loader, logging, models, random, string] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\states\admin] | +2024-01-15 04:57:05 | +3 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / states / user | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\states\user] | +2025-06-28 17:19:30 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / utils | +[] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\utils] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / utils / db_api | +[peewee, sqlite] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\utils\db_api] | +2024-01-15 04:57:05 | +2 | +
TELEGRAM / AIOGRAM / ItChatsAdmin / utils / misc | +[logging] | +[TELEGRAM\AIOGRAM\ItChatsAdmin\utils\misc] | +2024-01-15 04:57:05 | +2 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x | +[aiogram, data] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x] | +2025-07-02 22:26:49 | +2 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / data | +[aiogram, datetime] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\data] | +2025-07-03 01:09:25 | +2 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / data / image | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\data\image] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / filters | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\filters] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / errors | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\errors] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / errors / callback | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\errors\callback] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / errors / message | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\errors\message] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / groups | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\groups] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / groups / callback | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\groups\callback] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / groups / message | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\groups\message] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / supergroups | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\supergroups] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / supergroups / callback | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\supergroups\callback] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / supergroups / message | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\supergroups\message] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / users | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\users] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / users / callback | +[aiogram, asyncio, data, datetime, json, keyboards, loader, models, sqlite3, sys] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\users\callback] | +2025-07-03 01:09:25 | +2 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / handlers / users / message | +[aiogram, data, loader] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\handlers\users\message] | +2025-07-03 01:09:25 | +3 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / keyboards | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\keyboards] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / keyboards / inline | +[aiogram] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\keyboards\inline] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / keyboards / reply | +[aiogram] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\keyboards\reply] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / models | +[sqlite3] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\models] | +2025-07-03 01:09:25 | +2 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / states | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\states] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / states / admin | +[aiogram, asyncio, data, datetime, loader, logging, models, random, string] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\states\admin] | +2025-07-03 01:09:25 | +3 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / states / user | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\states\user] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / utils | +[] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\utils] | +2025-07-03 01:09:25 | +1 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / utils / db_api | +[peewee, sqlite] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\utils\db_api] | +2025-07-03 01:09:25 | +2 | +
TELEGRAM / AIOGRAM / Sample-Template-Aiogram-3.x / utils / misc | +[logging] | +[TELEGRAM\AIOGRAM\Sample-Template-Aiogram-3.x\utils\misc] | +2025-07-03 01:09:25 | +2 | +
TELEGRAM / AIOGRAM / shop | +[aiogram, apscheduler, asyncio, config, cryptography, cx_Freeze, datetime, json, keyboards, logging, os, re, requests, rsa, sqlite3, sys] | +[TELEGRAM\AIOGRAM\shop] | +2024-01-15 04:55:40 | +7 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram | +[aiogram, data, filters, handlers, loader, models] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram] | +2024-01-15 04:50:42 | +3 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / data | +[] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\data] | +2024-01-15 04:50:42 | +2 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / filters | +[] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\filters] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers | +[] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\handlers] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / errors | +[aiogram, logging] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\handlers\errors] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / groups | +[aiogram, loader] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\handlers\groups] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / supergroups | +[aiogram, asyncio, data, json, keyboards, loader, logging, models, peewee, sys, utils] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\handlers\supergroups] | +2024-01-15 04:55:46 | +8 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / handlers / users | +[aiogram, asyncio, data, keyboards, loader, models, utils] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\handlers\users] | +2024-01-15 04:55:46 | +10 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / keyboards | +[] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\keyboards] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / keyboards / inline | +[aiogram] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\keyboards\inline] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / models | +[datetime, peewee, utils] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\models] | +2024-01-15 04:55:46 | +5 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / utils / db_api | +[peewee, sqlite] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\utils\db_api] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / subscribebot_aiogram / utils / misc | +[logging] | +[TELEGRAM\AIOGRAM\subscribebot_aiogram\utils\misc] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / TG_shop | +[bs4, logging, re, requests, telebot, time] | +[TELEGRAM\AIOGRAM\TG_shop] | +2024-01-15 04:50:42 | +3 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot | +[aiogram, apscheduler, asyncio, data, datetime, filters, handlers, keyboards, loader, logging, models, sqlite3, states] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / data | +[aiogram, datetime] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\data] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / data / image | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\data\image] | +2025-06-28 17:15:00 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / data / photo | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\data\photo] | +2025-06-28 17:15:02 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / filters | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\filters] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / errors | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\errors] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / errors / callback | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\errors\callback] | +2025-06-28 17:14:58 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / errors / message | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\errors\message] | +2025-06-28 17:14:56 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / groups | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\groups] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / groups / callback | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\groups\callback] | +2025-06-28 17:14:55 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / groups / message | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\groups\message] | +2025-06-28 17:14:51 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / supergroups | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\supergroups] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / supergroups / callback | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\supergroups\callback] | +2025-06-28 17:14:40 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / supergroups / message | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\supergroups\message] | +2025-06-28 17:14:35 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / users | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\users] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / users / callback | +[aiogram, asyncio, data, datetime, json, keyboards, loader, models, sqlite3, sys, time] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\users\callback] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / handlers / users / message | +[aiogram, asyncio, data, keyboards, loader, models, sqlite3, utils] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\handlers\users\message] | +2024-01-15 04:55:46 | +4 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / keyboards | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\keyboards] | +2024-01-15 04:50:42 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / keyboards / inline | +[aiogram] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\keyboards\inline] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / keyboards / reply | +[aiogram] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\keyboards\reply] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / models | +[sqlite3] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\models] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / states | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\states] | +2024-01-15 04:55:46 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / states / admin | +[aiogram, asyncio, data, datetime, loader, logging, models, random, string] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\states\admin] | +2024-01-15 04:55:46 | +3 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / states / user | +[] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\states\user] | +2025-06-28 17:15:14 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / test | +[aiogram, asyncio, logging] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\test] | +2024-04-03 17:27:38 | +1 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / utils | +[os, time] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\utils] | +2024-01-15 04:50:42 | +2 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / utils / db_api | +[peewee, sqlite] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\utils\db_api] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / vpn_auto_shop_bot / utils / misc | +[logging] | +[TELEGRAM\AIOGRAM\vpn_auto_shop_bot\utils\misc] | +2024-01-15 04:55:46 | +2 | +
TELEGRAM / AIOGRAM / YouTube_bot_aiogram | +[aiogram, asyncio, config, datetime, logging, os, pytube, sqlite3, tiktok_downloader, youtube_dl] | +[TELEGRAM\AIOGRAM\YouTube_bot_aiogram] | +2024-01-15 04:55:52 | +3 | +
TELEGRAM / AIOGRAM / Шаблон aiogram | +[aiogram, data] | +[TELEGRAM\AIOGRAM\Шаблон aiogram] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / data | +[aiogram, datetime] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\data] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / data / image | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\data\image] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / filters | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\filters] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / errors | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\errors] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / errors / callback | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\errors\callback] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / errors / message | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\errors\message] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / groups | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\groups] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / groups / callback | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\groups\callback] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / groups / message | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\groups\message] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / supergroups | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\supergroups] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / supergroups / callback | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\supergroups\callback] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / supergroups / message | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\supergroups\message] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / users | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\users] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / users / callback | +[aiogram, asyncio, datetime, json, loader, models, sqlite3, sys] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\users\callback] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / handlers / users / message | +[aiogram, data, loader] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\handlers\users\message] | +2025-06-29 01:26:01 | +3 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / keyboards | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\keyboards] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / keyboards / inline | +[aiogram] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\keyboards\inline] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / keyboards / reply | +[aiogram] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\keyboards\reply] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / models | +[sqlite3] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\models] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / states | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\states] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / states / admin | +[aiogram, asyncio, datetime, loader, logging, random, string] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\states\admin] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / states / user | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\states\user] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / utils | +[] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\utils] | +2025-06-29 01:26:01 | +1 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / utils / db_api | +[peewee, sqlite] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\utils\db_api] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AIOGRAM / Шаблон aiogram / utils / misc | +[logging] | +[TELEGRAM\AIOGRAM\Шаблон aiogram\utils\misc] | +2025-06-29 01:26:01 | +2 | +
TELEGRAM / AUTO_REGER / AutoRegerTg_5sim-Teleton | +[logging, os, requests, sys, telethon, time] | +[TELEGRAM\AUTO_REGER\AutoRegerTg_5sim-Teleton] | +2024-01-15 04:55:52 | +2 | +
TELEGRAM / AUTO_REGER / AutoRegerTg_Sms_Activate_Pyrogram | +[os, pyro_sms_activate, pyrogram, requests, shutil, time] | +[TELEGRAM\AUTO_REGER\AutoRegerTg_Sms_Activate_Pyrogram] | +2024-01-15 04:55:52 | +3 | +
TELEGRAM / CONVerter / session-conv-bot-main | +[dotenv, os, pyrogram] | +[TELEGRAM\CONVerter\session-conv-bot-main] | +2024-01-15 04:55:52 | +1 | +
TELEGRAM / CONVerter / session-conv-bot-main / modules | +[base64, ipaddress, os, pyrogram, pysession, sqlite3, struct] | +[TELEGRAM\CONVerter\session-conv-bot-main\modules] | +2024-01-15 04:55:52 | +6 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages | +[asyncio, base64, collections, errno, functools, http, httplib, imp, importlib, io, logging, os, pkgutil, socket, socks, ssl, struct, sys, threading, urllib, urllib2, win_inet_pton] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages] | +2024-01-15 04:55:52 | +4 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / dotenv | +[IPython, StringIO, __future__, abc, click, codecs, collections, compat, contextlib, io, ipython, logging, main, os, parser, re, shutil, subprocess, sys, tempfile, typing, variables, version] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\dotenv] | +2024-01-15 04:55:52 | +8 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pip | +[importlib, os, pip, runpy, sys, typing, warnings] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\pip] | +2024-01-15 04:55:53 | +3 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pkg_resources | +[__main__, _imp, collections, email, errno, functools, imp, importlib, inspect, io, itertools, linecache, ntpath, operator, os, pkg_resources, pkgutil, platform, plistlib, posixpath, re, stat, sys, sysconfig, tempfile, textwrap, time, types, warnings, zipfile, zipimport] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\pkg_resources] | +2024-01-15 04:55:53 | +1 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pyaes | +[aes, blockfeeder, copy, struct, util] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\pyaes] | +2024-01-15 04:55:53 | +4 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pyasn1 | +[logging, pyasn1, sys] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\pyasn1] | +2024-01-15 04:55:53 | +3 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / pyrogram | +[asyncio, base64, client, collections, concurrent, configparser, dispatcher, enum, file_id, functools, getpass, hashlib, importlib, inspect, io, logging, mime_types, mimetypes, os, pathlib, platform, pyrogram, re, scaffold, shutil, struct, sync, sys, tempfile, threading, time, typing] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\pyrogram] | +2024-01-15 04:55:53 | +11 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / rsa | +[abc, base64, doctest, hashlib, hmac, logging, math, multiprocessing, optparse, os, pyasn1, rsa, struct, sys, threading, typing, warnings] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\rsa] | +2024-01-15 04:56:01 | +15 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / setuptools | +[_deprecation_warning, _distutils_hack, _imp, _importlib, _itertools, _path, _reqs, base64, builtins, collections, configparser, contextlib, ctypes, dis, distutils, email, extern, fnmatch, functools, glob, hashlib, html, http, importlib, importlib_metadata, inspect, io, itertools, json, logging, marshal, monkey, numbers, numpy, operator, org, os, pathlib, pickle, pkg_resources, platform, posixpath, py34compat, re, setuptools, shlex, shutil, socket, subprocess, sys, tarfile, tempfile, textwrap, tokenize, types, typing, unicodedata, urllib, warnings, winreg, zipfile] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\setuptools] | +2024-01-15 04:56:01 | +30 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / tests | +[] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\tests] | +2024-01-15 04:56:01 | +1 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / wheel | +[__future__, base64, collections, csv, ctypes, email, glob, hashlib, io, logging, macosx_libfile, metadata, os, pkg_resources, re, setuptools, shutil, stat, sys, sysconfig, textwrap, time, typing, util, vendored, warnings, wheel, wheelfile, zipfile] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\wheel] | +2024-01-15 04:56:01 | +8 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Lib / site-packages / _distutils_hack | +[importlib, os, sys, traceback, warnings] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Lib\site-packages\_distutils_hack] | +2024-01-15 04:56:01 | +2 | +
TELEGRAM / CONVerter / session-conv-bot-main / venvs / Scripts | +[os, site, sys] | +[TELEGRAM\CONVerter\session-conv-bot-main\venvs\Scripts] | +2024-01-15 04:56:01 | +1 | +
TELEGRAM / CONVerter / Tdata2Session [pyrogram only] | +[asyncio, base64, cffi, contextlib, convert_tdata, datetime, functools, hashlib, io, locale, loguru, os, pathlib, pyaes, pyasn1, pycparser, pyrogram, random, re, rsa, session_string_converter, struct, subprocess, sys, tgcrypto, threading, time, traceback, typing, utils, win32_setctime] | +[TELEGRAM\CONVerter\Tdata2Session [pyrogram only]] | +2024-01-15 04:56:01 | +4 | +
TELEGRAM / CONVerter / telegram_session_conv | +[asyncio, config, configparser, datetime, io, json, logging, openpyxl, os, pyrogram, pythonping, random, re, sqlite3, sys, telethon, tg_converter, time, tkinter] | +[TELEGRAM\CONVerter\telegram_session_conv] | +2024-01-15 04:56:01 | +4 | +
TELEGRAM / CONVerter / Telethon-To-Pyrogram-master / Telethon-To-Pyrogram-master | +[argparse, asyncio, base64, os, pathlib, pyrogram, sqlite3, struct, telethon, typing, utils] | +[TELEGRAM\CONVerter\Telethon-To-Pyrogram-master\Telethon-To-Pyrogram-master] | +2024-01-15 04:56:01 | +1 | +
TELEGRAM / CONVerter / Telethon-To-Pyrogram-master / Telethon-To-Pyrogram-master / utils | +[argparse, asyncio, os, pyrogram, telethon] | +[TELEGRAM\CONVerter\Telethon-To-Pyrogram-master\Telethon-To-Pyrogram-master\utils] | +2024-01-15 04:56:01 | +3 | +
TELEGRAM / PyroBot | +[PIL, asyncio, data, datetime, io, json, logging, math, module, openpyxl, os, pyrogram, pythonping, random, re, requests, socket, sqlite3, string, struct, sys, time, tkinter] | +[TELEGRAM\PyroBot] | +2024-01-15 04:56:34 | +1 | +
TELEGRAM / PyroBot / data | +[] | +[TELEGRAM\PyroBot\data] | +2024-01-15 04:56:34 | +1 | +
TELEGRAM / PyroBot / module | +[aiogram, apscheduler, arrow, asyncio, bs4, colorama, data, json, logging, os, peewee, pydantic, pyrogram, random, re, requests, selenium, seleniumwire, sqlite3, string, sys, textwrap, time, tkinter, typing, unittest, urllib3, utils, webdriver_manager] | +[TELEGRAM\PyroBot\module] | +2024-01-15 04:50:42 | +14 | +
TELEGRAM / PyroBot / module / assistant-master / assistant | +[assistant, configparser, datetime, pyrogram, time] | +[TELEGRAM\PyroBot\module\assistant-master\assistant] | +2024-01-15 04:56:34 | +2 | +
TELEGRAM / PyroBot / module / assistant-master / assistant / plugins | +[aiohttp, assistant, asyncio, functools, num2words, pyrogram, time, utils] | +[TELEGRAM\PyroBot\module\assistant-master\assistant\plugins] | +2024-01-15 04:56:34 | +5 | +
TELEGRAM / PyroBot / module / assistant-master / assistant / utils | +[pyrogram, re] | +[TELEGRAM\PyroBot\module\assistant-master\assistant\utils] | +2024-01-15 04:56:34 | +1 | +
TELEGRAM / PyroBot / module / chat_parser | +[asyncio, cx_Freeze, json, os, pyrogram, sys, tqdm] | +[TELEGRAM\PyroBot\module\chat_parser] | +2024-01-15 04:50:42 | +4 | +
TELEGRAM / PyroBot / module / Inviter | +[asyncio, colorama, json, logging, os, pyrogram, random, sqlite3, subprocess, time] | +[TELEGRAM\PyroBot\module\Inviter] | +2024-01-15 04:50:42 | +3 | +
TELEGRAM / PyroBot / module / Progrev | +[asyncio, colorama, datetime, dateutil, faker, json, logging, nltk, os, pyrogram, random, sqlite3, statistics, string, subprocess, time, tkinter, winsound] | +[TELEGRAM\PyroBot\module\Progrev] | +2024-01-15 04:56:34 | +7 | +
TELEGRAM / PyroBot / module / pyrogram_tag_group_parser_and_sender | +[asyncio, config, contextlib, datetime, logging, openpyxl, os, pyrogram, random, sqlite3] | +[TELEGRAM\PyroBot\module\pyrogram_tag_group_parser_and_sender] | +2024-01-15 04:56:35 | +6 | +
TELEGRAM / PyroBot / module / session_conv | +[TGConvertor, asyncio, os, pathlib, shutil, tkinter] | +[TELEGRAM\PyroBot\module\session_conv] | +2024-01-15 04:56:36 | +1 | +
TELEGRAM / PyroBot / module / Spamer | +[asyncio, bs4, colorama, jinja2, json, logging, os, pickle, pyrogram, random, re, requests, selenium, seleniumwire, sqlite3, subprocess, sys, time, unittest] | +[TELEGRAM\PyroBot\module\Spamer] | +2024-01-15 04:56:36 | +4 | +
TELEGRAM / PyroBot / module / un_active_other | +[asyncio, colorama, contextlib, json, logging, os, pyrogram, random, re, sqlite3, subprocess, time, typing, utils] | +[TELEGRAM\PyroBot\module\un_active_other] | +2024-01-15 04:56:36 | +5 | +
TELEGRAM / PyroBot / test_file | +[emoji, faker, logging, os, pyrogram, random, sqlite3, subprocess, winsound] | +[TELEGRAM\PyroBot\test_file] | +2024-01-15 04:56:44 | +8 | +
TELEGRAM / TeletoneMultiBot | +[asyncio, module] | +[TELEGRAM\TeletoneMultiBot] | +2025-06-08 14:58:09 | +2 | +
TELEGRAM / TeletoneMultiBot / module | +[asyncio, configparser, json, logging, os, re, sqlite3, telethon, time, tkinter, typing] | +[TELEGRAM\TeletoneMultiBot\module] | +2024-01-15 04:57:01 | +7 | +
TELEGRAM / TeletoneMultiBot / module / auth | +[asyncio, json, os, telethon] | +[TELEGRAM\TeletoneMultiBot\module\auth] | +2025-07-02 21:00:59 | +2 | +
TELEGRAM / TeletoneMultiBot / module / checker | +[aiohttp, asyncio, module, re, telethon] | +[TELEGRAM\TeletoneMultiBot\module\checker] | +2025-07-02 21:00:59 | +3 | +
TELEGRAM / TeletoneMultiBot / module / commands | +[telethon] | +[TELEGRAM\TeletoneMultiBot\module\commands] | +2025-07-02 21:00:59 | +1 | +
TELEGRAM / TeletoneMultiBot / module / conv | +[TGConvertor, asyncio, os, pathlib, shutil] | +[TELEGRAM\TeletoneMultiBot\module\conv] | +2024-01-15 04:57:03 | +1 | +
TELEGRAM / TeletoneMultiBot / module / db | +[os, sqlite3] | +[TELEGRAM\TeletoneMultiBot\module\db] | +2025-07-02 21:00:59 | +2 | +
TELEGRAM / TeletoneMultiBot / module / message_sender | +[asyncio, configparser, json, logging, os, sqlite3, telethon, time] | +[TELEGRAM\TeletoneMultiBot\module\message_sender] | +2024-01-15 04:57:01 | +1 | +
TELEGRAM / TeletoneMultiBot / module / message_sender / venvs / Lib / site-packages | +[functools, imp, importlib, os, pkgutil, sys, threading] | +[TELEGRAM\TeletoneMultiBot\module\message_sender\venvs\Lib\site-packages] | +2024-01-15 04:57:03 | +1 | +
TELEGRAM / TeletoneMultiBot / module / message_sender / venvs / Scripts | +[os, site, sys] | +[TELEGRAM\TeletoneMultiBot\module\message_sender\venvs\Scripts] | +2024-01-15 04:57:03 | +1 | +
TELEGRAM / TeletoneMultiBot / module / parser | +[re, telethon] | +[TELEGRAM\TeletoneMultiBot\module\parser] | +2025-07-02 21:00:59 | +2 | +
TELEGRAM / TeletoneMultiBot / module / reporter | +[module] | +[TELEGRAM\TeletoneMultiBot\module\reporter] | +2025-07-02 21:00:59 | +2 | +
TELEGRAM / TeletoneMultiBot / test | +[asyncio, configparser, emoji, googletrans, logging, operator, os, pydub, random, speech_recognition, sqlite3, telebot, telethon, time] | +[TELEGRAM\TeletoneMultiBot\test] | +2024-01-15 04:57:01 | +2 | +
TELEGRAM / tg_session_auto_dropper | +[aiogram, apscheduler, asyncio, config, datetime, dateutil, json, logging, os, peewee, pyrogram, sqlite3] | +[TELEGRAM\tg_session_auto_dropper] | +2024-01-15 04:57:01 | +3 | +
TELEGRAM / WEB3TELEGRAM | +[colorama, connect_to_wifi, data, datetime, functions, models, os, peewee, psutil, pyautogui, pyewelink, pywifi, pywinauto, requests, selenium, sim_modem_reboot, socket, subprocess, threading, time, tkinter, ttkthemes, win32con, win32gui, winsound] | +[TELEGRAM\WEB3TELEGRAM] | +2024-06-11 07:01:05 | +4 | +
TELEGRAM / WEB3TELEGRAM / data | +[] | +[TELEGRAM\WEB3TELEGRAM\data] | +2024-06-13 07:49:33 | +4 | +
TELEGRAM / WEB3TELEGRAM / data / image | +[] | +[TELEGRAM\WEB3TELEGRAM\data\image] | +2024-06-13 07:49:35 | +1 | +
TELEGRAM / WEB3TELEGRAM / functions | +[datetime, models, os, time] | +[TELEGRAM\WEB3TELEGRAM\functions] | +2024-06-13 07:06:46 | +2 | +
TELEGRAM / WEB3TELEGRAM / functions / getgems-parser | +[bs4, colorama, selenium, sqlite3, time] | +[TELEGRAM\WEB3TELEGRAM\functions\getgems-parser] | +2024-10-06 08:06:51 | +1 | +
TELEGRAM / WEB3TELEGRAM / functions / nox | +[colorama, ctypes, cv2, datetime, functions, models, numpy, os, psutil, pyautogui, pywinauto, sys, time, warnings] | +[TELEGRAM\WEB3TELEGRAM\functions\nox] | +2024-06-11 04:12:10 | +8 | +
TELEGRAM / WEB3TELEGRAM / functions / speaker | +[pyttsx3] | +[TELEGRAM\WEB3TELEGRAM\functions\speaker] | +2024-09-22 03:32:09 | +2 | +
TELEGRAM / WEB3TELEGRAM / functions / telegram | +[data, functions, importlib, keyboard, models, os, pyautogui, random, sys, time, utils] | +[TELEGRAM\WEB3TELEGRAM\functions\telegram] | +2024-06-18 07:53:07 | +2 | +
TELEGRAM / WEB3TELEGRAM / models | +[colorama, datetime, models, os, peewee, utils] | +[TELEGRAM\WEB3TELEGRAM\models] | +2024-06-12 09:51:49 | +5 | +
TELEGRAM / WEB3TELEGRAM / MY_WEB_APP | +[] | +[TELEGRAM\WEB3TELEGRAM\MY_WEB_APP] | +2024-09-18 00:44:21 | +1 | +
TELEGRAM / WEB3TELEGRAM / tests | +[colorama, data, functions, pyttsx3, requests, selenium, socket, sys, time, tqdm, webdriver_manager] | +[TELEGRAM\WEB3TELEGRAM\tests] | +2024-06-12 06:00:42 | +6 | +
TELEGRAM / WEB3TELEGRAM / utils | +[] | +[TELEGRAM\WEB3TELEGRAM\utils] | +2024-06-16 09:16:06 | +1 | +
TELEGRAM / WEB3TELEGRAM / utils / db_api | +[os, peewee, sqlite] | +[TELEGRAM\WEB3TELEGRAM\utils\db_api] | +2024-06-16 09:16:06 | +2 | +
TELEGRAM / WEB3TELEGRAM / utils / misc | +[logging] | +[TELEGRAM\WEB3TELEGRAM\utils\misc] | +2024-06-16 09:16:06 | +2 | +
uneversal_socket_license | +[GPUtil, aiogram, asyncio, colorama, cpuinfo, cryptography, cx_Freeze, datetime, fingerprint, json, os, peewee, platform, psutil, requests, socket, ssl, sys, telebot, threading, time, utils, uuid] | +[uneversal_socket_license] | +2024-01-15 04:50:42 | +9 | +
uneversal_socket_license / utils | +[] | +[uneversal_socket_license\utils] | +2024-01-15 04:50:42 | +1 | +
uneversal_socket_license / utils / db_api | +[peewee, sqlite] | +[uneversal_socket_license\utils\db_api] | +2024-01-15 04:57:03 | +2 | +
uneversal_socket_license / utils / misc | +[logging] | +[uneversal_socket_license\utils\misc] | +2024-01-15 04:57:03 | +2 | +
video_face_changer | +[cv2, cx_Freeze, glob, numpy, os, pyvirtualcam, sys] | +[video_face_changer] | +2024-01-15 04:57:03 | +6 | +
WEB / django-shop-master | +[setuptools, shop] | +[WEB\django-shop-master] | +2025-06-17 06:37:36 | +1 | +
WEB / django-shop-master / docs | +[datetime, django, os, shop, sys] | +[WEB\django-shop-master\docs] | +2025-06-17 06:37:36 | +1 | +
WEB / django-shop-master / email_auth | +[django] | +[WEB\django-shop-master\email_auth] | +2025-06-17 06:37:36 | +2 | +
WEB / django-shop-master / email_auth / migrations | +[__future__, django, email_auth, re] | +[WEB\django-shop-master\email_auth\migrations] | +2025-06-17 06:37:36 | +6 | +
WEB / django-shop-master / shop | +[cms, compressor, copy, datetime, decimal, django, django_filters, djng, json, menus, polymorphic, post_office, redis, rest_auth, rest_framework, shop, urllib, warnings] | +[WEB\django-shop-master\shop] | +2025-06-17 06:37:36 | +15 | +
WEB / django-shop-master / shop / admin | +[adminsortable2, cms, collections, django, django_elasticsearch_dsl, django_fsm, fsm_admin, shop] | +[WEB\django-shop-master\shop\admin] | +2025-06-17 06:37:36 | +6 | +
WEB / django-shop-master / shop / admin / defaults | +[adminsortable2, cms, django, parler, shop] | +[WEB\django-shop-master\shop\admin\defaults] | +2025-06-17 06:37:36 | +4 | +
WEB / django-shop-master / shop / cascade | +[adminsortable2, cms, cmsplugin_cascade, django, django_select2, djangocms_text_ckeditor, djng, entangled, shop] | +[WEB\django-shop-master\shop\cascade] | +2025-06-17 06:37:36 | +13 | +
WEB / django-shop-master / shop / forms | +[cms, django, djangocms_text_ckeditor, djng, formtools, post_office, sass_processor, shop] | +[WEB\django-shop-master\shop\forms] | +2025-06-17 06:37:36 | +6 | +
WEB / django-shop-master / shop / management | +[cms, cmsplugin_cascade, djangocms_text_ckeditor] | +[WEB\django-shop-master\shop\management] | +2025-06-17 06:37:36 | +2 | +
WEB / django-shop-master / shop / management / commands | +[cms, cmsplugin_cascade, django, shop] | +[WEB\django-shop-master\shop\management\commands] | +2025-06-17 06:37:36 | +2 | +
WEB / django-shop-master / shop / migrations | +[HTMLParser, __future__, django, djangocms_text_ckeditor, filer, html, json, re, shop, warnings] | +[WEB\django-shop-master\shop\migrations] | +2025-06-17 06:37:36 | +11 | +
WEB / django-shop-master / shop / models | +[cms, collections, decimal, django, django_elasticsearch_dsl, django_fsm, enum, filer, functools, importlib, ipware, jsonfield, logging, operator, polymorphic, post_office, shop, string, urllib, warnings] | +[WEB\django-shop-master\shop\models] | +2025-06-17 06:37:36 | +11 | +
WEB / django-shop-master / shop / models / defaults | +[binascii, cms, django, djangocms_text_ckeditor, filer, os, parler, polymorphic, shop, urllib] | +[WEB\django-shop-master\shop\models\defaults] | +2025-06-17 06:37:36 | +11 | +
WEB / django-shop-master / shop / modifiers | +[decimal, django, shop] | +[WEB\django-shop-master\shop\modifiers] | +2025-06-17 06:37:36 | +5 | +
WEB / django-shop-master / shop / money | +[cms, decimal, django, json, shop] | +[WEB\django-shop-master\shop\money] | +2025-06-17 06:37:36 | +5 | +
WEB / django-shop-master / shop / payment | +[django, django_fsm, shop] | +[WEB\django-shop-master\shop\payment] | +2025-06-17 06:37:36 | +4 | +
WEB / django-shop-master / shop / rest | +[collections, django, functools, operator, rest_framework, shop] | +[WEB\django-shop-master\shop\rest] | +2025-06-17 06:37:36 | +5 | +
WEB / django-shop-master / shop / search | +[django, django_elasticsearch_dsl, elasticsearch, elasticsearch_dsl, shop] | +[WEB\django-shop-master\shop\search] | +2025-06-17 06:37:36 | +4 | +
WEB / django-shop-master / shop / serializers | +[cms, django, filer, rest_auth, rest_framework, shop] | +[WEB\django-shop-master\shop\serializers] | +2025-06-17 06:37:36 | +8 | +
WEB / django-shop-master / shop / serializers / defaults | +[rest_framework, shop] | +[WEB\django-shop-master\shop\serializers\defaults] | +2025-06-17 06:37:36 | +6 | +
WEB / django-shop-master / shop / shipping | +[django, django_fsm, shop] | +[WEB\django-shop-master\shop\shipping] | +2025-06-17 06:37:36 | +3 | +
WEB / django-shop-master / shop / templatetags | +[cms, collections, django, sekizai, shop] | +[WEB\django-shop-master\shop\templatetags] | +2025-06-17 06:37:36 | +3 | +
WEB / django-shop-master / shop / urls | +[django, rest_framework, shop, warnings] | +[WEB\django-shop-master\shop\urls] | +2025-06-17 06:37:36 | +4 | +
WEB / django-shop-master / shop / views | +[cms, django, os, rest_auth, rest_framework, shop, urllib] | +[WEB\django-shop-master\shop\views] | +2025-06-17 06:37:36 | +8 | +
WEB / django-shop-master / tests | +[bs4, cPickle, cms, conftest, copy, datetime, decimal, django, factory, importlib, json, math, os, pickle, polymorphic, post_office, pytest, pytest_factoryboy, pytz, re, rest_framework, shop, sys, testshop, types] | +[WEB\django-shop-master\tests] | +2025-06-17 06:37:36 | +14 | +
WEB / django-shop-master / tests / testshop | +[django, shop] | +[WEB\django-shop-master\tests\testshop] | +2025-06-17 06:37:36 | +6 | +
WEB / MyBrand - eCommerce-shop | +[decouple, django, os, subprocess, sys, time, watchdog] | +[WEB\MyBrand - eCommerce-shop] | +2025-06-17 19:56:47 | +2 | +
WEB / MyBrand - eCommerce-shop / accounts | +[accounts, carts, django, models, orders, requests] | +[WEB\MyBrand - eCommerce-shop\accounts] | +2025-06-17 19:56:46 | +8 | +
WEB / MyBrand - eCommerce-shop / accounts / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\accounts\migrations] | +2025-06-17 19:56:46 | +5 | +
WEB / MyBrand - eCommerce-shop / carts | +[accounts, carts, django, models, store] | +[WEB\MyBrand - eCommerce-shop\carts] | +2025-06-17 19:56:46 | +8 | +
WEB / MyBrand - eCommerce-shop / carts / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\carts\migrations] | +2025-06-17 19:56:46 | +6 | +
WEB / MyBrand - eCommerce-shop / category | +[django, models, store] | +[WEB\MyBrand - eCommerce-shop\category] | +2025-06-17 19:56:46 | +7 | +
WEB / MyBrand - eCommerce-shop / category / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\category\migrations] | +2025-06-17 19:56:46 | +5 | +
WEB / MyBrand - eCommerce-shop / mensline | +[decouple, django, dropbox, orders, os, pathlib, slider, store] | +[WEB\MyBrand - eCommerce-shop\mensline] | +2025-06-17 19:56:47 | +6 | +
WEB / MyBrand - eCommerce-shop / orders | +[accounts, carts, datetime, django, json, mensline, orders, store, telebot, uuid, yookassa] | +[WEB\MyBrand - eCommerce-shop\orders] | +2025-06-17 19:56:47 | +8 | +
WEB / MyBrand - eCommerce-shop / orders / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\orders\migrations] | +2025-06-17 19:56:47 | +6 | +
WEB / MyBrand - eCommerce-shop / slider | +[django, slider] | +[WEB\MyBrand - eCommerce-shop\slider] | +2025-06-17 19:56:47 | +6 | +
WEB / MyBrand - eCommerce-shop / slider / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\slider\migrations] | +2025-06-17 19:56:47 | +3 | +
WEB / MyBrand - eCommerce-shop / store | +[accounts, admin_thumbnails, carts, category, django, forms, models, orders, store] | +[WEB\MyBrand - eCommerce-shop\store] | +2025-06-17 19:56:48 | +8 | +
WEB / MyBrand - eCommerce-shop / store / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\store\migrations] | +2025-06-17 19:56:48 | +10 | +
WEB / MyBrand - eCommerce-shop / store / templatetags | +[django] | +[WEB\MyBrand - eCommerce-shop\store\templatetags] | +2025-06-17 19:56:48 | +2 | +
WEB / MyBrand - eCommerce-shop / telebot | +[django, requests, telebot] | +[WEB\MyBrand - eCommerce-shop\telebot] | +2025-06-17 19:56:48 | +7 | +
WEB / MyBrand - eCommerce-shop / telebot / migrations | +[django] | +[WEB\MyBrand - eCommerce-shop\telebot\migrations] | +2025-06-17 19:56:48 | +2 | +
WEB / Template - Django-admin-tools | +[django, os, subprocess, sys, threading, time, watchdog] | +[WEB\Template - Django-admin-tools] | +2025-02-05 19:18:55 | +2 | +
WEB / Template - Django-admin-tools / apps | +[] | +[WEB\Template - Django-admin-tools\apps] | +2025-06-13 15:09:06 | +1 | +
WEB / Template - Django-admin-tools / apps / core | +[apps, django] | +[WEB\Template - Django-admin-tools\apps\core] | +2025-06-13 06:24:06 | +7 | +
WEB / Template - Django-admin-tools / config | +[admin_tools, django, os, pathlib] | +[WEB\Template - Django-admin-tools\config] | +2025-06-13 14:42:27 | +6 | +
WEB / Template - Django-mens-line-store (GIT) | +[decouple, django, os, subprocess, sys, time, watchdog] | +[WEB\Template - Django-mens-line-store (GIT)] | +2025-06-16 01:23:59 | +2 | +
WEB / Template - Django-mens-line-store (GIT) / accounts | +[accounts, carts, django, models, orders, requests] | +[WEB\Template - Django-mens-line-store (GIT)\accounts] | +2025-06-16 01:23:58 | +8 | +
WEB / Template - Django-mens-line-store (GIT) / accounts / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\accounts\migrations] | +2025-06-16 01:23:58 | +6 | +
WEB / Template - Django-mens-line-store (GIT) / carts | +[accounts, carts, django, models, store] | +[WEB\Template - Django-mens-line-store (GIT)\carts] | +2025-06-16 01:23:58 | +8 | +
WEB / Template - Django-mens-line-store (GIT) / carts / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\carts\migrations] | +2025-06-16 01:23:58 | +6 | +
WEB / Template - Django-mens-line-store (GIT) / category | +[django, models, store] | +[WEB\Template - Django-mens-line-store (GIT)\category] | +2025-06-16 01:23:58 | +7 | +
WEB / Template - Django-mens-line-store (GIT) / category / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\category\migrations] | +2025-06-16 01:23:58 | +5 | +
WEB / Template - Django-mens-line-store (GIT) / mensline | +[decouple, django, dropbox, orders, os, pathlib, slider, store] | +[WEB\Template - Django-mens-line-store (GIT)\mensline] | +2025-06-16 01:23:59 | +6 | +
WEB / Template - Django-mens-line-store (GIT) / orders | +[accounts, carts, datetime, django, json, mensline, orders, store, telebot, uuid, yookassa] | +[WEB\Template - Django-mens-line-store (GIT)\orders] | +2025-06-16 01:23:59 | +8 | +
WEB / Template - Django-mens-line-store (GIT) / orders / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\orders\migrations] | +2025-06-16 01:23:59 | +6 | +
WEB / Template - Django-mens-line-store (GIT) / slider | +[django, slider] | +[WEB\Template - Django-mens-line-store (GIT)\slider] | +2025-06-16 01:23:59 | +6 | +
WEB / Template - Django-mens-line-store (GIT) / slider / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\slider\migrations] | +2025-06-16 01:23:59 | +3 | +
WEB / Template - Django-mens-line-store (GIT) / store | +[accounts, admin_thumbnails, carts, category, django, forms, models, orders, store] | +[WEB\Template - Django-mens-line-store (GIT)\store] | +2025-06-16 01:24:00 | +8 | +
WEB / Template - Django-mens-line-store (GIT) / store / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\store\migrations] | +2025-06-16 01:24:00 | +10 | +
WEB / Template - Django-mens-line-store (GIT) / store / templatetags | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\store\templatetags] | +2025-06-16 01:24:00 | +2 | +
WEB / Template - Django-mens-line-store (GIT) / telebot | +[django, requests, telebot] | +[WEB\Template - Django-mens-line-store (GIT)\telebot] | +2025-06-16 01:24:00 | +7 | +
WEB / Template - Django-mens-line-store (GIT) / telebot / migrations | +[django] | +[WEB\Template - Django-mens-line-store (GIT)\telebot\migrations] | +2025-06-16 01:24:00 | +2 | +
WEB / Template - FAST_API-eCommerce-shop | +[pathlib, subprocess, sys, time, watchdog] | +[WEB\Template - FAST_API-eCommerce-shop] | +2025-06-17 00:38:04 | +1 | +
WEB / Template - FAST_API-eCommerce-shop / app | +[admin, contextlib, fastapi, models, sqladmin, sqlalchemy] | +[WEB\Template - FAST_API-eCommerce-shop\app] | +2025-06-12 19:58:42 | +5 | +
WEB / Template - Flask-Admin | +[flask, flask_admin, flask_sqlalchemy] | +[WEB\Template - Flask-Admin] | +2024-01-15 04:52:11 | +1 | +
WEB / Template - Flask-Admin-AdminLTE | +[flask, flask_admin, flask_adminlte3, flask_sqlalchemy] | +[WEB\Template - Flask-Admin-AdminLTE] | +2025-06-16 17:41:14 | +1 | +
YouTube Viever | +[] | +[YouTube Viever] | +2024-02-23 14:53:33 | +1 | +