tamar-file-hub-client 0.1.5__py3-none-any.whl → 0.1.6__py3-none-any.whl

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.
@@ -221,7 +221,7 @@ class AsyncBlobService(BaseFileService):
221
221
  upload_url = await self.http_uploader.start_resumable_session(
222
222
  url=upload_url_resp.upload_url,
223
223
  total_file_size=file_size,
224
- mine_type=mime_type,
224
+ mime_type=mime_type,
225
225
  )
226
226
 
227
227
  # 上传文件到对象存储
@@ -403,6 +403,7 @@ class AsyncBlobService(BaseFileService):
403
403
  keep_original_filename: Optional[bool] = False,
404
404
  url: Optional[str] = None,
405
405
  file_name: Optional[str] = None,
406
+ mime_type: Optional[str] = None,
406
407
  request_id: Optional[str] = None,
407
408
  **metadata
408
409
  ) -> FileUploadResponse:
@@ -418,6 +419,7 @@ class AsyncBlobService(BaseFileService):
418
419
  keep_original_filename: 是否保留原始文件名(默认False)
419
420
  url: 要下载并上传的URL(可选)
420
421
  file_name: 当使用url参数时指定的文件名(可选)
422
+ mime_type: MIME类型(可选,用于推断文件扩展名,特别适用于AI生成的字节数据)
421
423
  request_id: 请求ID(可选,如果不提供则自动生成)
422
424
  **metadata: 额外的元数据
423
425
 
@@ -427,6 +429,8 @@ class AsyncBlobService(BaseFileService):
427
429
  Note:
428
430
  必须提供 file 或 url 参数之一
429
431
 
432
+ 当传入bytes或BinaryIO且未提供file_name时,建议提供mime_type以确保正确的文件扩展名推断
433
+
430
434
  Cache-Control 头在 GCS 直传模式(STREAM/RESUMABLE)下自动设置为 "public, max-age=86400"
431
435
  """
432
436
  # 参数验证:必须提供 file 或 url 之一
@@ -449,26 +453,38 @@ class AsyncBlobService(BaseFileService):
449
453
  # 使用下载的内容作为file参数
450
454
  file = downloaded_content
451
455
 
452
- # 提取文件信息(bytes会返回默认的MIME类型,我们稍后会基于文件名重新计算)
453
- _, content, file_size, _, _, file_hash = self._extract_file_info(file)
456
+ # 基于文件名计算MIME类型
457
+ mime_type = get_file_mime_type(Path(file_name))
458
+
459
+ # 提取文件信息,传入MIME类型用于推断扩展名
460
+ _, content, file_size, _, _, file_hash = self._extract_file_info(file, mime_type)
454
461
 
455
462
  # file_name已经在上面设置了(要么是用户指定的,要么是从URL提取的)
456
463
  extracted_file_name = file_name
457
464
 
458
- # 基于文件名计算文件类型和MIME类型
465
+ # 基于文件名计算文件类型
459
466
  file_type = Path(extracted_file_name).suffix.lstrip('.').lower() if Path(
460
467
  extracted_file_name).suffix else 'dat'
461
- mime_type = get_file_mime_type(Path(extracted_file_name))
462
468
  else:
463
469
  # 解析文件参数,提取文件信息
464
- extracted_file_name, content, file_size, extract_mime_type, extract_file_type, file_hash = self._extract_file_info(
465
- file)
470
+ # 如果用户指定了文件名,先从文件名推断MIME类型,然后传给_extract_file_info
466
471
  if file_name:
472
+ # 用户指定了文件名,优先使用用户提供的MIME类型,否则从文件名推断
473
+ if mime_type:
474
+ file_name_mime_type = mime_type
475
+ else:
476
+ file_name_mime_type = get_file_mime_type(Path(file_name))
477
+ extracted_file_name, content, file_size, extract_mime_type, extract_file_type, file_hash = self._extract_file_info(
478
+ file, file_name_mime_type)
479
+ # 使用用户指定的文件名
467
480
  extracted_file_name = file_name
468
- mime_type = get_file_mime_type(file_name)
481
+ mime_type = file_name_mime_type
469
482
  file_type = Path(extracted_file_name).suffix.lstrip('.').lower() if Path(
470
483
  extracted_file_name).suffix else 'dat'
471
484
  else:
485
+ # 没有指定文件名,传入用户提供的MIME类型(如果有)
486
+ extracted_file_name, content, file_size, extract_mime_type, extract_file_type, file_hash = self._extract_file_info(
487
+ file, mime_type)
472
488
  mime_type = extract_mime_type
473
489
  file_type = extract_file_type
474
490
 
@@ -4,6 +4,7 @@ from typing import Optional, Union, BinaryIO, Tuple, Any
4
4
 
5
5
  from ...schemas import File, UploadFile
6
6
  from ...utils.file_utils import get_file_mime_type
7
+ from ...utils.mime_extension_mapper import get_extension_from_mime_type_with_fallback
7
8
  from ...errors import ValidationError, FileNotFoundError
8
9
 
9
10
 
@@ -14,11 +15,16 @@ class BaseFileService:
14
15
 
15
16
  def _extract_file_info(
16
17
  self,
17
- file: Union[str, Path, BinaryIO, bytes]
18
+ file: Union[str, Path, BinaryIO, bytes],
19
+ mime_type: Optional[str] = None
18
20
  ) -> Tuple[Optional[str], bytes, int, str, str, str]:
19
21
  """
20
22
  提取文件信息并返回统一的 bytes 内容与 SHA256 哈希
21
23
 
24
+ Args:
25
+ file: 文件路径、Path对象、文件对象或字节数据
26
+ mime_type: 可选的MIME类型,如果提供则用于推断文件扩展名
27
+
22
28
  Returns:
23
29
  (文件名, 内容(bytes), 文件大小, MIME类型, 文件扩展名, 文件hash)
