documente_shared 0.1.116__py3-none-any.whl → 0.1.117__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.

Potentially problematic release.


This version of documente_shared might be problematic. Click here for more details.

@@ -2,7 +2,7 @@ import base64
2
2
  from typing import Optional
3
3
  from dataclasses import dataclass
4
4
 
5
- from documente_shared.application.files import get_filename_from_path, remove_extension
5
+ from documente_shared.application.files import get_filename_from_path, remove_extension, remove_slash_from_path
6
6
  from documente_shared.domain.exceptions import InMemoryDocumentContentError
7
7
 
8
8
 
@@ -39,7 +39,7 @@ class InMemoryDocument(object):
39
39
 
40
40
  @property
41
41
  def file_key(self) -> Optional[str]:
42
- return self.file_name
42
+ return remove_slash_from_path(self.file_path)
43
43
 
44
44
  @property
45
45
  def is_procesable(self) -> bool:
@@ -52,6 +52,12 @@ class InMemoryDocument(object):
52
52
  "file_base64": self.file_base64,
53
53
  }
54
54
 
55
+ @property
56
+ def to_queue_dict(self) -> dict:
57
+ return {
58
+ "file_path": self.file_path,
59
+ }
60
+
55
61
  @classmethod
56
62
  def from_dict(cls, data: dict):
57
63
  file_bytes = data.get("file_bytes")
@@ -210,6 +210,27 @@ class ProcessingCaseItem(object):
210
210
  simple_dict = self.to_dict.copy()
211
211
  return simple_dict
212
212
 
213
+ @property
214
+ def to_queue_dict(self) -> dict:
215
+ queue_dict = self.to_dict.copy()
216
+ queue_dict["document"] = (
217
+ self.document.to_queue_dict
218
+ if self.document else None
219
+ )
220
+ queue_dict["processed_csv"] = (
221
+ self.processed_csv.to_queue_dict
222
+ if self.processed_csv else None
223
+ )
224
+ queue_dict["processed_xlsx"] = (
225
+ self.processed_xlsx.to_queue_dict
226
+ if self.processed_xlsx else None
227
+ )
228
+ queue_dict["processed_json"] = (
229
+ self.processed_json.to_queue_dict
230
+ if self.processed_json else None
231
+ )
232
+ return queue_dict
233
+
213
234
  @property
214
235
  def to_persist_dict(self) -> dict:
215
236
  simple_dict = self.to_dict.copy()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: documente_shared
3
- Version: 0.1.116
3
+ Version: 0.1.117
4
4
  Summary: Shared utilities for Documente AI projects
5
5
  License: MIT
6
6
  Author: Tech
@@ -16,10 +16,10 @@ documente_shared/domain/constants.py,sha256=NG5BGaXBr_FnzudjTRPxpDpyiSDdaB_PLCdl
16
16
  documente_shared/domain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  documente_shared/domain/entities/document.py,sha256=9X6XCE-zTm0q8ASBn-5TAvNwK4iO_70KHkcgyMSO9JI,13044
18
18
  documente_shared/domain/entities/document_metadata.py,sha256=ygyFIC5qwxlm8DUM5kvVFny9zJfPQS8vNLM2br5XsQ8,2353
19
- documente_shared/domain/entities/in_memory_document.py,sha256=BswTG1LjrQ8nP3pb0T2bSODPjJ2ud4ifbnYxRdFlIhY,2116
19
+ documente_shared/domain/entities/in_memory_document.py,sha256=8JfVxbgqxkU3QvsuWzjpSp-end6JfffYDUSvMvrQsps,2284
20
20
  documente_shared/domain/entities/processing_case.py,sha256=6_1J50jyb8XcOiXvGKDJxyLZ6we-RDOmdimalc3h7oM,6451
21
21
  documente_shared/domain/entities/processing_case_filters.py,sha256=harKyu7QEuL1bI_Z8_UxkVCMo5r9vHeNHyi_Ja07vjs,1953
22
- documente_shared/domain/entities/processing_case_item.py,sha256=KtH5JpJOcGLzVGQrcIGQY7CNWTwkm3_sriHM0ROF7SM,10255
22
+ documente_shared/domain/entities/processing_case_item.py,sha256=Kqozxf91C0SxOUl1ZbEU6_63Lz16mX4RfDqZ5Kf8mm4,10921
23
23
  documente_shared/domain/entities/processing_case_item_filters.py,sha256=R_AvDCB496Lww1qn2OwtltqULKE3IpcJB0ejnmRkg7Q,2009
24
24
  documente_shared/domain/entities/processing_documents.py,sha256=YYuTkdCNkqlO8cA0onJsZYtstxGt9M5NMuIO_87lB14,352
25
25
  documente_shared/domain/entities/processing_event.py,sha256=izdBXEz0TMNjxxZVjcM3YclzOv250JOV-amSpqmtQ9c,2180
@@ -55,6 +55,6 @@ documente_shared/infrastructure/services/http_scaling.py,sha256=cIo-61nfIwbtO86E
55
55
  documente_shared/infrastructure/sqs_queue.py,sha256=KZWeHZ9zmXmrxoNpOQX7GEdDhZ1knbPXgwSwFwJblGg,1504
56
56
  documente_shared/presentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
57
  documente_shared/presentation/presenters.py,sha256=GGAEwefmjCIVepsUA2oZOVLxXbhhiISPM0Jgt6dT6O0,423
58
- documente_shared-0.1.116.dist-info/METADATA,sha256=poNCU_jPxaMFEHD4f-tGVNMd9CNDAOW04CGg5A1yrV8,963
59
- documente_shared-0.1.116.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
60
- documente_shared-0.1.116.dist-info/RECORD,,
58
+ documente_shared-0.1.117.dist-info/METADATA,sha256=58ttP8rKDPpwFiwi_qYPn3lu64ytZ0HWsz7v-wQyY2g,963
59
+ documente_shared-0.1.117.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
60
+ documente_shared-0.1.117.dist-info/RECORD,,