perceptic-core-client 0.42.0__py3-none-any.whl → 0.43.0__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 perceptic-core-client might be problematic. Click here for more details.

@@ -263,3 +263,4 @@ from perceptic_core_client.models.web_page_citation_metadata_api_dto import WebP
263
263
  from perceptic_core_client.models.worker_event import WorkerEvent as WorkerEvent
264
264
  from perceptic_core_client.models.worker_metadata_dto import WorkerMetadataDto as WorkerMetadataDto
265
265
  from perceptic_core_client.models.worker_run_event_rating_secondary_id import WorkerRunEventRatingSecondaryId as WorkerRunEventRatingSecondaryId
266
+
@@ -21,6 +21,7 @@ import mimetypes
21
21
  import os
22
22
  import re
23
23
  import tempfile
24
+ import uuid
24
25
 
25
26
  from urllib.parse import quote
26
27
  from typing import Tuple, Optional, List, Dict, Union
@@ -356,6 +357,8 @@ class ApiClient:
356
357
  return obj.get_secret_value()
357
358
  elif isinstance(obj, self.PRIMITIVE_TYPES):
358
359
  return obj
360
+ elif isinstance(obj, uuid.UUID):
361
+ return str(obj)
359
362
  elif isinstance(obj, list):
360
363
  return [
361
364
  self.sanitize_for_serialization(sub_obj) for sub_obj in obj
@@ -408,7 +411,7 @@ class ApiClient:
408
411
  data = json.loads(response_text)
409
412
  except ValueError:
410
413
  data = response_text
411
- elif re.match(r'^application/(json|[\w!#$&.+-^_]+\+json)\s*(;|$)', content_type, re.IGNORECASE):
414
+ elif re.match(r'^application/(json|[\w!#$&.+\-^_]+\+json)\s*(;|$)', content_type, re.IGNORECASE):
412
415
  if response_text == "":
413
416
  data = ""
414
417
  else:
@@ -457,13 +460,13 @@ class ApiClient:
457
460
 
458
461
  if klass in self.PRIMITIVE_TYPES:
459
462
  return self.__deserialize_primitive(data, klass)
460
- elif klass == object:
463
+ elif klass is object:
461
464
  return self.__deserialize_object(data)
462
- elif klass == datetime.date:
465
+ elif klass is datetime.date:
463
466
  return self.__deserialize_date(data)
464
- elif klass == datetime.datetime:
467
+ elif klass is datetime.datetime:
465
468
  return self.__deserialize_datetime(data)
466
- elif klass == decimal.Decimal:
469
+ elif klass is decimal.Decimal:
467
470
  return decimal.Decimal(data)
468
471
  elif issubclass(klass, Enum):
469
472
  return self.__deserialize_enum(data, klass)
@@ -12,7 +12,6 @@
12
12
  Do not edit the class manually.
13
13
  """ # noqa: E501
14
14
 
15
-
16
15
  # import models into model package
17
16
  from perceptic_core_client.models.action_type import ActionType
18
17
  from perceptic_core_client.models.add_tag_to_file_request import AddTagToFileRequest
@@ -113,3 +112,4 @@ from perceptic_core_client.models.web_page_citation_metadata_api_dto import WebP
113
112
  from perceptic_core_client.models.worker_event import WorkerEvent
114
113
  from perceptic_core_client.models.worker_metadata_dto import WorkerMetadataDto
115
114
  from perceptic_core_client.models.worker_run_event_rating_secondary_id import WorkerRunEventRatingSecondaryId
115
+
@@ -118,21 +118,6 @@ class CitationMetadataApiDto(BaseModel):
118
118
  instance.actual_instance = WebPageCitationMetadataApiDto.from_json(json_str)
119
119
  return instance
120
120
 
121
- # check if data type is `AnnotatedImageCitationMetadataApiDto`
122
- if _data_type == "AnnotatedImageCitationMetadataApiDto":
123
- instance.actual_instance = AnnotatedImageCitationMetadataApiDto.from_json(json_str)
124
- return instance
125
-
126
- # check if data type is `HighlightedTextCitationMetadataApiDto`
127
- if _data_type == "HighlightedTextCitationMetadataApiDto":
128
- instance.actual_instance = HighlightedTextCitationMetadataApiDto.from_json(json_str)
129
- return instance
130
-
131
- # check if data type is `WebPageCitationMetadataApiDto`
132
- if _data_type == "WebPageCitationMetadataApiDto":
133
- instance.actual_instance = WebPageCitationMetadataApiDto.from_json(json_str)
134
- return instance
135
-
136
121
  # deserialize data into HighlightedTextCitationMetadataApiDto
137
122
  try:
138
123
  instance.actual_instance = HighlightedTextCitationMetadataApiDto.from_json(json_str)
@@ -105,16 +105,6 @@ class ConnectionSettingsApiDto(BaseModel):
105
105
  instance.actual_instance = S3ConnectionSettingsApiDto.from_json(json_str)
106
106
  return instance
107
107
 
108
- # check if data type is `AzureBlobConnectionSettingsApiDto`
109
- if _data_type == "AzureBlobConnectionSettingsApiDto":
110
- instance.actual_instance = AzureBlobConnectionSettingsApiDto.from_json(json_str)
111
- return instance
112
-
113
- # check if data type is `S3ConnectionSettingsApiDto`
114
- if _data_type == "S3ConnectionSettingsApiDto":
115
- instance.actual_instance = S3ConnectionSettingsApiDto.from_json(json_str)
116
- return instance
117
-
118
108
  # deserialize data into S3ConnectionSettingsApiDto
119
109
  try:
120
110
  instance.actual_instance = S3ConnectionSettingsApiDto.from_json(json_str)
@@ -105,16 +105,6 @@ class FileSystemApiDto(BaseModel):
105
105
  instance.actual_instance = RemoteFileSystemApiDto.from_json(json_str)
106
106
  return instance
107
107
 
108
- # check if data type is `ManagedFileSystemApiDto`
109
- if _data_type == "ManagedFileSystemApiDto":
110
- instance.actual_instance = ManagedFileSystemApiDto.from_json(json_str)
111
- return instance
112
-
113
- # check if data type is `RemoteFileSystemApiDto`
114
- if _data_type == "RemoteFileSystemApiDto":
115
- instance.actual_instance = RemoteFileSystemApiDto.from_json(json_str)
116
- return instance
117
-
118
108
  # deserialize data into RemoteFileSystemApiDto
119
109
  try:
120
110
  instance.actual_instance = RemoteFileSystemApiDto.from_json(json_str)
@@ -105,16 +105,6 @@ class FileSystemRootMetadataApiDto(BaseModel):
105
105
  instance.actual_instance = S3FileSystemRootMetadataApiDto.from_json(json_str)
106
106
  return instance
107
107
 
108
- # check if data type is `AzureBlobFileSystemRootMetadataApiDto`
109
- if _data_type == "AzureBlobFileSystemRootMetadataApiDto":
110
- instance.actual_instance = AzureBlobFileSystemRootMetadataApiDto.from_json(json_str)
111
- return instance
112
-
113
- # check if data type is `S3FileSystemRootMetadataApiDto`
114
- if _data_type == "S3FileSystemRootMetadataApiDto":
115
- instance.actual_instance = S3FileSystemRootMetadataApiDto.from_json(json_str)
116
- return instance
117
-
118
108
  # deserialize data into AzureBlobFileSystemRootMetadataApiDto
119
109
  try:
120
110
  instance.actual_instance = AzureBlobFileSystemRootMetadataApiDto.from_json(json_str)
@@ -17,9 +17,9 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional, Union
22
- from typing_extensions import Annotated
22
+ from uuid import UUID
23
23
  from perceptic_core_client.models.worker_run_event_rating_secondary_id import WorkerRunEventRatingSecondaryId
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
@@ -28,7 +28,7 @@ class RatingDtoWorkerRunEventRatingSecondaryId(BaseModel):
28
28
  """
29
29
  RatingDtoWorkerRunEventRatingSecondaryId
30
30
  """ # noqa: E501
31
- id: Optional[Annotated[str, Field(strict=True)]] = None
31
+ id: Optional[UUID] = None
32
32
  grade: Optional[Union[StrictFloat, StrictInt]] = None
33
33
  written_feedback: Optional[StrictStr] = Field(default=None, alias="writtenFeedback")
34
34
  secondary_id: Optional[WorkerRunEventRatingSecondaryId] = Field(default=None, alias="secondaryId")
@@ -118,21 +118,6 @@ class ScheduleTrigger(BaseModel):
118
118
  instance.actual_instance = OnUploadTrigger.from_json(json_str)
119
119
  return instance
120
120
 
121
- # check if data type is `CronTrigger`
122
- if _data_type == "CronTrigger":
123
- instance.actual_instance = CronTrigger.from_json(json_str)
124
- return instance
125
-
126
- # check if data type is `IntervalTrigger`
127
- if _data_type == "IntervalTrigger":
128
- instance.actual_instance = IntervalTrigger.from_json(json_str)
129
- return instance
130
-
131
- # check if data type is `OnUploadTrigger`
132
- if _data_type == "OnUploadTrigger":
133
- instance.actual_instance = OnUploadTrigger.from_json(json_str)
134
- return instance
135
-
136
121
  # deserialize data into OnUploadTrigger
137
122
  try:
138
123
  instance.actual_instance = OnUploadTrigger.from_json(json_str)
@@ -118,21 +118,6 @@ class WorkerEvent(BaseModel):
118
118
  instance.actual_instance = ProgressEvent.from_json(json_str)
119
119
  return instance
120
120
 
121
- # check if data type is `InfoEvent`
122
- if _data_type == "InfoEvent":
123
- instance.actual_instance = InfoEvent.from_json(json_str)
124
- return instance
125
-
126
- # check if data type is `ProgressEvent`
127
- if _data_type == "ProgressEvent":
128
- instance.actual_instance = ProgressEvent.from_json(json_str)
129
- return instance
130
-
131
- # check if data type is `RequestForInputEvent`
132
- if _data_type == "RequestForInputEvent":
133
- instance.actual_instance = RequestForInputEvent.from_json(json_str)
134
- return instance
135
-
136
121
  # deserialize data into InfoEvent
137
122
  try:
138
123
  instance.actual_instance = InfoEvent.from_json(json_str)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: perceptic-core-client
3
- Version: 0.42.0
3
+ Version: 0.43.0
4
4
  Summary: Python client for Perceptic Core
5
5
  Author-email: Your Name <you@example.com>
6
6
  License: Proprietary
@@ -1,5 +1,5 @@
1
- perceptic_core_client/__init__.py,sha256=zvdwhree5bLOQykTCSOIz13yXX3gMPLpikO1U_GI3pc,17017
2
- perceptic_core_client/api_client.py,sha256=nOfdGgBUjN8FflVMszUWlmGsfOJL2pnz_zTjT9WQsB8,27777
1
+ perceptic_core_client/__init__.py,sha256=mtmMO_z8KGkixvFCNGyr-wI-VTDJUvn5VvHI4dm4JHc,17018
2
+ perceptic_core_client/api_client.py,sha256=S6yOS2QP2CsJkeB4GkHqq2zDv_7zaXJzVC9y1zXKryE,27859
3
3
  perceptic_core_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
4
  perceptic_core_client/configuration.py,sha256=SQSH2SmsosPzZWLBDCL__iXOYakIfsIi23fdu-TUu74,17975
5
5
  perceptic_core_client/exceptions.py,sha256=mAFFNIdOi4nl0A5oxKKACRbtA1uyMozS7dEBLGHUggs,6498
@@ -16,7 +16,7 @@ perceptic_core_client/api/tag_resource_api.py,sha256=EG-KWmYn1JldWHrNMI4U5gME-Dz
16
16
  perceptic_core_client/api/uri_resource_api.py,sha256=37kkpiZQyxd-184Zql6s5J714FJSIrT0o4Wr9rDMxe8,114212
17
17
  perceptic_core_client/api/user_resource_api.py,sha256=HDkfUz8gHi1sSwhSKD2yrsbXiE3Q9ZuEB_dlVhEc07o,20686
18
18
  perceptic_core_client/api/worker_resource_api.py,sha256=gNDyOuMO8vk8fesDckH9OruHq59d1J9bc9gm3cvDLVw,99177
19
- perceptic_core_client/models/__init__.py,sha256=NxyF03C5ihzpPHQRvISb88J2c7I4g5EhAdCjSUAkNn4,9149
19
+ perceptic_core_client/models/__init__.py,sha256=gNdRzFyyYMziX-Uf4FjJKwOrxN3jH6TDoPQVlMcXMw8,9149
20
20
  perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
21
21
  perceptic_core_client/models/add_tag_to_file_request.py,sha256=-4lKwOdDAuxjjWc7Sqgy9cvdif05AGIrrgUi-dl4NBk,2593
22
22
  perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
@@ -26,9 +26,9 @@ perceptic_core_client/models/biotech_analysis_image_annotated_citation_api_dto.p
26
26
  perceptic_core_client/models/bulk_get_citations_request.py,sha256=G7uvNDph40BP6a-2rebEIVUPM2MAmZ8fs19I-W9URX4,2564
27
27
  perceptic_core_client/models/bulk_get_citations_response.py,sha256=5-Xo_e6k547d8XYKjfVwGzxAjQAj0LXY3pVjCcp6Ohg,3091
28
28
  perceptic_core_client/models/citation_api_dto.py,sha256=ujpSSnWtayR_MyaSID6bv6MVJA4GPIJjvA-0XDllUT4,3537
29
- perceptic_core_client/models/citation_metadata_api_dto.py,sha256=rc1iuvJ8jTFreflXQNtuzxNx4YoVqvsbPONlLaYFQc0,9103
29
+ perceptic_core_client/models/citation_metadata_api_dto.py,sha256=8xc1OpYWgPvQI--TrVgny04DeW7It7oxaDzaVuANW8c,8338
30
30
  perceptic_core_client/models/connection_api_dto.py,sha256=dupy0A6cgpVCNP4-Q572SlvEi7u9lYhVCAc8LmAYB-g,3304
31
- perceptic_core_client/models/connection_settings_api_dto.py,sha256=-WR7nm_nBRcD8q33hCTaNiltLVD15qzqZhA1gOCZ22Q,7185
31
+ perceptic_core_client/models/connection_settings_api_dto.py,sha256=zTrH019Lns63gYziglLsUdwfMmzcPmFwZdgXV-0cEN8,6702
32
32
  perceptic_core_client/models/create_connection_request.py,sha256=SWFENVJVMOar9P_SMCsfw1efdSFogKJ_wSvlHJ3eSmE,3125
33
33
  perceptic_core_client/models/create_connection_response.py,sha256=a89PYs-gW68WJiJXqDXQUdv3Va8O5MzCKXFnOpMCD5Y,2648
34
34
  perceptic_core_client/models/create_file_system_response.py,sha256=264-WVVkMeKq1sTwgsVd27z48TuG-2DPW26-tqdWaK0,2649
@@ -44,8 +44,8 @@ perceptic_core_client/models/create_tag_request.py,sha256=hEqBYkuu6wBE86fOgEK-cD
44
44
  perceptic_core_client/models/create_tag_response.py,sha256=ksuuXOjnN4K0bwurqaKkF2-GGj_BVP0Ir2FRGwF32YQ,2585
45
45
  perceptic_core_client/models/cron_trigger.py,sha256=fwK_w7YZwEBQ5DoEO7ewnsOxD5AEuKtLltnuUPPlGuw,3483
46
46
  perceptic_core_client/models/execution_trigger_reason.py,sha256=iWU5xJSsmHXH2blLOEdybRQBBvP6PdcKsHQyzLlArMU,822
47
- perceptic_core_client/models/file_system_api_dto.py,sha256=j21xSms1nVxnER_RZ_2EjrZKVQRWiASmrUAirLOqxYk,6835
48
- perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=OwMBChDo62Wi3yN_9WfWT4jIgLdwhkh44jDNJG86nCo,7397
47
+ perceptic_core_client/models/file_system_api_dto.py,sha256=URluqy1k0UNoJtS9h8Qsly60j_UB6NXBwR7lHYyjDEQ,6394
48
+ perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=BJ2umnKs6ULhkeWxo67ED6ThlkEgv2Vtqu9K6Q5p0j8,6890
49
49
  perceptic_core_client/models/get_citation_output_uri_response.py,sha256=s9SLm0nJfr543rvhkfVPtjYM3JtZaSVCDxoAECU8o9s,2644
50
50
  perceptic_core_client/models/get_connection_response.py,sha256=8BoDWakNraL2I01YqIMvuF6y8hE586g76LnhBWSdyiU,2899
51
51
  perceptic_core_client/models/get_indexer_response.py,sha256=_tnkUDC4ZGBvly6n4zDyQfivf31pSW4x3LSZeA0SI_s,2835
@@ -90,7 +90,7 @@ perceptic_core_client/models/post_run_event_rating_response.py,sha256=fBjdkM5t9l
90
90
  perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_NL2Mlf9YyKUBzk_kl9o26COtW8,2525
91
91
  perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
92
92
  perceptic_core_client/models/progress_event.py,sha256=5iAGv-0wpu39PDBG1062TEXMQkjf7PIxo6El9hUnPOo,2903
93
- perceptic_core_client/models/rating_dto_worker_run_event_rating_secondary_id.py,sha256=O_dzPCAXTXiEmOQyxWl07jphQ6bAB8xfrDDdvtfR-tU,4025
93
+ perceptic_core_client/models/rating_dto_worker_run_event_rating_secondary_id.py,sha256=HMX4J1yJER97_zSBq84FXDRKNKT5xpjB3mJJ8EslyE8,3960
94
94
  perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
95
95
  perceptic_core_client/models/remove_tag_from_file_request.py,sha256=u_liteh8V2JVMOeBYuTW6rpxaasZhFUESn7L_ZBcCMQ,2613
96
96
  perceptic_core_client/models/request_for_input_event.py,sha256=-jJjXA_17GqUWupDb_kaOag7ZXyQBsl-BsCH9XhJifY,3722
@@ -102,7 +102,7 @@ perceptic_core_client/models/run_status_dto.py,sha256=os_1PoUqwR2-omdPf3hTEKNPVK
102
102
  perceptic_core_client/models/s3_connection_settings_api_dto.py,sha256=-a13ZHx4WR0lEHC-k-vkBEG2xddKYYlvLMUmdlWt4LA,4188
103
103
  perceptic_core_client/models/s3_file_system_root_metadata_api_dto.py,sha256=UXf73tDPxpAKeudvR1sOmd0PBvhtQGemElPT-KpK72c,2739
104
104
  perceptic_core_client/models/schedule_execution_dto.py,sha256=jqdmalwpmEJEjQykku0fj9XIfNZl7Hzyhzlxd5H8XxU,3673
105
- perceptic_core_client/models/schedule_trigger.py,sha256=SCESwU6AAVbGmHj35zyMJNoqN38Eo5awUGVAHi_VH0U,7555
105
+ perceptic_core_client/models/schedule_trigger.py,sha256=OX0ADKR8iDCD2RFtGZdENoO-vN_ZoUZ9n6lWrz0JAok,6973
106
106
  perceptic_core_client/models/schema_location.py,sha256=ONpXyUVxP7dqw_vlbpZEKLCYEBWLA0rSf9WfydDDPsA,2803
107
107
  perceptic_core_client/models/start_execution_response.py,sha256=6_LKEKrF_8wZcrwC5CdZ0_-BFlj1HgTgLqTo1NgcbvI,2845
108
108
  perceptic_core_client/models/tag_info.py,sha256=brVBqGqV5vafpgDBFhzzjObjqnd8FYGK6CmnI7_8lW4,2815
@@ -113,7 +113,7 @@ perceptic_core_client/models/update_tag_response.py,sha256=AC8amL5bmPNVDuW8Nyqcj
113
113
  perceptic_core_client/models/upload_file_to_managed_file_system_response.py,sha256=JvwpcS4IZTpkgcYmSNQX67Ex8O0OfPLygsaGIUTFy9g,2691
114
114
  perceptic_core_client/models/user_info_response.py,sha256=S9NNuv4RWsInlg8edk4nsl6srv6Sur3eZvpni5Tvo2g,4051
115
115
  perceptic_core_client/models/web_page_citation_metadata_api_dto.py,sha256=9gWNtO9E8V7by35I4VLfFAEW7ACFRaP5HyD4nxTzIkU,2692
116
- perceptic_core_client/models/worker_event.py,sha256=QztjNPMatUO4PLpSbOguRA9Ce4YzybIplB2m4p4kEZw,7543
116
+ perceptic_core_client/models/worker_event.py,sha256=nT2AMHtq3evx7TS_8KWQ4kp5kuJ57Ki_uuePEpxEicQ,6958
117
117
  perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
118
118
  perceptic_core_client/models/worker_run_event_rating_secondary_id.py,sha256=Uk2ZlYK58dReYP-KR1T1BGyS4E4gt-H4cgkWKkktjp4,2726
119
119
  perceptic_core_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -227,7 +227,7 @@ perceptic_core_client/test/test_worker_event.py,sha256=Kj9yWYB3r_a2GKlvhnqAmlZYz
227
227
  perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
228
228
  perceptic_core_client/test/test_worker_resource_api.py,sha256=8mfcVQrYQ3ziSyhRuC2IPA9UvkvcOMgrqdGjcuOAkf0,2402
229
229
  perceptic_core_client/test/test_worker_run_event_rating_secondary_id.py,sha256=yBAKncG29Z-cwfS9lCgS1Uu0N7-cVo5zpMDQUUlt-iU,1687
230
- perceptic_core_client-0.42.0.dist-info/METADATA,sha256=aCBm_UefwOE9C0fm-E6zvNgXw72SykwgQRq2hTnKIS0,3605
231
- perceptic_core_client-0.42.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
232
- perceptic_core_client-0.42.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
233
- perceptic_core_client-0.42.0.dist-info/RECORD,,
230
+ perceptic_core_client-0.43.0.dist-info/METADATA,sha256=-dX9dGfr68CrEGtzMfn1qAdmKNpZhkbMSaDC8V0nh8s,3605
231
+ perceptic_core_client-0.43.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
232
+ perceptic_core_client-0.43.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
233
+ perceptic_core_client-0.43.0.dist-info/RECORD,,