24
30
  """
@@ -55,9 +61,22 @@ class BaseFileService:
55
61
  # Case 2: 原始字节流
56
62
  elif isinstance(file, bytes):
57
63
  sha256 = hashlib.sha256(file).hexdigest()
58
- # 为字节流生成默认文件名
59
- file_name = f"upload_{sha256[:8]}.dat"
60
- return file_name, file, len(file), "application/octet-stream", 'dat', sha256
64
+
65
+ # 确定MIME类型和文件扩展名
66
+ if mime_type:
67
+ # 如果显式提供了MIME类型,直接使用
68
+ final_mime_type = mime_type
69
+ else:
70
+ # 如果没有提供MIME类型,尝试从文件内容推断
71
+ final_mime_type = self._detect_mime_from_content(file)
72
+
73
+ # 根据MIME类型推断文件扩展名,如果推断失败则使用默认的'dat'
74
+ file_ext = get_extension_from_mime_type_with_fallback(final_mime_type, 'dat')
75
+
76
+ # 为字节流生成文件名,使用推断出的扩展名
77
+ file_name = f"upload_{sha256[:8]}.{file_ext}"
78
+
79
+ return file_name, file, len(file), final_mime_type, file_ext, sha256
61
80
 
62
81
  # Case 3: 可读文件对象
63
82
  elif hasattr(file, 'read'):
@@ -70,12 +89,37 @@ class BaseFileService:
70
89
 
71
90
  # 如果没有文件名,生成一个默认的
72
91
  if not file_name:
73
- file_name = f"upload_{file_hash[:8]}.dat"
74
- file_type = 'dat'
75
- mime_type = "application/octet-stream"
92
+ # 确定MIME类型
93
+ if mime_type:
94
+ # 如果显式提供了MIME类型,直接使用
95
+ final_mime_type = mime_type
96
+ else:
97
+ # 如果没有提供MIME类型,尝试从文件内容推断
98
+ final_mime_type = self._detect_mime_from_content(content)
99
+
100
+ # 根据MIME类型推断文件扩展名
101
+ file_type = get_extension_from_mime_type_with_fallback(final_mime_type, 'dat')
102
+
103
+ # 生成文件名
104
+ file_name = f"upload_{file_hash[:8]}.{file_type}"
105
+ mime_type = final_mime_type
76
106
  else:
77
- file_type = Path(file_name).suffix.lstrip('.').lower()
78
- mime_type = get_file_mime_type(Path(file_name))
107
+ # 有文件名的情况下,优先使用文件名的扩展名
108
+ file_type = Path(file_name).suffix.lstrip('.').lower() or 'dat'
109
+
110
+ # 如果提供了MIME类型则使用,否则从文件名推断
111
+ if mime_type:
112
+ # 检查MIME类型与文件扩展名是否匹配,如果不匹配则使用MIME类型推断的扩展名
113
+ inferred_ext = get_extension_from_mime_type_with_fallback(mime_type, file_type)
114
+ if inferred_ext != file_type:
115
+ # MIME类型与文件扩展名不匹配,使用MIME类型推断的扩展名
116
+ file_type = inferred_ext
117
+ # 更新文件名以反映正确的扩展名
118
+ base_name = Path(file_name).stem
119
+ file_name = f"{base_name}.{file_type}"
120
+ else:
121
+ mime_type = get_file_mime_type(Path(file_name))
122
+
79
123
  file_name = Path(file_name).name
80
124
 
81
125
  return file_name, content, file_size, mime_type, file_type, file_hash
@@ -83,6 +127,163 @@ class BaseFileService:
83
127
  else:
84
128
  raise ValidationError(f"不支持的文件类型: {type(file)}")
85
129
 
130
+ def _detect_mime_from_content(self, content: bytes) -> str:
131
+ """
132
+ 从文件内容推断MIME类型
133
+ 通过文件头(magic bytes)识别常见的文件格式
134
+
135
+ Args:
136
+ content: 文件内容的字节数据
137
+
138
+ Returns:
139
+ 推断出的MIME类型,如果无法识别则返回默认值
140
+ """
141
+ if not content:
142
+ return "application/octet-stream"
143
+
144
+ # 常见文件格式的魔术字节(文件头)
145
+ magic_bytes_patterns = [
146
+ # 图片格式
147
+ (b"\x89PNG\r\n\x1a\n", "image/png"),
148
+ (b"\xff\xd8\xff\xe0", "image/jpeg"), # JFIF
149
+ (b"\xff\xd8\xff\xe1", "image/jpeg"), # EXIF
150
+ (b"\xff\xd8\xff\xe2", "image/jpeg"), # Canon
151
+ (b"\xff\xd8\xff\xe3", "image/jpeg"), # Samsung
152
+ (b"\xff\xd8\xff\xee", "image/jpeg"), # Adobe
153
+ (b"\xff\xd8\xff\xdb", "image/jpeg"), # Samsung D500
154
+ (b"\xff\xd8\xff", "image/jpeg"), # 通用JPEG标识符(放最后作为后备)
155
+ (b"RIFF", "image/webp"), # WebP文件以RIFF开头,需要进一步检查
156
+ (b"GIF87a", "image/gif"),
157
+ (b"GIF89a", "image/gif"),
158
+ (b"BM", "image/bmp"),
159
+ (b"\x00\x00\x01\x00", "image/x-icon"), # ICO
160
+ (b"\x00\x00\x02\x00", "image/x-icon"), # CUR
161
+
162
+ # 视频格式 - 大幅增强MP4检测
163
+ (b"\x00\x00\x00\x14ftyp", "video/quicktime"), # MOV (20字节)
164
+ (b"\x00\x00\x00\x15ftyp", "video/mp4"), # MP4 (21字节)
165
+ (b"\x00\x00\x00\x16ftyp", "video/mp4"), # MP4 (22字节)
166
+ (b"\x00\x00\x00\x17ftyp", "video/mp4"), # MP4 (23字节)
167
+ (b"\x00\x00\x00\x18ftyp", "video/mp4"), # MP4 (24字节)
168
+ (b"\x00\x00\x00\x19ftyp", "video/mp4"), # MP4 (25字节)
169
+ (b"\x00\x00\x00\x1aftyp", "video/mp4"), # MP4 (26字节)
170
+ (b"\x00\x00\x00\x1bftyp", "video/mp4"), # MP4 (27字节)
171
+ (b"\x00\x00\x00\x1cftyp", "video/mp4"), # MP4 (28字节)
172
+ (b"\x00\x00\x00\x1dftyp", "video/mp4"), # MP4 (29字节)
173
+ (b"\x00\x00\x00\x1eftyp", "video/mp4"), # MP4 (30字节)
174
+ (b"\x00\x00\x00\x1fftyp", "video/mp4"), # MP4 (31字节)
175
+ (b"\x00\x00\x00\x20ftyp", "video/mp4"), # MP4 (32字节)
176
+ (b"\x00\x00\x00!ftyp", "video/mp4"), # MP4 (33字节)
177
+ (b"\x00\x00\x00\"ftyp", "video/mp4"), # MP4 (34字节)
178
+ (b"\x00\x00\x00#ftyp", "video/mp4"), # MP4 (35字节)
179
+ (b"\x00\x00\x00$ftyp", "video/mp4"), # MP4 (36字节)
180
+ (b"ftypmp4", "video/mp4"), # 直接MP4标识
181
+ (b"ftypisom", "video/mp4"), # ISO Base Media
182
+ (b"ftypM4V", "video/mp4"), # iTunes M4V
183
+ (b"ftypM4A", "video/mp4"), # iTunes M4A
184
+ (b"ftypf4v", "video/mp4"), # Flash Video MP4
185
+ (b"ftypkddi", "video/mp4"), # Kodak
186
+ (b"ftypmif1", "video/mp4"), # HEIF
187
+ (b"ftypmsf1", "video/mp4"), # HEIF sequence
188
+ (b"ftypheic", "video/mp4"), # HEIC
189
+ (b"ftypheif", "video/mp4"), # HEIF
190
+ (b"ftypmj2s", "video/mp4"), # Motion JPEG 2000
191
+ (b"ftypmjp2", "video/mp4"), # Motion JPEG 2000
192
+ (b"\x1a\x45\xdf\xa3", "video/webm"), # WebM/Matroska
193
+ (b"FLV\x01", "video/x-flv"), # Flash Video
194
+ (b"\x00\x00\x01\xba", "video/mpeg"), # MPEG Program Stream
195
+ (b"\x00\x00\x01\xb3", "video/mpeg"), # MPEG Video Stream
196
+ (b"RIFF", "video/avi"), # AVI (需要进一步检查)
197
+
198
+ # 音频格式 - AAC需要放在MP3前面,因为有重叠
199
+ (b"\xff\xf1", "audio/aac"), # AAC ADTS
200
+ (b"\xff\xf9", "audio/aac"), # AAC ADTS
201
+ (b"\xff\xfb", "audio/mpeg"), # MP3 Layer III
202
+ (b"\xff\xfa", "audio/mpeg"), # MP3 Layer III
203
+ (b"\xff\xf3", "audio/mpeg"), # MP3 Layer III
204
+ (b"\xff\xf2", "audio/mpeg"), # MP3 Layer II
205
+ (b"\xff\xf0", "audio/mpeg"), # MP3 Layer reserve
206
+ (b"ID3", "audio/mpeg"), # MP3 with ID3v2
207
+ (b"RIFF", "audio/wav"), # WAV也以RIFF开头,需要进一步检查
208
+ (b"OggS", "audio/ogg"), # OGG
209
+ (b"fLaC", "audio/flac"), # FLAC
210
+ (b"ftypM4A", "audio/mp4"), # M4A (AAC in MP4)
211
+ (b"#!AMR", "audio/amr"), # AMR
212
+ (b".snd", "audio/basic"), # AU
213
+ (b"dns.", "audio/basic"), # AU (big endian)
214
+ (b"FORM", "audio/aiff"), # AIFF
215
+
216
+ # 文档格式
217
+ (b"%PDF", "application/pdf"),
218
+ (b"PK\x03\x04", "application/zip"), # ZIP
219
+ (b"PK\x05\x06", "application/zip"), # Empty ZIP
220
+ (b"PK\x07\x08", "application/zip"), # Spanned ZIP
221
+ (b"Rar!", "application/x-rar-compressed"), # RAR
222
+ (b"\x1f\x8b\x08", "application/gzip"), # GZIP
223
+ (b"BZh", "application/x-bzip2"), # BZIP2
224
+ (b"\x37\x7a\xbc\xaf\x27\x1c", "application/x-7z-compressed"), # 7Z
225
+
226
+ # Office文档
227
+ (b"\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1", "application/vnd.ms-office"), # MS Office 97-2003
228
+ (b"PK\x03\x04\x14\x00\x06\x00", "application/vnd.openxmlformats-officedocument"), # Office 2007+
229
+
230
+ # 可执行文件
231
+ (b"MZ", "application/x-msdownload"), # Windows EXE
232
+ (b"\x7fELF", "application/x-executable"), # Linux ELF
233
+ (b"\xfe\xed\xfa\xce", "application/x-mach-binary"), # macOS Mach-O (32-bit)
234
+ (b"\xfe\xed\xfa\xcf", "application/x-mach-binary"), # macOS Mach-O (64-bit)
235
+ ]
236
+
237
+ # 检查文件头匹配
238
+ for pattern, mime_type in magic_bytes_patterns:
239
+ if content.startswith(pattern):
240
+ # 特殊处理RIFF格式,需要进一步区分WebP和WAV
241
+ if pattern == b"RIFF" and len(content) >= 12:
242
+ # RIFF格式的第8-11字节指示具体格式
243
+ format_type = content[8:12]
244
+ if format_type == b"WEBP":
245
+ return "image/webp"
246
+ elif format_type == b"WAVE":
247
+ return "audio/wav"
248
+ elif format_type == b"AVI ":
249
+ return "video/x-msvideo"
250
+ # 如果RIFF格式无法进一步识别,返回通用二进制类型
251
+ return "application/octet-stream"
252
+ else:
253
+ return mime_type
254
+
255
+ # 检查是否是明确的文本内容(更保守的检测)
256
+ try:
257
+ text_content = content.decode('utf-8')
258
+ # 只有在明确是结构化文本格式时才识别为文本
259
+ if text_content.strip().startswith('{') and text_content.strip().endswith('}'):
260
+ # 可能是JSON
261
+ try:
262
+ import json
263
+ json.loads(text_content)
264
+ return "application/json"
265
+ except:
266
+ pass
267
+ elif text_content.strip().startswith('<') and text_content.strip().endswith('>'):
268
+ # 可能是XML/HTML
269
+ if '<!DOCTYPE html' in text_content.lower() or '<html' in text_content.lower():
270
+ return "text/html"
271
+ else:
272
+ return "application/xml"
273
+ # 对于普通文本内容,保持保守,除非明确包含文本标识
274
+ elif any(indicator in text_content.lower() for indicator in ['content-type:', 'charset=', '<!doctype', '<?xml']):
275
+ return "text/plain"
276
+ # 对于其他看起来像文本的内容,如果内容很短且看起来是人为构造的测试数据,不要改变默认行为
277
+ elif len(content) < 100 and any(test_word in text_content.lower() for test_word in ['test', 'fake', 'data', 'content']):
278
+ # 可能是测试数据,返回默认值保持兼容性
279
+ return "application/octet-stream"
280
+ except UnicodeDecodeError:
281
+ # 不是文本内容
282
+ pass
283
+
284
+ # 如果无法识别,返回默认的二进制类型
285
+ return "application/octet-stream"
286
+
86
287
  def _convert_file_info(self, proto_file: Any) -> File:
87
288
  """转换Proto文件信息为模型"""
88
289
  from ...utils.converter import timestamp_to_datetime
@@ -219,7 +219,7 @@ class SyncBlobService(BaseFileService):
219
219
  upload_url = self.http_uploader.start_resumable_session(
220
220
  url=upload_url_resp.upload_url,
221
221
  total_file_size=file_size,
222
- mine_type=mime_type,
222
+ mime_type=mime_type,
223
223
  )
224
224
 
225
225
  # 上传文件到对象存储
@@ -402,6 +402,7 @@ class SyncBlobService(BaseFileService):
402
402
  keep_original_filename: Optional[bool] = False,
403
403
  url: Optional[str] = None,
404
404
  file_name: Optional[str] = None,
405
+ mime_type: Optional[str] = None,
405
406
  request_id: Optional[str] = None,
406
407
  **metadata
407
408
  ) -> FileUploadResponse:
@@ -417,6 +418,7 @@ class SyncBlobService(BaseFileService):
417
418
  keep_original_filename: 是否保留原始文件名(默认False)
418
419
  url: 要下载并上传的URL(可选)
419
420
  file_name: 当使用url参数时指定的文件名(可选)
421
+ mime_type: MIME类型(可选,用于推断文件扩展名,特别适用于AI生成的字节数据)
420
422
  request_id: 请求ID(可选,如果不提供则自动生成)
421
423
  **metadata: 额外的元数据
422
424
 
@@ -426,6 +428,8 @@ class SyncBlobService(BaseFileService):
426
428
  Note:
427
429
  必须提供 file 或 url 参数之一
428
430
 
431
+ 当传入bytes或BinaryIO且未提供file_name时,建议提供mime_type以确保正确的文件扩展名推断
432
+
429
433
  Cache-Control 头在 GCS 直传模式(STREAM/RESUMABLE)下自动设置为 "public, max-age=86400"
430
434
  """
