ytcollector 1.1.6__tar.gz → 1.1.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ytcollector
3
- Version: 1.1.6
3
+ Version: 1.1.7
4
4
  Summary: YouTube 콘텐츠 수집기 - 얼굴, 번호판, 타투, 텍스트 감지
5
5
  Author: YTCollector Team
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ytcollector"
7
- version = "1.1.6"
7
+ version = "1.1.7"
8
8
  description = "YouTube 콘텐츠 수집기 - 얼굴, 번호판, 타투, 텍스트 감지"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -22,7 +22,7 @@ from .analyzer import VideoAnalyzer, check_dependencies
22
22
  from .downloader import YouTubeDownloader
23
23
  from .cli import run, main as cli_main
24
24
 
25
- __version__ = "1.0.0"
25
+ __version__ = "1.1.7"
26
26
  __all__ = [
27
27
  # 주요 클래스
28
28
  "VideoAnalyzer",
@@ -1,3 +1,31 @@
1
+ import threading
2
+ import re
3
+ import os
4
+
5
+ try:
6
+ import cv2
7
+ CV2_AVAILABLE = True
8
+ except ImportError:
9
+ CV2_AVAILABLE = False
10
+
11
+ try:
12
+ import numpy as np
13
+ NUMPY_AVAILABLE = True
14
+ except ImportError:
15
+ NUMPY_AVAILABLE = False
16
+
17
+ try:
18
+ import easyocr
19
+ EASYOCR_AVAILABLE = True
20
+ except ImportError:
21
+ EASYOCR_AVAILABLE = False
22
+
23
+ try:
24
+ from ultralytics import YOLOWorld
25
+ YOLO_AVAILABLE = True
26
+ except ImportError:
27
+ YOLO_AVAILABLE = False
28
+
1
29
  try:
2
30
  import torch
3
31
  USE_GPU = torch.cuda.is_available()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ytcollector
3
- Version: 1.1.6
3
+ Version: 1.1.7
4
4
  Summary: YouTube 콘텐츠 수집기 - 얼굴, 번호판, 타투, 텍스트 감지
5
5
  Author: YTCollector Team
6
6
  License: MIT
File without changes
File without changes