factpulse 1.0.6__py3-none-any.whl → 2.0.2__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.
- factpulse/__init__.py +17 -23
- factpulse/api/__init__.py +0 -2
- factpulse/api/afnorpdppa_directory_service_api.py +4293 -64
- factpulse/api_client.py +1 -1
- factpulse/configuration.py +1 -1
- factpulse/exceptions.py +5 -2
- factpulse/models/__init__.py +8 -9
- factpulse/models/ligne_de_poste.py +6 -6
- factpulse/models/ligne_de_tva.py +6 -6
- factpulse/models/{montantapayer.py → montant_a_payer.py} +4 -4
- factpulse/models/{montantbaseht.py → montant_base_ht.py} +4 -4
- factpulse/models/montant_ht_total.py +3 -3
- factpulse/models/{montantttctotal.py → montant_ht_total1.py} +8 -8
- factpulse/models/{montant_total_montant_remise_globale_ttc.py → montant_remise_globale_ttc.py} +5 -5
- factpulse/models/montant_total.py +15 -15
- factpulse/models/{ligne_de_poste_montant_total_ligne_ht.py → montant_total_ligne_ht.py} +5 -5
- factpulse/models/montant_ttc_total.py +3 -3
- factpulse/models/{montanttva.py → montant_ttc_total1.py} +8 -8
- factpulse/models/montant_tva.py +3 -3
- factpulse/models/{montanttva1.py → montant_tva1.py} +4 -4
- factpulse/models/{montantunitaireht.py → montant_unitaire_ht.py} +4 -4
- factpulse/models/options_processing.py +4 -13
- factpulse/models/soumettre_facture_request.py +18 -6
- factpulse/models/statut_tache.py +2 -5
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/METADATA +2 -2
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/RECORD +29 -32
- factpulse/api/processing_endpoints_unifis_api.py +0 -592
- factpulse/api/signature_lectronique_api.py +0 -1358
- factpulse/models/montanthttotal.py +0 -139
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/WHEEL +0 -0
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/licenses/LICENSE +0 -0
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/top_level.txt +0 -0
|
@@ -20,6 +20,9 @@ import json
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from factpulse.models.chorus_pro_credentials import ChorusProCredentials
|
|
23
|
+
from factpulse.models.montant_ht_total1 import MontantHtTotal1
|
|
24
|
+
from factpulse.models.montant_ttc_total1 import MontantTtcTotal1
|
|
25
|
+
from factpulse.models.montant_tva1 import MontantTva1
|
|
23
26
|
from typing import Optional, Set
|
|
24
27
|
from typing_extensions import Self
|
|
25
28
|
|
|
@@ -34,9 +37,9 @@ class SoumettreFactureRequest(BaseModel):
|
|
|
34
37
|
id_structure_cpp: StrictInt = Field(description="ID Chorus Pro de la structure destinataire")
|
|
35
38
|
code_service: Optional[StrictStr] = None
|
|
36
39
|
numero_engagement: Optional[StrictStr] = None
|
|
37
|
-
montant_ht_total:
|
|
38
|
-
montant_tva:
|
|
39
|
-
montant_ttc_total:
|
|
40
|
+
montant_ht_total: MontantHtTotal1
|
|
41
|
+
montant_tva: MontantTva1
|
|
42
|
+
montant_ttc_total: MontantTtcTotal1
|
|
40
43
|
piece_jointe_principale_id: Optional[StrictInt] = None
|
|
41
44
|
piece_jointe_principale_designation: Optional[StrictStr] = None
|
|
42
45
|
commentaire: Optional[StrictStr] = None
|
|
@@ -86,6 +89,15 @@ class SoumettreFactureRequest(BaseModel):
|
|
|
86
89
|
# override the default output from pydantic by calling `to_dict()` of credentials
|
|
87
90
|
if self.credentials:
|
|
88
91
|
_dict['credentials'] = self.credentials.to_dict()
|
|
92
|
+
# override the default output from pydantic by calling `to_dict()` of montant_ht_total
|
|
93
|
+
if self.montant_ht_total:
|
|
94
|
+
_dict['montant_ht_total'] = self.montant_ht_total.to_dict()
|
|
95
|
+
# override the default output from pydantic by calling `to_dict()` of montant_tva
|
|
96
|
+
if self.montant_tva:
|
|
97
|
+
_dict['montant_tva'] = self.montant_tva.to_dict()
|
|
98
|
+
# override the default output from pydantic by calling `to_dict()` of montant_ttc_total
|
|
99
|
+
if self.montant_ttc_total:
|
|
100
|
+
_dict['montant_ttc_total'] = self.montant_ttc_total.to_dict()
|
|
89
101
|
# set to None if credentials (nullable) is None
|
|
90
102
|
# and model_fields_set contains the field
|
|
91
103
|
if self.credentials is None and "credentials" in self.model_fields_set:
|
|
@@ -150,9 +162,9 @@ class SoumettreFactureRequest(BaseModel):
|
|
|
150
162
|
"id_structure_cpp": obj.get("id_structure_cpp"),
|
|
151
163
|
"code_service": obj.get("code_service"),
|
|
152
164
|
"numero_engagement": obj.get("numero_engagement"),
|
|
153
|
-
"montant_ht_total": obj.get("montant_ht_total"),
|
|
154
|
-
"montant_tva": obj.get("montant_tva"),
|
|
155
|
-
"montant_ttc_total": obj.get("montant_ttc_total"),
|
|
165
|
+
"montant_ht_total": MontantHtTotal1.from_dict(obj["montant_ht_total"]) if obj.get("montant_ht_total") is not None else None,
|
|
166
|
+
"montant_tva": MontantTva1.from_dict(obj["montant_tva"]) if obj.get("montant_tva") is not None else None,
|
|
167
|
+
"montant_ttc_total": MontantTtcTotal1.from_dict(obj["montant_ttc_total"]) if obj.get("montant_ttc_total") is not None else None,
|
|
156
168
|
"piece_jointe_principale_id": obj.get("piece_jointe_principale_id"),
|
|
157
169
|
"piece_jointe_principale_designation": obj.get("piece_jointe_principale_designation"),
|
|
158
170
|
"commentaire": obj.get("commentaire"),
|
factpulse/models/statut_tache.py
CHANGED
|
@@ -28,7 +28,7 @@ class StatutTache(BaseModel):
|
|
|
28
28
|
""" # noqa: E501
|
|
29
29
|
id_tache: StrictStr
|
|
30
30
|
statut: StrictStr
|
|
31
|
-
resultat: Optional[Any] = None
|
|
31
|
+
resultat: Optional[Dict[str, Any]] = None
|
|
32
32
|
__properties: ClassVar[List[str]] = ["id_tache", "statut", "resultat"]
|
|
33
33
|
|
|
34
34
|
model_config = ConfigDict(
|
|
@@ -70,9 +70,6 @@ class StatutTache(BaseModel):
|
|
|
70
70
|
exclude=excluded_fields,
|
|
71
71
|
exclude_none=True,
|
|
72
72
|
)
|
|
73
|
-
# override the default output from pydantic by calling `to_dict()` of resultat
|
|
74
|
-
if self.resultat:
|
|
75
|
-
_dict['resultat'] = self.resultat.to_dict()
|
|
76
73
|
# set to None if resultat (nullable) is None
|
|
77
74
|
# and model_fields_set contains the field
|
|
78
75
|
if self.resultat is None and "resultat" in self.model_fields_set:
|
|
@@ -92,7 +89,7 @@ class StatutTache(BaseModel):
|
|
|
92
89
|
_obj = cls.model_validate({
|
|
93
90
|
"id_tache": obj.get("id_tache"),
|
|
94
91
|
"statut": obj.get("statut"),
|
|
95
|
-
"resultat":
|
|
92
|
+
"resultat": obj.get("resultat")
|
|
96
93
|
})
|
|
97
94
|
return _obj
|
|
98
95
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factpulse
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: API REST FactPulse
|
|
5
5
|
Home-page: https://github.com/factpulse/sdk-python
|
|
6
6
|
Author: OpenAPI Generator community
|
|
7
7
|
Author-email: OpenAPI Generator Community <team@openapitools.org>
|
|
8
|
-
Project-URL: Repository, https://github.com/
|
|
8
|
+
Project-URL: Repository, https://github.com/factpulse/sdk-python
|
|
9
9
|
Keywords: OpenAPI,OpenAPI-Generator,API REST FactPulse
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
factpulse/__init__.py,sha256=
|
|
2
|
-
factpulse/api_client.py,sha256=
|
|
1
|
+
factpulse/__init__.py,sha256=RO1G0rn9ruJ9dko4ZnsLQ1QaKb5NLaxgzXcqLaQ3NGU,20874
|
|
2
|
+
factpulse/api_client.py,sha256=ZLJbTLtKtYIgtaKjzI5HQ29bdfOvWin_JB7JxhgHs1k,32053
|
|
3
3
|
factpulse/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
factpulse/configuration.py,sha256=
|
|
5
|
-
factpulse/exceptions.py,sha256=
|
|
4
|
+
factpulse/configuration.py,sha256=5-7tVq9VB0d13fr_I-ROeeUunv7d-1xIFRNuoL2ZyZk,22733
|
|
5
|
+
factpulse/exceptions.py,sha256=EO1cR-s2rNBaYZs6fRj2wEp7XDKVaga21fJ6DEu_d5k,10836
|
|
6
6
|
factpulse/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
factpulse/rest.py,sha256=-DBsye71AnOsKGnvsXgkTqrGvgiBGZw2h0RqeQ9NopM,13756
|
|
8
|
-
factpulse/api/__init__.py,sha256=
|
|
8
|
+
factpulse/api/__init__.py,sha256=GE3NqOzI52p6mP6m2Rs1-D5S_VdA1mBTEPRfsiyMcfc,495
|
|
9
9
|
factpulse/api/afnorpdppa_api.py,sha256=KSFXtOw-2pnhgco3ez52XiapaOGJrZUjQL-E7C-Vhzg,15513
|
|
10
|
-
factpulse/api/afnorpdppa_directory_service_api.py,sha256
|
|
10
|
+
factpulse/api/afnorpdppa_directory_service_api.py,sha256=_9DZUqAfS9Aoc152TjO-Rt4H0VwbRhALkLvhu1QGn98,203813
|
|
11
11
|
factpulse/api/afnorpdppa_flow_service_api.py,sha256=AST0vycdd8LtTD5WJRhnda1PplvIMwoRK-GuyeaElP4,45752
|
|
12
12
|
factpulse/api/chorus_pro_api.py,sha256=PztHqCXNM5aK2R3as1L1Rst_8aLjeV4am9GT8hmj2GM,228360
|
|
13
|
-
factpulse/api/processing_endpoints_unifis_api.py,sha256=hxCZTn1n-_l9qFwbPT08ELj-2o2kRL2LVPa5h30pjPI,39727
|
|
14
13
|
factpulse/api/sant_api.py,sha256=7P3zorNzjUwX7TGuQ-ZcF5ZpKgFt3Ehkp8zo6s7z7Ns,14833
|
|
15
|
-
factpulse/api/signature_lectronique_api.py,sha256=9RJDOung102N8dcnhlV36UtNEFJXUnHwIqRBMhxADmM,73684
|
|
16
14
|
factpulse/api/traitement_facture_api.py,sha256=14IlgbL2NQ62LvpfEwPRVNz9BkKZNnKi_BlG7FUA8aU,225474
|
|
17
15
|
factpulse/api/utilisateur_api.py,sha256=t6nkc81LAp5MDaRl0VCrcnJdBuYJ0rODme2Bo3iJiY8,15598
|
|
18
|
-
factpulse/models/__init__.py,sha256=
|
|
16
|
+
factpulse/models/__init__.py,sha256=kFaSdZrtG3Hqri7nIclEgvyOLOkY-2MjneKyl-bfAu4,13101
|
|
19
17
|
factpulse/models/adresse_electronique.py,sha256=s0cVFjMmGxl8k6w2PF_PpHwIzFVFsYnxmYnrEI3oDuI,7203
|
|
20
18
|
factpulse/models/adresse_postale.py,sha256=3fEZnUb5yFDH06iVxfI8PjfV6gQisqz1mndkhtNhQUY,8534
|
|
21
19
|
factpulse/models/body_ajouter_fichier_api_v1_chorus_pro_transverses_ajouter_fichier_post.py,sha256=JNqo2TtZx9XQMlKebq2smaRQEY8AmME3GC_jpM_8VI0,8025
|
|
@@ -57,29 +55,28 @@ factpulse/models/generate_certificate_request.py,sha256=bQ_LS0wwkfCOAPqmMqA-R_w4
|
|
|
57
55
|
factpulse/models/generate_certificate_response.py,sha256=4jxa49-RI6krSrhlvMtLoGw5xCsnd6EB-Egnc47afUc,8730
|
|
58
56
|
factpulse/models/http_validation_error.py,sha256=NYWjynaDi45qXKGl7GgjDCrKFHkvz42TGVyUkvi1KZA,7292
|
|
59
57
|
factpulse/models/information_signature_api.py,sha256=fLWIdfZi-W09J_yObV0NsHwc81r-z6jAf2NBls9Ef1U,8607
|
|
60
|
-
factpulse/models/ligne_de_poste.py,sha256=
|
|
58
|
+
factpulse/models/ligne_de_poste.py,sha256=Vghs58VQ4CoOp2Jo-oZzafyBL82j7ok1bJtgVfCkEN4,13236
|
|
61
59
|
factpulse/models/ligne_de_poste_montant_remise_ht.py,sha256=mrPkP9nexM9EYCpJYitZDS0ArE1vFp_URMiiJJzTVyY,9464
|
|
62
|
-
factpulse/models/ligne_de_poste_montant_total_ligne_ht.py,sha256=EWQa3hZAUXkuM-6HMgN0i-0-bS1rDJbLxpbQGuMXZtg,9527
|
|
63
60
|
factpulse/models/ligne_de_poste_taux_tva_manuel.py,sha256=oBeBfyuwQfClVaaM7MNf8AriL9WTzLOnxX7t4H9P4Cc,9463
|
|
64
|
-
factpulse/models/ligne_de_tva.py,sha256=
|
|
61
|
+
factpulse/models/ligne_de_tva.py,sha256=AmQoqsvhVeiRbREkP50F6Bk7J31vnG9cf3MDC8UEVEM,8724
|
|
65
62
|
factpulse/models/mode_depot.py,sha256=76z-bp4sWqklPe3a2_F1nlmNhSGBfzyCSzkB6z6E0OM,5139
|
|
66
63
|
factpulse/models/mode_paiement.py,sha256=Bk7G26q6PcM0gx9hoRXbsxyCbnMZi-PwnP5Je8-rpX0,5158
|
|
67
|
-
factpulse/models/
|
|
68
|
-
factpulse/models/
|
|
64
|
+
factpulse/models/montant_a_payer.py,sha256=Xwh7i_GJRDOBs7rcuUSiuEPaSMg68a6qW2Y5rk6t5nQ,9285
|
|
65
|
+
factpulse/models/montant_base_ht.py,sha256=QAJssWH-Ery1JfX_ZnENAXlliSXvFxzGfLVVf5V43oo,9314
|
|
66
|
+
factpulse/models/montant_ht_total.py,sha256=ob4vYMQ8oc9ZjvnrzNCrX9Cd444gl_8_hWQgbWY_mI0,9290
|
|
67
|
+
factpulse/models/montant_ht_total1.py,sha256=aLrSnnbvbSIXN13aOVCGL4dwg5__6LYFTlPIpfUSHJI,9254
|
|
68
|
+
factpulse/models/montant_remise_globale_ttc.py,sha256=UfOOeHDcBBYG8d88vKU8cG01AIdNQ5tZf86XQPynIIY,9453
|
|
69
|
+
factpulse/models/montant_total.py,sha256=9HDelFfA8BAYJqICuRNl-1m_04i_Q26zBNOqB_xmjcc,10609
|
|
69
70
|
factpulse/models/montant_total_acompte.py,sha256=Bpdc9e2apguOGKJ4yWdleajajnRCp7yMy1EPSAM0SAI,9415
|
|
70
|
-
factpulse/models/
|
|
71
|
-
factpulse/models/montant_ttc_total.py,sha256=
|
|
72
|
-
factpulse/models/
|
|
73
|
-
factpulse/models/
|
|
74
|
-
factpulse/models/
|
|
75
|
-
factpulse/models/
|
|
76
|
-
factpulse/models/montantttctotal.py,sha256=uFdhpe812mvTBna6jImO318C1JCD5UFu1eMaouuM6k0,9296
|
|
77
|
-
factpulse/models/montanttva.py,sha256=JNvk5cfzeYRkPGUD5D8VNMWX2_giphPEudKlIzVrfWk,9288
|
|
78
|
-
factpulse/models/montanttva1.py,sha256=iJejBA8rSRyEZ0TuTt1vbaGoJnhyKROatJOpYgHgruM,9282
|
|
79
|
-
factpulse/models/montantunitaireht.py,sha256=zKmjRDh5mFayL-xnZXyhSJtfXX8Nl-bzyD9vWvwQjFw,9289
|
|
71
|
+
factpulse/models/montant_total_ligne_ht.py,sha256=88YpvIxX5Z2oO9-6_3s87NbdoImHewKHn3KadWUIleE,9467
|
|
72
|
+
factpulse/models/montant_ttc_total.py,sha256=MwuS1sJWV0w_DWZaMslFr2WGhUa1Dgi9KGcGeMjrXCk,9296
|
|
73
|
+
factpulse/models/montant_ttc_total1.py,sha256=4RV_Y6DUGYAemPAol9ncBwv51HZOX4VtX_nCZbvSy7k,9260
|
|
74
|
+
factpulse/models/montant_tva.py,sha256=YQWSa9C-W7IdcK7fw9oLCeBnbHm6c3PAu_6ijw-iUJU,9288
|
|
75
|
+
factpulse/models/montant_tva1.py,sha256=k4AspkSAHMlH7Zd7xhilLd-iJZxG717kaf0nF3u6hrs,9282
|
|
76
|
+
factpulse/models/montant_unitaire_ht.py,sha256=6AVhBX0oAfSyrNCDA6A91T_B027hFgeTft9QaKrG8D0,9289
|
|
80
77
|
factpulse/models/obtenir_id_chorus_pro_request.py,sha256=DHvPV8fjSQhT5dJVj0k71BPAx1Xk4KWclWS7iR0bytY,7857
|
|
81
78
|
factpulse/models/obtenir_id_chorus_pro_response.py,sha256=u5UQoBjwFZVa25AidevqusxfC_GsAkes8N2m0MpypRk,7655
|
|
82
|
-
factpulse/models/options_processing.py,sha256=
|
|
79
|
+
factpulse/models/options_processing.py,sha256=0tygxzMQnX5GK8BkLDgTip0qmqVU9MRcEOC6w37pl6k,7847
|
|
83
80
|
factpulse/models/parametres_signature.py,sha256=l9gTfXwXFhKnurFE8dSg2lYu8rfniTL40w_9eHX9CSU,10043
|
|
84
81
|
factpulse/models/parametres_structure.py,sha256=Z1DTxIHmXPIExbL-JNocP9kI5ABi9MpUh7yStJfZXYM,7746
|
|
85
82
|
factpulse/models/pdf_factur_x_info.py,sha256=Q04IhI7anQdMz7zVSfkCjxUX8lLNRx9SYxWkxg1EUdA,7200
|
|
@@ -109,11 +106,11 @@ factpulse/models/service_structure.py,sha256=U_dIxPP_U5_gam0JfZgfELk2cK0Rg0iuuQt
|
|
|
109
106
|
factpulse/models/signature_info.py,sha256=Sa7GBlspsBHue5jViFX8FNEQIerDwcD7OKEb5kgdQHI,7465
|
|
110
107
|
factpulse/models/soumettre_facture_complete_request.py,sha256=8vVafUQdr8ec0Oj7485oWl4LUS72qeTs1ZNPhuiEE3s,9207
|
|
111
108
|
factpulse/models/soumettre_facture_complete_response.py,sha256=1JWj4X4uREID1CJOqQva86XTXdpRUPzsYFHp8X7IWYg,10761
|
|
112
|
-
factpulse/models/soumettre_facture_request.py,sha256=
|
|
109
|
+
factpulse/models/soumettre_facture_request.py,sha256=Xs2QitoNS6VAD0N0tBM-SefHrKM0MLdy-tqozD3-HoA,12505
|
|
113
110
|
factpulse/models/soumettre_facture_response.py,sha256=T6TQ-KBAzdMHziG5e6WwU8eLia09GsilHFRVLUTVT20,7860
|
|
114
111
|
factpulse/models/statut_acquittement.py,sha256=cNkBtYp9OeMYFAHbmh61oKk0p_R-3InXUUAyoSONo_M,5085
|
|
115
112
|
factpulse/models/statut_facture.py,sha256=K1wSZJTDOOyc5I20CUsuzghiINDIpZqw3KGmPcHWBzU,7350
|
|
116
|
-
factpulse/models/statut_tache.py,sha256=
|
|
113
|
+
factpulse/models/statut_tache.py,sha256=nYXj8T9_1GVfnjDw5tInaZAF17gO5QqXoYFIJ-ZHVak,7215
|
|
117
114
|
factpulse/models/structure_info.py,sha256=_sX5l1kcVN-ADa8nFDejjuRZQQYGvKOtM-LyKHu2tnc,7572
|
|
118
115
|
factpulse/models/syntaxe_flux.py,sha256=88wiwONf4rl-5h7zrl1Tw4DmJ51Kvu_lxSU_4xb_gHE,5120
|
|
119
116
|
factpulse/models/tauxmanuel.py,sha256=MmDiQSuTjFguylWZgC3nH0xfucyKvx-dMTgtODqheGk,9286
|
|
@@ -124,8 +121,8 @@ factpulse/models/unite.py,sha256=Mx0LquEz7JVbj2DyW3bpYtHzEngouFdiOdV4ptH1c7E,514
|
|
|
124
121
|
factpulse/models/utilisateur.py,sha256=BX3uVqW1FTnuKv6MDy6qoIXeUM4tFbNd5j_cuHVBv9Q,9104
|
|
125
122
|
factpulse/models/validation_error.py,sha256=2cfjDa64uVR3TYblt7zlyw0oKSmUKPhd8-OP2D9x9Ow,7384
|
|
126
123
|
factpulse/models/validation_error_loc_inner.py,sha256=jPjvgrBw_B99TXnWCkv9rBW7r3vSfWCubfRGLCEnSSU,9178
|
|
127
|
-
factpulse-
|
|
128
|
-
factpulse-
|
|
129
|
-
factpulse-
|
|
130
|
-
factpulse-
|
|
131
|
-
factpulse-
|
|
124
|
+
factpulse-2.0.2.dist-info/licenses/LICENSE,sha256=TOREZ0FjfXTO1zqJjqfiuyBoj79tmdfVAJuWN_KV-i8,1066
|
|
125
|
+
factpulse-2.0.2.dist-info/METADATA,sha256=zFuwUsxMFWkkZrQOJgFLE4mfuJTYFuojJsyCwiboCqI,4893
|
|
126
|
+
factpulse-2.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
127
|
+
factpulse-2.0.2.dist-info/top_level.txt,sha256=tkwDxpNQ3BqfUwmZiiz5GMsJi-nUxbE7YBXy9koxwT0,10
|
|
128
|
+
factpulse-2.0.2.dist-info/RECORD,,
|