431
435
  # 参数验证:必须提供 file 或 url 之一
@@ -448,26 +452,38 @@ class SyncBlobService(BaseFileService):
448
452
  # 使用下载的内容作为file参数
449
453
  file = downloaded_content
450
454
 
451
- # 提取文件信息(bytes会返回默认的MIME类型,我们稍后会基于文件名重新计算)
452
- _, content, file_size, _, _, file_hash = self._extract_file_info(file)
455
+ # 基于文件名计算MIME类型
456
+ mime_type = get_file_mime_type(Path(file_name))
457
+
458
+ # 提取文件信息,传入MIME类型用于推断扩展名
459
+ _, content, file_size, _, _, file_hash = self._extract_file_info(file, mime_type)
453
460
 
454
461
  # file_name已经在上面设置了(要么是用户指定的,要么是从URL提取的)
455
462
  extracted_file_name = file_name
456
463
 
457
- # 基于文件名计算文件类型和MIME类型
464
+ # 基于文件名计算文件类型
458
465
  file_type = Path(extracted_file_name).suffix.lstrip('.').lower() if Path(
459
466
  extracted_file_name).suffix else 'dat'
460
- mime_type = get_file_mime_type(Path(extracted_file_name))
461
467
  else:
462
468
  # 解析文件参数,提取文件信息
463
- extracted_file_name, content, file_size, extract_mime_type, extract_file_type, file_hash = self._extract_file_info(
464
- file)
469
+ # 如果用户指定了文件名,先从文件名推断MIME类型,然后传给_extract_file_info
465
470
  if file_name:
471
+ # 用户指定了文件名,优先使用用户提供的MIME类型,否则从文件名推断
472
+ if mime_type:
473
+ file_name_mime_type = mime_type
474
+ else:
475
+ file_name_mime_type = get_file_mime_type(Path(file_name))
476
+ extracted_file_name, content, file_size, extract_mime_type, extract_file_type, file_hash = self._extract_file_info(
477
+ file, file_name_mime_type)
478
+ # 使用用户指定的文件名
466
479
  extracted_file_name = file_name
467
- mime_type = get_file_mime_type(file_name)
480
+ mime_type = file_name_mime_type
468
481
  file_type = Path(extracted_file_name).suffix.lstrip('.').lower() if Path(
469
482
  extracted_file_name).suffix else 'dat'
470
483
  else:
484
+ # 没有指定文件名,传入用户提供的MIME类型(如果有)
485
+ extracted_file_name, content, file_size, extract_mime_type, extract_file_type, file_hash = self._extract_file_info(
486
+ file, mime_type)
471
487
  mime_type = extract_mime_type
472
488
  file_type = extract_file_type
473
489
 
@@ -53,6 +53,11 @@ from .ip_detector import (
53
53
  UserIPContext,
54
54
  flask_auto_user_ip,
55
55
  )
56
+ from .mime_extension_mapper import (
57
+ MimeExtensionMapper,
58
+ get_extension_from_mime_type,
59
+ get_extension_from_mime_type_with_fallback,
60
+ )
56
61
 
57
62
  __all__ = [
58
63
  # 文件工具
@@ -101,4 +106,9 @@ __all__ = [
101
106
  "set_user_ip_extractor",
102
107
  "UserIPContext",
103
108
  "flask_auto_user_ip",
109
+
110
+ # MIME扩展名映射工具
111
+ "MimeExtensionMapper",
112
+ "get_extension_from_mime_type",
113
+ "get_extension_from_mime_type_with_fallback",
104
114
  ]
@@ -0,0 +1,158 @@
1
+ """
2
+ MIME类型到文件扩展名的映射工具
3
+ 用于从MIME类型推断正确的文件扩展名,特别适用于AI模型生成的文件
4
+ """
5
+ from typing import Optional, Dict
6
+
7
+
8
+ class MimeExtensionMapper:
9
+ """MIME类型到文件扩展名的映射器"""
10
+
11
+ # MIME类型到文件扩展名的映射表
12
+ MIME_TO_EXTENSION: Dict[str, str] = {
13
+ # 图片类型(AI生图常用)
14
+ 'image/jpeg': 'jpg',
15
+ 'image/jpg': 'jpg',
16
+ 'image/png': 'png',
17
+ 'image/gif': 'gif',
18
+ 'image/webp': 'webp',
19
+ 'image/bmp': 'bmp',
20
+ 'image/tiff': 'tiff',
21
+ 'image/svg+xml': 'svg',
22
+ 'image/x-icon': 'ico',
23
+
24
+ # 视频类型(AI生视频常用)
25
+ 'video/mp4': 'mp4',
26
+ 'video/mpeg': 'mpeg',
27
+ 'video/quicktime': 'mov',
28
+ 'video/x-msvideo': 'avi',
29
+ 'video/webm': 'webm',
30
+ 'video/x-flv': 'flv',
31
+ 'video/3gpp': '3gp',
32
+
33
+ # 音频类型(AI生音频常用)
34
+ 'audio/mpeg': 'mp3',
35
+ 'audio/wav': 'wav',
36
+ 'audio/x-wav': 'wav',
37
+ 'audio/ogg': 'ogg',
38
+ 'audio/mp4': 'm4a',
39
+ 'audio/aac': 'aac',
40
+ 'audio/flac': 'flac',
41
+ 'audio/x-ms-wma': 'wma',
42
+ 'audio/amr': 'amr',
43
+ 'audio/basic': 'au',
44
+ 'audio/aiff': 'aiff',
45
+
46
+ # 文档类型
47
+ 'application/pdf': 'pdf',
48
+ 'application/msword': 'doc',
49
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document': 'docx',
50
+ 'application/vnd.ms-excel': 'xls',
51
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': 'xlsx',
52
+ 'application/vnd.ms-powerpoint': 'ppt',
53
+ 'application/vnd.openxmlformats-officedocument.presentationml.presentation': 'pptx',
54
+ 'application/vnd.ms-office': 'doc', # MS Office通用格式
55
+ 'application/vnd.openxmlformats-officedocument': 'docx', # Office 2007+通用格式
56
+
57
+ # 文本类型
58
+ 'text/plain': 'txt',
59
+ 'text/html': 'html',
60
+ 'text/css': 'css',
61
+ 'text/javascript': 'js',
62
+ 'text/csv': 'csv',
63
+ 'application/json': 'json',
64
+ 'application/xml': 'xml',
65
+ 'text/xml': 'xml',
66
+
67
+ # 压缩文件类型
68
+ 'application/zip': 'zip',
69
+ 'application/x-rar-compressed': 'rar',
70
+ 'application/vnd.rar': 'rar',
71
+ 'application/x-7z-compressed': '7z',
72
+ 'application/x-tar': 'tar',
73
+ 'application/gzip': 'gz',
74
+ 'application/x-bzip2': 'bz2',
75
+
76
+ # 可执行文件类型
77
+ 'application/x-msdownload': 'exe',
78
+ 'application/x-executable': 'bin',
79
+ 'application/x-mach-binary': 'bin',
80
+
81
+ # 其他常用类型
82
+ 'application/octet-stream': 'dat', # 通用二进制文件,保持与现有逻辑一致
83
+ }
84
+
85
+ @classmethod
86
+ def get_extension_from_mime(cls, mime_type: str) -> Optional[str]:
87
+ """
88
+ 从MIME类型获取文件扩展名
89
+
90
+ Args:
91
+ mime_type: MIME类型字符串
92
+
93
+ Returns:
94
+ 文件扩展名(不包含点号),如果无法映射则返回None
95
+ """
96
+ if not mime_type:
97
+ return None
98
+
99
+ # 清理MIME类型(去除参数部分,如charset等)
100
+ mime_type = mime_type.split(';')[0].strip().lower()
101
+
102
+ return cls.MIME_TO_EXTENSION.get(mime_type)
103
+
104
+ @classmethod
105
+ def get_extension_with_fallback(cls, mime_type: str, fallback: str = 'dat') -> str:
106
+ """
107
+ 从MIME类型获取文件扩展名,如果无法映射则返回fallback
108
+
109
+ Args:
110
+ mime_type: MIME类型字符串
111
+ fallback: 默认扩展名,当无法从MIME类型推断时使用
112
+
113
+ Returns:
114
+ 文件扩展名(不包含点号)
115
+ """
116
+ extension = cls.get_extension_from_mime(mime_type)
117
+ return extension if extension is not None else fallback
118
+
119
+ @classmethod
120
+ def is_supported_mime(cls, mime_type: str) -> bool:
121
+ """
122
+ 检查是否支持该MIME类型的映射
123
+
124
+ Args:
125
+ mime_type: MIME类型字符串
126
+
127
+ Returns:
128
+ 是否支持该MIME类型
129
+ """
130
+ return cls.get_extension_from_mime(mime_type) is not None
131
+
132
+
133
+ # 便捷函数
134
+ def get_extension_from_mime_type(mime_type: str) -> Optional[str]:
135
+ """
136
+ 从MIME类型获取文件扩展名的便捷函数
137
+
138
+ Args:
139
+ mime_type: MIME类型字符串
140
+
141
+ Returns:
142
+ 文件扩展名(不包含点号),如果无法映射则返回None
143
+ """
144
+ return MimeExtensionMapper.get_extension_from_mime(mime_type)
145
+
146
+
147
+ def get_extension_from_mime_type_with_fallback(mime_type: str, fallback: str = 'dat') -> str:
148
+ """
149
+ 从MIME类型获取文件扩展名的便捷函数,带fallback
150
+
151
+ Args:
152
+ mime_type: MIME类型字符串
153
+ fallback: 默认扩展名
154
+
155
+ Returns:
156
+ 文件扩展名(不包含点号)
157
+ """
158
+ return MimeExtensionMapper.get_extension_with_fallback(mime_type, fallback)
@@ -37,21 +37,25 @@ class HttpUploader:
37
37
  self.retry_delay_seconds = retry_delay_seconds
38
38
 
39
39
  def start_resumable_session(self, url: str, total_file_size: Optional[int] = None,
40
- mine_type: Optional[str] = None) -> str:
40
+ mime_type: Optional[str] = None) -> str:
41
41
  """
42
42
  启动 GCS 的断点续传会话,返回 session URI。
43
43
 
44
44
  Args:
45
45
  url (str): GCS 预签名上传初始化 URL。
46
46
  total_file_size (Optional[int]): 文件总大小(可选)。
47
- mine_type (Optional[str]): 文件 Content-Type。
47
+ mime_type (Optional[str]): 文件 Content-Type。
48
48
  Returns:
49
49
  str: GCS 返回的会话 URI。
50
50
  """
51
51
  content_range_header = f"bytes */{total_file_size}" if total_file_size is not None else "bytes */*"
52
- headers = {"Content-Range": content_range_header, "x-goog-resumable": "start"}
53
- if mine_type is not None:
54
- headers["Content-Type"] = mine_type
52
+ headers = {
53
+ "Content-Range": content_range_header,
54
+ "x-goog-resumable": "start",
55
+ "Cache-Control": "public, max-age=86400" # 添加缺失的 cache-control 头部
56
+ }
57
+ if mime_type is not None:
58
+ headers["Content-Type"] = mime_type
55
59
 
56
60
  response = self._request("POST", url, headers=headers)
57
61
  if response.status_code in [200, 201]:
@@ -63,7 +67,7 @@ class HttpUploader:
63
67
  raise Exception(f"Failed to start resumable session: {response.status_code} - {response.text}")
64
68
 
65
69
  def check_uploaded_size(self, url: str, total_file_size: Optional[int] = None,
66
- mine_type: Optional[str] = None) -> int:
70
+ mime_type: Optional[str] = None) -> int:
67
71
  """
68
72
  查询 GCS 可恢复上传的当前进度(已上传的字节数)。
69
73
 
@@ -72,7 +76,7 @@ class HttpUploader:
72
76
  total_file_size (Optional[int]): 文件的总大小(可选)。
73
77
  如果已知,提供此参数可以帮助 GCS 进行更精确的判断。
74
78
  如果 GCS 响应 200 OK,且提供了此参数,则直接返回此值。
75
- mine_type (Optional[str]): 文件 Content-Type。
79
+ mime_type (Optional[str]): 文件 Content-Type。
76
80
  Returns:
77
81
  int: 已上传的字节数。
78
82
  - 如果上传已完成 (200 OK),返回 total_file_size。如果 total_file_size 未知,则返回 0(表示需要服务器端后续验证)。
@@ -81,9 +85,12 @@ class HttpUploader:
81
85
  """
82
86
  # 构建 Content-Range 头。如果知道总大小,提供它更准确。
83
87
  content_range_header = f"bytes */{total_file_size}" if total_file_size is not None else "bytes */*"
84
- headers = {"Content-Range": content_range_header}
85
- if mine_type is not None:
86
- headers["Content-Type"] = mine_type
88
+ headers = {
89
+ "Content-Range": content_range_header,
90
+ "Cache-Control": "public, max-age=86400" # 添加缺失的 cache-control 头部
91
+ }
92
+ if mime_type is not None:
93
+ headers["Content-Type"] = mime_type
87
94
 
88
95
  # 执行查询
89
96
  response = self._request("PUT", url, headers=headers)
@@ -139,7 +146,7 @@ class HttpUploader:
139
146
 
140
147
  # 若断点续传,查询 resume_from 位置
141
148
  if is_resume:
142
- resume_from = self.check_uploaded_size(url, final_total_size, mine_type=headers.get("Content-Type"))
149
+ resume_from = self.check_uploaded_size(url, final_total_size, mime_type=headers.get("Content-Type"))
143
150
  else:
144
151
  resume_from = 0
145
152
 
@@ -258,21 +265,25 @@ class AsyncHttpUploader:
258
265
  self.retry_delay_seconds = retry_delay_seconds
259
266
 
260
267
  async def start_resumable_session(self, url: str, total_file_size: Optional[int] = None,
261
- mine_type: Optional[str] = None) -> str:
268
+ mime_type: Optional[str] = None) -> str:
262
269
  """
263
270
  启动 GCS 的断点续传会话,返回 session URI。
264
271
 
265
272
  Args:
266
273
  url (str): GCS 预签名上传初始化 URL。
267
274
  total_file_size (Optional[int]): 文件总大小(可选)。
268
- mine_type (Optional[str]): 文件 Content-Type。
275
+ mime_type (Optional[str]): 文件 Content-Type。
269
276
  Returns:
270
277
  str: GCS 返回的会话 URI。
271
278
  """
272
279
  content_range_header = f"bytes */{total_file_size}" if total_file_size is not None else "bytes */*"
273
- headers = {"Content-Range": content_range_header, "x-goog-resumable": "start"}
274
- if mine_type is not None:
275
- headers["Content-Type"] = mine_type
280
+ headers = {
281
+ "Content-Range": content_range_header,
282
+ "x-goog-resumable": "start",
283
+ "Cache-Control": "public, max-age=86400" # 添加缺失的 cache-control 头部
284
+ }
285
+ if mime_type is not None:
286
+ headers["Content-Type"] = mime_type
276
287
 
277
288
  response = await self._request("POST", url, headers=headers)
278
289
  if response.status in [200, 201]:
@@ -285,7 +296,7 @@ class AsyncHttpUploader:
285
296
  raise Exception(f"Failed to start resumable session: {response.status} - {text}")
286
297
 
287
298
  async def check_uploaded_size(self, url: str, total_file_size: Optional[int] = None,
288
- mine_type: Optional[str] = None) -> int:
299
+ mime_type: Optional[str] = None) -> int:
289
300
  """
290
301
  查询 GCS 可恢复上传的当前进度(已上传的字节数)。
291
302
 
@@ -294,7 +305,7 @@ class AsyncHttpUploader:
294
305
  total_file_size (Optional[int]): 文件的总大小(可选)。
295
306
  如果已知,提供此参数可以帮助 GCS 进行更精确的判断。
296
307
  如果 GCS 响应 200 OK,且提供了此参数,则直接返回此值。
297
- mine_type (Optional[str]): 文件 Content-Type。
308
+ mime_type (Optional[str]): 文件 Content-Type。
298
309
  Returns:
299
310
  int: 已上传的字节数。
300
311
  - 如果上传已完成 (200 OK),返回 total_file_size。如果 total_file_size 未知,则返回 0(表示需要服务器端后续验证)。
@@ -303,9 +314,12 @@ class AsyncHttpUploader:
303
314
  """
304
315
  # 构建 Content-Range 头。如果知道总大小,提供它更准确。
305
316
  content_range_header = f"bytes */{total_file_size}" if total_file_size is not None else "bytes */*"
306
- headers = {"Content-Range": content_range_header}
307
- if mine_type is not None:
308
- headers["Content-Type"] = mine_type
317
+ headers = {
318
+ "Content-Range": content_range_header,
319
+ "Cache-Control": "public, max-age=86400" # 添加缺失的 cache-control 头部
320
+ }
321
+ if mime_type is not None:
322
+ headers["Content-Type"] = mime_type
309
323
 
310
324
  # 发送一个空的 PUT 请求来查询已上传字节数
311
325
  # timeout 应该根据网络情况和预期响应时间设置
@@ -364,7 +378,7 @@ class AsyncHttpUploader:
364
378
 
365
379
  # 如果是断点续传,查询服务端 resume_from
366
380
  if is_resume:
367
- resume_from = await self.check_uploaded_size(url, final_total_size, mine_type=headers.get("Content-Type"))
381
+ resume_from = await self.check_uploaded_size(url, final_total_size, mime_type=headers.get("Content-Type"))
368
382
  else:
369
383
  resume_from = 0
370
384
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tamar-file-hub-client
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: A Python SDK for gRPC-based file management system
5
5
  Home-page: https://github.com/Tamar-Edge-AI/file-hub-client
6
6
  Author: Oscar Ou
@@ -55,6 +55,8 @@ Dynamic: summary
55
55
  - 📂 **文件夹管理**:支持文件夹的创建、重命名、移动、删除
56
56
  - 🔗 **文件分享**:支持生成分享链接,设置访问权限和密码
57
57
  - 🔄 **多种上传方式**:支持直传、断点续传、客户端直传到对象存储
58
+ - 🎯 **智能MIME类型检测**:支持26+种主流文件格式的魔术字节检测和扩展名推断
59
+ - 🤖 **AI生成文件支持**:完美支持AI模型输出的字节数据+MIME类型组合上传
58
60
  - 🛡️ **错误处理**:完善的异常体系和错误重试机制
59
61
  - 🔒 **TLS/SSL 支持**:支持安全的加密连接,保护数据传输
60
62
  - 🔁 **自动重试**:连接失败时自动重试,提高可靠性
@@ -615,6 +617,34 @@ async with AsyncTamarFileHubClient() as client:
615
617
  file_info = await client.blobs.upload(f)
616
618
  ```
617
619
 
620
+ #### AI生成文件上传(新功能)
621
+
622
+ ```python
623
+ from file_hub_client import AsyncTamarFileHubClient
624
+
625
+ async with AsyncTamarFileHubClient() as client:
626
+ # AI模型返回的字节数据(图片、音频、视频等)
627
+ # 场景:AI生图模型返回WebP格式图片
628
+ ai_image_data = b"\x52\x49\x46\x46...." # WebP格式的字节数据
629
+
630
+ # 方式1:显式指定MIME类型(推荐用于AI生成内容)
631
+ file_info = await client.blobs.upload(
632
+ file=ai_image_data,
633
+ mime_type="image/webp" # 明确指定MIME类型
634
+ )
635
+ print(f"AI生成图片上传成功: {file_info.file.file_name}") # upload_xxx.webp
636
+
637
+ # 方式2:自动检测MIME类型(支持26+种格式)
638
+ file_info = await client.blobs.upload(file=ai_image_data)
639
+ # 系统会自动检测magic bytes并推断为WebP格式
640
+
641
+ # 支持的AI生成内容格式:
642
+ # 🖼️ 图片: PNG, JPEG, WebP, GIF, BMP等
643
+ # 🎵 音频: MP3, WAV, FLAC, AAC, OGG等
644
+ # 🎥 视频: MP4, MOV, WebM, AVI等
645
+ # 📄 文档: PDF, TXT等
646
+ ```
647
+
618
648
  #### 大文件上传(流式上传和断点续传)
619
649
 
620
650
  ```python
@@ -2327,6 +2357,11 @@ export TEST_USER_ID=test-user-456
2327
2357
  5. **错误处理**:妥善处理各种异常
2328
2358
  6. **资源清理**:使用 with 语句确保资源释放
2329
2359
  7. **并发控制**:合理使用并发避免服务器过载
2360
+ 8. **AI生成文件处理**:
2361
+ - ✅ **推荐**: 上传AI生成的字节数据时显式提供 `mime_type` 参数
2362
+ - ✅ **备选**: 依赖自动检测(支持26+种格式的magic bytes检测)
2363
+ - ✅ **兼容**: 无需修改现有代码,保持100%向下兼容
2364
+ - ⚠️ **注意**: 断点续传现已完全支持MIME类型传递
2330
2365
 
2331
2366
  ## 许可证
2332
2367
 
@@ -2338,6 +2373,21 @@ MIT License
2338
2373
 
2339
2374
  ## 更新日志
2340
2375
 
2376
+ ### v0.0.7 (2025-09)
2377
+ - **重大修复**: 修复MIME类型检测和文件扩展名推断功能
2378
+ - **断点续传修复**: 解决断点续传中的HTTP头部和签名验证问题
2379
+ - **AI生成文件支持**: 完善对AI生成内容(图片、视频、音频)的MIME类型处理
2380
+ - **新功能**: 新增 `mime_type` 参数支持,允许用户显式指定文件MIME类型
2381
+ - **魔术字节检测**: 增强内容检测,支持26+种主流文件格式的自动识别
2382
+ - **向下兼容**: 保持100%向下兼容,现有代码无需修改
2383
+ - **核心修复**:
2384
+ - 修复 `upload_helper.py` 中系统性拼写错误(`mine_type` → `mime_type`)
2385
+ - 修复断点续传缺失 `Cache-Control` 头部导致的400错误
2386
+ - 修复AI生成文件默认使用 `.dat` 扩展名的问题
2387
+ - 增强MIME类型到文件扩展名的映射(50+种MIME类型支持)
2388
+ - **文件格式支持**: PNG, JPEG, WebP, MP4, MP3, WAV, GIF, BMP, PDF等主流格式
2389
+ - **使用场景**: 完美支持AI模型输出的字节数据+MIME类型组合
2390
+
2341
2391
  ### v0.0.6 (2025-08)
2342
2392
  - 新增媒体文件压缩服务功能
2343
2393
  - 支持获取文件压缩状态 (get_compression_status)
@@ -29,10 +29,10 @@ file_hub_client/schemas/folder.py,sha256=D7UFsLCou-7CCXCQvuRObaBQEGmETsm1cgGOG1c
29
29
  file_hub_client/schemas/taple.py,sha256=LYsECsDbcioPXcvjRBcCEbh083iEB-eFCapJrGMJ8w0,17790
30
30
  file_hub_client/services/__init__.py,sha256=yh5mir0dKB_LtJMk2hTpQI9WSlguaxtVD2KomMnzxdM,514
31
31
  file_hub_client/services/file/__init__.py,sha256=aJygo_AzYk5NN-ezp-a9YlugJ82wVIP9e5e54fl0UsI,342
32
- file_hub_client/services/file/async_blob_service.py,sha256=AmiPstmjW3L42Qfsx_5Pp4zM8WCTCRqV-oTHlecTDb8,35428
32
+ file_hub_client/services/file/async_blob_service.py,sha256=J8u1DCaeGgqGHB6ss7QB3nDypFHUQEIlHB2rqkS1BHk,36461
33
33
  file_hub_client/services/file/async_file_service.py,sha256=lFMfnHKsbTIOpMAdFvER4B2JqVGz9SNzgxlmA1kY3Js,17197
34
- file_hub_client/services/file/base_file_service.py,sha256=wTxplrTk9klfwIHOPfTL0TQd6gX4nEmkYtIhpiZ3GVo,4791
35
- file_hub_client/services/file/sync_blob_service.py,sha256=qkVB9itCzpyCSDP-2uZ6TBI-ugDhhrWni2n3UR39q8M,35075
34
+ file_hub_client/services/file/base_file_service.py,sha256=21C-z8zU2ooZp31YBTOAzvUJKbC5zUQ7T0pSmFA8iRs,16144
35
+ file_hub_client/services/file/sync_blob_service.py,sha256=HArzV6EhNf1N5Fnl_BNSw_UU3tiha0nIT-qy1GMuIBw,36108
36
36
  file_hub_client/services/file/sync_file_service.py,sha256=3VEgFiWYfoWD4iZObJ8uylUtNmK08snXWUaVEosUPDo,16979
37
37
  file_hub_client/services/folder/__init__.py,sha256=vGbMOlNiEBdnWZB1xE74RJtoroI28hKHCWfQV1GqKQc,210
38
38
  file_hub_client/services/folder/async_folder_service.py,sha256=uFEmtW8EXYvaKYT2JCitWbdTGR1EtHlx_eBN5P3JUZg,7293
@@ -42,17 +42,18 @@ file_hub_client/services/taple/async_taple_service.py,sha256=XZqMBN69FSJ8-n0nyIf
42
42
  file_hub_client/services/taple/base_taple_service.py,sha256=m_RZjvlXD8CzsB4gtZWDKiL7TNYYtRuSeY4yrFDnGIs,15842
43
43
  file_hub_client/services/taple/idempotent_taple_mixin.py,sha256=lZeMF59dU-KVnc2p7epGrclidCv0nYg8TP_qVUezJ48,4295
44
44
  file_hub_client/services/taple/sync_taple_service.py,sha256=LIfpJjZjUPpee5zidrmiRD-tTXPouSlU4RpScy5kNZY,87392
45
- file_hub_client/utils/__init__.py,sha256=Chz4dEBbI2LyatrLLorWBx_kkNsg4LeFa-veUczlrPQ,2152
45
+ file_hub_client/utils/__init__.py,sha256=KsgwKa_VQgFCsxx1ZvN4MWNp3qSmFbVyeC2YewkPtzg,2458
46
46
  file_hub_client/utils/converter.py,sha256=TX69Bqk-PwNdv2hYQ07_tW6HQnQycHcJkGeRnskeF3A,3734
47
47
  file_hub_client/utils/download_helper.py,sha256=Mc8TQSWjHxIglJMkKlGy9r3LZe8e_Mwe6D3sfn6IOnY,13338
48
48
  file_hub_client/utils/file_utils.py,sha256=x4Oky_ZpmZ3TuLB7SjmCuzYiSqOyCuAMLe_2A6OjdFg,5537
49
49
  file_hub_client/utils/idempotency.py,sha256=zuXDlpAc9VTkTsarlnkO0VuJ77yON6j1TX0GvL9Xd9k,6029
50
50
  file_hub_client/utils/ip_detector.py,sha256=S1pHn5CSdLLOrIeIxU_qI7zA7bRW6pUOXVIbRuGHunc,6184
51
51
  file_hub_client/utils/logging.py,sha256=CZi-YUxQS5ss79pTdqMO_QFZCU3PxGEB6LKoJu21a0Q,12457
52
+ file_hub_client/utils/mime_extension_mapper.py,sha256=jZhgKJcp-xFVDtaFBgUYaGcY4-4anBBABI19pacJ1Ms,5275
52
53
  file_hub_client/utils/retry.py,sha256=A2MBdJCEY-Ks0guq8dd5wXX22sD27N30Qy3nQIW1B_s,18019
53
54
  file_hub_client/utils/smart_retry.py,sha256=RjBhyG6SNDfMXxNxKU_qayWDD6Ihp7ow6_BPjhgflM0,16465
54
- file_hub_client/utils/upload_helper.py,sha256=gEtn9OXVJiGUpVev_fqrDnRQ6AFiiP9goLzFrVpqXmU,22569
55
- tamar_file_hub_client-0.1.5.dist-info/METADATA,sha256=BEVTxshG7pnF1fzW7aBLt-cm-7szvrjI302TXKF9xkA,77692
56
- tamar_file_hub_client-0.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
57
- tamar_file_hub_client-0.1.5.dist-info/top_level.txt,sha256=9wcR7hyAJQdJg_kuH6WR3nmpJ8O-j8aJNK8f_kcFy6U,16
58
- tamar_file_hub_client-0.1.5.dist-info/RECORD,,
55
+ file_hub_client/utils/upload_helper.py,sha256=mOnb_FGn-JLS-1uiC_LvDMOH0Y9-xvVo9QAJxid-GvI,23071
56
+ tamar_file_hub_client-0.1.6.dist-info/METADATA,sha256=QaSIumQwrxDpcocngxhwVZNA48J09RoJ8CLF_nqebPk,80363
57
+ tamar_file_hub_client-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
58
+ tamar_file_hub_client-0.1.6.dist-info/top_level.txt,sha256=9wcR7hyAJQdJg_kuH6WR3nmpJ8O-j8aJNK8f_kcFy6U,16
59
+ tamar_file_hub_client-0.1.6.dist-info/RECORD,,