ipiranga-inovai-project-lib 1.3__py3-none-any.whl → 1.5__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.
inovai/enums.py CHANGED
@@ -43,3 +43,6 @@ class TaxType:
43
43
  ICMSMONOPROP = "ICMSMONOPROP"
44
44
  ICMSMONODIFER = "ICMSMONODIFER"
45
45
  ICMSMONORET = "ICMSMONORET"
46
+ CSLL = "CSLL"
47
+ IRRF = "IRRF"
48
+
@@ -0,0 +1,129 @@
1
+ class NFeDadosAtivos:
2
+ codBem: str
3
+ dataOperacao: str
4
+ anoRegistroOperacao: str
5
+ descricao: str
6
+ valorCreditoICMS: str
7
+ valorCredDifAliq: str
8
+ tipoBem: str
9
+ vidaUtil: str
10
+ descricaoFuncao: str
11
+ indUtilizacaoBem: str
12
+ indNaturezaBem: str
13
+ numMesesEstorno: str
14
+ codContaAnaliticaBem: str
15
+ identSituacaoBem: str
16
+ indOpGeradoraCredito: str
17
+ codGrupoBem: str
18
+ descGrupoBem: str
19
+ dataLancamento: str
20
+ indOrigemCredito: str
21
+ indUtilizacaoBem: str
22
+ valorDepreciAmortiza: str
23
+ valorBaseCreditoPisPasep: str
24
+ indNumeroParcela: str
25
+ codSituacaoPis: str
26
+ valorBasePis: str
27
+ aliquotaPis: str
28
+ valorPis: str
29
+ codSituacaoCofins: str
30
+ valorBaseCofins: str
31
+ aliquotaCofins: str
32
+ valorCofins: str
33
+
34
+ def __init__(self, **kwargs):
35
+ for key, value in kwargs.items():
36
+ setattr(self, key, value)
37
+
38
+ def get_codBem(self):
39
+ return self.codBem
40
+
41
+ def get_dataOperacao(self):
42
+ return self.dataOperacao
43
+
44
+ def get_anoRegistroOperacao(self):
45
+ return self.anoRegistroOperacao
46
+
47
+ def get_descricao(self):
48
+ return self.descricao
49
+
50
+ def get_valorCreditoICMS(self):
51
+ return self.valorCreditoICMS
52
+
53
+ def get_valorCredDifAliq(self):
54
+ return self.valorCredDifAliq
55
+
56
+ def get_tipoBem(self):
57
+ return self.tipoBem
58
+
59
+ def get_vidaUtil(self):
60
+ return self.vidaUtil
61
+
62
+ def get_descricaoFuncao(self):
63
+ return self.descricaoFuncao
64
+
65
+ def get_indUtilizacaoBem(self):
66
+ return self.indUtilizacaoBem
67
+
68
+ def get_indNaturezaBem(self):
69
+ return self.indNaturezaBem
70
+
71
+ def get_numMesesEstorno(self):
72
+ return self.numMesesEstorno
73
+
74
+ def get_codContaAnaliticaBem(self):
75
+ return self.codContaAnaliticaBem
76
+
77
+ def get_identSituacaoBem(self):
78
+ return self.identSituacaoBem
79
+
80
+ def set_indOpGeradoraCredito(self):
81
+ self.indOpGeradoraCredito
82
+
83
+ def set_codGrupoBem(self):
84
+ self.codGrupoBem
85
+
86
+ def set_descGrupoBem(self):
87
+ self.descGrupoBem
88
+
89
+ def set_dataLancamento(self):
90
+ self.dataLancamento
91
+
92
+ def set_indOrigemCredito(self):
93
+ self.indOrigemCredito
94
+
95
+ def set_indUtilizacaoBem(self):
96
+ self.indUtilizacaoBem
97
+
98
+ def set_valorDepreciAmortiza(self):
99
+ self.valorDepreciAmortiza
100
+
101
+ def set_valorBaseCreditoPisPasep(self):
102
+ self.valorBaseCreditoPisPasep
103
+
104
+ def set_indNumeroParcela(self):
105
+ self.indNumeroParcela
106
+
107
+ def set_codSituacaoPis(self):
108
+ self.codSituacaoPis
109
+
110
+ def set_valorBasePis(self):
111
+ self.valorBasePis
112
+
113
+ def set_aliquotaPis(self):
114
+ self.aliquotaPis
115
+
116
+ def set_valorPis(self):
117
+ self.valorPis
118
+
119
+ def set_codSituacaoCofins(self):
120
+ self.codSituacaoCofins
121
+
122
+ def set_valorBaseCofins(self):
123
+ self.valorBaseCofins
124
+
125
+ def set_aliquotaCofins(self):
126
+ self.aliquotaCofins
127
+
128
+ def set_valorCofins(self):
129
+ self.valorCofins
inovai/models/NFeItem.py CHANGED
@@ -1,3 +1,4 @@
1
+ from inovai.models.NFeDadosAtivos import NFeDadosAtivos
1
2
  from inovai.models.NFeDocImportacao import NFeDocImportacao
2
3
  from inovai.models.NFeImposto import NFeImposto
3
4
  from inovai.models.NFeItemDadosCombustivel import NFeItemDadosCombustivel
@@ -5,248 +6,257 @@ from inovai.models.NFeItemExportacao import NFeItemExportacao
5
6
  from inovai.models.NFeObservacaoItem import NFeObservacaoItem
6
7
  import xml.etree.ElementTree as ET
7
8
 
9
+
8
10
  class NFeItem:
9
- DIs: [NFeDocImportacao]
10
- cBarra: str
11
- cBarraTrib: str
12
- cEAN: str
13
- cEANTrib: str
14
- cest: str
15
- cfop: str
16
- codBeneficioFiscal: str
17
- codConta: str
18
- codFisJuridicaRef: str
19
- codigoServLei116: str
20
- dadosCombustivel: NFeItemDadosCombustivel
21
- dadosExportacao: [NFeItemExportacao]
22
- dadosObservacaoItem: [NFeObservacaoItem]
23
- exTIPI: str
24
- impostos: [NFeImposto]
25
- impostosDevolvidos: [NFeImposto]
26
- indFisJuridicaRef: int
27
- indProduto: str
28
- indTipoReferencia: str
29
- item: int
30
- nbm: str
31
- ncm: str
32
- numItemRef: int
33
- numeroFCI: str
34
- nve: str
35
- pedidoExternoItem: int
36
- pedidoExternoNumero: str
37
- percentualDevolvido: float
38
- produtoCodigo: str
39
- produtoInfo: str
40
- produtoNome: str
41
- qtdDevolucaoRef: float
42
- quantidade: float
43
- quantidadeTrib: float
44
- unidadeMedida: str
45
- unidadeMedidaTrib: str
46
- valorDesconto: float
47
- valorDespAduaneira: float
48
- valorFrete: float
49
- valorIOF: float
50
- valorOutros: float
51
- valorSeguro: float
52
- valorTotal: float
53
- valorTotalTrib: float
54
- valorUnitario: float
55
- valorUnitarioTrib: float
56
-
57
- def __init__(self, **json):
58
- if json:
59
- for key, typeProp in self.__class__.__dict__['__annotations__'].items():
60
- # str, float, bool, int
61
- class_name = str(typeProp).split("'")[1].split(".")[-1]
62
-
63
- if key in json:
64
- if isinstance(typeProp, list):
65
- cls = globals()[class_name]
66
- items = []
67
- for item_data in json[key]:
68
- item = cls(**item_data)
69
- items.append(item)
70
- setattr(self, key, items)
71
- elif class_name not in ('str', 'int', 'float', 'bool'):
72
- cls = globals()[class_name]
73
- instance = cls(**json[key])
74
- setattr(self, key, instance)
75
- else:
76
- setattr(self, key, str(json[key]))
77
- else:
78
- if isinstance(typeProp, list):
79
- # cls = globals()[class_name]
80
- items = []
81
- setattr(self, key, items)
82
- elif class_name not in ('str', 'int', 'float', 'bool'):
83
- cls = globals()[class_name]
84
- instance = cls()
85
- setattr(self, key, instance)
86
- else:
87
- setattr(self, key, '')
88
- else:
89
- for key, typeProp in self.__class__.__dict__['__annotations__'].items():
90
- class_name = str(typeProp).split("'")[1].split(".")[-1]
91
- if isinstance(typeProp, list):
92
- # cls = globals()[class_name]
93
- items = []
94
- setattr(self, key, items)
95
- elif class_name not in ('str', 'int', 'float', 'bool'):
96
- cls = globals()[class_name]
97
- instance = cls()
98
- setattr(self, key, instance)
99
- else:
100
- setattr(self, key, '')
101
-
102
- def get_DIs(self):
103
- return self.DIs
104
-
105
- def get_cBarra(self):
106
- return self.cBarra
107
-
108
- def get_cBarraTrib(self):
109
- return self.cBarraTrib
110
-
111
- def get_cEAN(self):
112
- return self.cEAN
113
-
114
- def get_cEANTrib(self):
115
- return self.cEANTrib
116
-
117
- def get_cest(self):
118
- return self.cest
119
-
120
- def get_cfop(self):
121
- return self.cfop
122
-
123
- def get_codBeneficioFiscal(self):
124
- return self.codBeneficioFiscal
125
-
126
- def get_codConta(self):
127
- return self.codConta
128
-
129
- def get_codFisJuridicaRef(self):
130
- return self.codFisJuridicaRef
131
-
132
- def get_codigoServLei116(self):
133
- return self.codigoServLei116
134
-
135
- def get_dadosCombustivel(self):
136
- return self.dadosCombustivel
137
-
138
- def get_dadosExportacao(self):
139
- return self.dadosExportacao
140
-
141
- def get_dadosObservacaoItem(self):
142
- return self.dadosObservacaoItem
11
+ DIs: [NFeDocImportacao]
12
+ cBarra: str
13
+ cBarraTrib: str
14
+ cEAN: str
15
+ cEANTrib: str
16
+ cest: str
17
+ cfop: str
18
+ codBeneficioFiscal: str
19
+ codConta: str
20
+ codFisJuridicaRef: str
21
+ codigoServLei116: str
22
+ descricaoLei116: str
23
+ dadosCombustivel: NFeItemDadosCombustivel
24
+ dadosExportacao: [NFeItemExportacao]
25
+ dadosObservacaoItem: [NFeObservacaoItem]
26
+ exTIPI: str
27
+ impostos: [NFeImposto]
28
+ impostosDevolvidos: [NFeImposto]
29
+ indFisJuridicaRef: int
30
+ indProduto: str
31
+ indTipoReferencia: str
32
+ item: int
33
+ nbm: str
34
+ ncm: str
35
+ numItemRef: int
36
+ numeroFCI: str
37
+ nve: str
38
+ pedidoExternoItem: int
39
+ pedidoExternoNumero: str
40
+ percentualDevolvido: float
41
+ produtoCodigo: str
42
+ produtoInfo: str
43
+ produtoNome: str
44
+ qtdDevolucaoRef: float
45
+ quantidade: float
46
+ quantidadeTrib: float
47
+ unidadeMedida: str
48
+ unidadeMedidaTrib: str
49
+ valorDesconto: float
50
+ valorDespAduaneira: float
51
+ valorFrete: float
52
+ valorIOF: float
53
+ valorOutros: float
54
+ valorSeguro: float
55
+ valorTotal: float
56
+ valorTotalTrib: float
57
+ valorUnitario: float
58
+ valorUnitarioTrib: float
59
+ dadosAtivos: [NFeDadosAtivos]
60
+
61
+ def __init__(self, **json):
62
+ if json:
63
+ for key, typeProp in self.__class__.__dict__['__annotations__'].items():
64
+ # str, float, bool, int
65
+ class_name = str(typeProp).split("'")[1].split(".")[-1]
66
+
67
+ if key in json:
68
+ if isinstance(typeProp, list):
69
+ cls = globals()[class_name]
70
+ items = []
71
+ for item_data in json[key]:
72
+ item = cls(**item_data)
73
+ items.append(item)
74
+ setattr(self, key, items)
75
+ elif class_name not in ('str', 'int', 'float', 'bool'):
76
+ cls = globals()[class_name]
77
+ instance = cls(**json[key])
78
+ setattr(self, key, instance)
79
+ else:
80
+ setattr(self, key, str(json[key]))
81
+ else:
82
+ if isinstance(typeProp, list):
83
+ # cls = globals()[class_name]
84
+ items = []
85
+ setattr(self, key, items)
86
+ elif class_name not in ('str', 'int', 'float', 'bool'):
87
+ cls = globals()[class_name]
88
+ instance = cls()
89
+ setattr(self, key, instance)
90
+ else:
91
+ setattr(self, key, '')
92
+ else:
93
+ for key, typeProp in self.__class__.__dict__['__annotations__'].items():
94
+ class_name = str(typeProp).split("'")[1].split(".")[-1]
95
+ if isinstance(typeProp, list):
96
+ # cls = globals()[class_name]
97
+ items = []
98
+ setattr(self, key, items)
99
+ elif class_name not in ('str', 'int', 'float', 'bool'):
100
+ cls = globals()[class_name]
101
+ instance = cls()
102
+ setattr(self, key, instance)
103
+ else:
104
+ setattr(self, key, '')
105
+
106
+ def get_dadosAtivos(self):
107
+ return self.dadosAtivos
108
+
109
+ def get_DIs(self):
110
+ return self.DIs
111
+
112
+ def get_cBarra(self):
113
+ return self.cBarra
114
+
115
+ def get_cBarraTrib(self):
116
+ return self.cBarraTrib
117
+
118
+ def get_cEAN(self):
119
+ return self.cEAN
120
+
121
+ def get_cEANTrib(self):
122
+ return self.cEANTrib
123
+
124
+ def get_cest(self):
125
+ return self.cest
126
+
127
+ def get_cfop(self):
128
+ return self.cfop
129
+
130
+ def get_codBeneficioFiscal(self):
131
+ return self.codBeneficioFiscal
132
+
133
+ def get_codConta(self):
134
+ return self.codConta
135
+
136
+ def get_codFisJuridicaRef(self):
137
+ return self.codFisJuridicaRef
138
+
139
+ def get_codigoServLei116(self):
140
+ return self.codigoServLei116
141
+
142
+ def get_dadosCombustivel(self):
143
+ return self.dadosCombustivel
144
+
145
+ def get_dadosExportacao(self):
146
+ return self.dadosExportacao
147
+
148
+ def get_dadosObservacaoItem(self):
149
+ return self.dadosObservacaoItem
150
+
151
+ def get_exTIPI(self):
152
+ return self.exTIPI
143
153
 
144
- def get_exTIPI(self):
145
- return self.exTIPI
154
+ def get_impostos(self):
155
+ return self.impostos
146
156
 
147
- def get_impostos(self):
148
- return self.impostos
157
+ def get_impostosDevolvidos(self):
158
+ return self.impostosDevolvidos
149
159
 
150
- def get_impostosDevolvidos(self):
151
- return self.impostosDevolvidos
160
+ def get_indFisJuridicaRef(self):
161
+ return self.indFisJuridicaRef
152
162
 
153
- def get_indFisJuridicaRef(self):
154
- return self.indFisJuridicaRef
163
+ def get_indProduto(self):
164
+ return self.indProduto
155
165
 
156
- def get_indProduto(self):
157
- return self.indProduto
166
+ def get_indTipoReferencia(self):
167
+ return self.indTipoReferencia
158
168
 
159
- def get_indTipoReferencia(self):
160
- return self.indTipoReferencia
169
+ def get_item(self):
170
+ return self.item
161
171
 
162
- def get_item(self):
163
- return self.item
172
+ def get_nbm(self):
173
+ return self.nbm
164
174
 
165
- def get_nbm(self):
166
- return self.nbm
175
+ def get_ncm(self):
176
+ return self.ncm
167
177
 
168
- def get_ncm(self):
169
- return self.ncm
178
+ def get_numItemRef(self):
179
+ return self.numItemRef
170
180
 
171
- def get_numItemRef(self):
172
- return self.numItemRef
181
+ def get_numeroFCI(self):
182
+ return self.numeroFCI
173
183
 
174
- def get_numeroFCI(self):
175
- return self.numeroFCI
184
+ def get_nve(self):
185
+ return self.nve
176
186
 
177
- def get_nve(self):
178
- return self.nve
187
+ def get_pedidoExternoItem(self):
188
+ return self.pedidoExternoItem
179
189
 
180
- def get_pedidoExternoItem(self):
181
- return self.pedidoExternoItem
190
+ def get_pedidoExternoNumero(self):
191
+ return self.pedidoExternoNumero
182
192
 
183
- def get_pedidoExternoNumero(self):
184
- return self.pedidoExternoNumero
193
+ def get_percentualDevolvido(self):
194
+ return self.percentualDevolvido
185
195
 
186
- def get_percentualDevolvido(self):
187
- return self.percentualDevolvido
196
+ def get_produtoCodigo(self):
197
+ return self.produtoCodigo
188
198
 
189
- def get_produtoCodigo(self):
190
- return self.produtoCodigo
199
+ def get_produtoInfo(self):
200
+ return self.produtoInfo
191
201
 
192
- def get_produtoInfo(self):
193
- return self.produtoInfo
202
+ def get_produtoNome(self):
203
+ return self.produtoNome
194
204
 
195
- def get_produtoNome(self):
196
- return self.produtoNome
205
+ def get_qtdDevolucaoRef(self):
206
+ return self.qtdDevolucaoRef
197
207
 
198
- def get_qtdDevolucaoRef(self):
199
- return self.qtdDevolucaoRef
208
+ def get_quantidade(self):
209
+ return self.quantidade
200
210
 
201
- def get_quantidade(self):
202
- return self.quantidade
211
+ def get_quantidadeTrib(self):
212
+ return self.quantidadeTrib
203
213
 
204
- def get_quantidadeTrib(self):
205
- return self.quantidadeTrib
214
+ def get_unidadeMedida(self):
215
+ return self.unidadeMedida
206
216
 
207
- def get_unidadeMedida(self):
208
- return self.unidadeMedida
217
+ def get_unidadeMedidaTrib(self):
218
+ return self.unidadeMedidaTrib
209
219
 
210
- def get_unidadeMedidaTrib(self):
211
- return self.unidadeMedidaTrib
220
+ def get_valorDesconto(self):
221
+ return self.valorDesconto
212
222
 
213
- def get_valorDesconto(self):
214
- return self.valorDesconto
223
+ def get_valorDespAduaneira(self):
224
+ return self.valorDespAduaneira
215
225
 
216
- def get_valorDespAduaneira(self):
217
- return self.valorDespAduaneira
226
+ def get_valorFrete(self):
227
+ return self.valorFrete
218
228
 
219
- def get_valorFrete(self):
220
- return self.valorFrete
229
+ def get_valorIOF(self):
230
+ return self.valorIOF
221
231
 
222
- def get_valorIOF(self):
223
- return self.valorIOF
232
+ def get_valorOutros(self):
233
+ return self.valorOutros
224
234
 
225
- def get_valorOutros(self):
226
- return self.valorOutros
235
+ def get_valorSeguro(self):
236
+ return self.valorSeguro
227
237
 
228
- def get_valorSeguro(self):
229
- return self.valorSeguro
238
+ def get_valorTotal(self):
239
+ return self.valorTotal
230
240
 
231
- def get_valorTotal(self):
232
- return self.valorTotal
241
+ def get_valorTotalTrib(self):
242
+ return self.valorTotalTrib
233
243
 
234
- def get_valorTotalTrib(self):
235
- return self.valorTotalTrib
244
+ def get_valorUnitario(self):
245
+ return self.valorUnitario
236
246
 
237
- def get_valorUnitario(self):
238
- return self.valorUnitario
247
+ def get_valorUnitarioTrib(self):
248
+ return self.valorUnitarioTrib
239
249
 
240
- def get_valorUnitarioTrib(self):
241
- return self.valorUnitarioTrib
250
+ def get_descricaoLei116(self):
251
+ return self.descricaoLei116
242
252
 
243
- def to_xml(self, template):
244
- element = ET.Element(template.get('root', 'DET_NITEM'))
253
+ def to_xml(self, template):
254
+ element = ET.Element(template.get('root', 'DET_NITEM'))
245
255
 
246
- for attr, tag in template.get('fields', {}).items():
247
- value = getattr(self, attr, None)
248
- if value is not None:
249
- child = ET.SubElement(element, tag)
250
- child.text = str(value)
256
+ for attr, tag in template.get('fields', {}).items():
257
+ value = getattr(self, attr, None)
258
+ if value is not None:
259
+ child = ET.SubElement(element, tag)
260
+ child.text = str(value)
251
261
 
252
- return element
262
+ return element
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ipiranga-inovai-project-lib
3
- Version: 1.3
3
+ Version: 1.5
4
4
  Summary: Projeto criado para importação genérica de entidades
5
5
  Home-page: https://gitlab.ipirangacloud.com/clayton.monteiro.ext/ipiranga-inovai-project-lib
6
6
  Author: Clayton Sandes Monteiro
@@ -1,10 +1,11 @@
1
1
  inovai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  inovai/entities.py,sha256=tsa9Fpm0kOmulP1mg2hLk6jeP4jrU5cnI01dT0QIAqY,12749
3
- inovai/enums.py,sha256=1CBgOc-bef_aIq6lQLgDGXgp4hITYzVACZcyy8e2LA8,887
3
+ inovai/enums.py,sha256=3pFRqYBy_aAYUHe_skRhVM4D0XhcYxL-6hNQAgWB7k8,927
4
4
  inovai/models/Endereco.py,sha256=Vft20vMwYwTXtEuh5NH7O5FxXVahnLmgaXMDOVdBxY4,3519
5
5
  inovai/models/NFe.py,sha256=3PiMvK6AODaagZU7KEpnjYfulz8PvcQYGChIa-QCvg0,13023
6
6
  inovai/models/NFeBoleto.py,sha256=tLWqsOlszA6UiJdxesJKQkgwNk_4DuI3NRBCYZh7RKc,5006
7
7
  inovai/models/NFeCartao.py,sha256=3JTl_i9V6cu6gOkbWM1Mj10BALmHezlRVR-xGx6m5GI,1876
8
+ inovai/models/NFeDadosAtivos.py,sha256=Iivtw5Z--q82NxrUXWwGvqhMjKKtoqGUQO0WZTMpbFQ,3079
8
9
  inovai/models/NFeDetalhePagamento.py,sha256=-yWGj8wz--kNMGxTY1llsduZj26S8k-El43xscG7Rmw,2021
9
10
  inovai/models/NFeDocImportacao.py,sha256=ysfxiuSOKnPNY3emCLtTnKStQ-xei0iXHnrzT7keOEo,3291
10
11
  inovai/models/NFeDocImportacaoAdicao.py,sha256=b9xBZur0jYE6yLssu2ZYK9KKFp9Yr3TOUiVFvrDH5Fw,1899
@@ -17,7 +18,7 @@ inovai/models/NFeFatura.py,sha256=GxEkiYj_sMjETk9euzlHw388sEnSgHTk6tYZiPug6s0,18
17
18
  inovai/models/NFeImposto.py,sha256=Qpi3S-iR5pvM0kXkIq2dQs4VxTv7gDG0qQ9h2XRDKCg,5769
18
19
  inovai/models/NFeImpostoRetido.py,sha256=emr_dpFOZY4abLTvVEdw4hFFX5XkVsAnViGT2tboiic,3707
19
20
  inovai/models/NFeIntermediadorTransacao.py,sha256=92BCto4uKg17v5EzhT9g1eNBKYYS-trZ7zmpKna2Jzo,1645
20
- inovai/models/NFeItem.py,sha256=T1Va47mlKmBhwZ6MueNhaCDLelr7X0ykmHYgdNTBo68,5938
21
+ inovai/models/NFeItem.py,sha256=o8WOd1FA100Ezq73qUvjLsx53kca3a3exIEC4Zq2qaw,7463
21
22
  inovai/models/NFeItemDadosCombustivel.py,sha256=2qenlgSiGhiWLsL_8YHUix1MfB7vbBWWQtJWGmvaLB8,2244
22
23
  inovai/models/NFeItemExportacao.py,sha256=Fc7oSc_OuXtsan-oaMvN79v88zJvjZzKQur_zRoS2T4,2526
23
24
  inovai/models/NFeItemOrigemCombustivel.py,sha256=_FD3H6LMxY60T9DAwB-xGcS5xdtV-WnMtbvkOrkx_fA,1809
@@ -32,8 +33,8 @@ inovai/models/NFeVolume.py,sha256=_cayb-rrz1mSxQ3wFFnB4KCi524jtAsdTTcS4WQTBOc,19
32
33
  inovai/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
34
  inovai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
35
  inovai/utils/util.py,sha256=tEFFoYhtyZk2pxor2vb23NWr3otPzPXTiTIf-VrGik4,366
35
- ipiranga_inovai_project_lib-1.3.dist-info/LICENSE,sha256=UJ3ql8eZec9Y1kER7QSHAuvdgFPuL47asePHYmdzG_o,198
36
- ipiranga_inovai_project_lib-1.3.dist-info/METADATA,sha256=d0btOT92RGrRCpWkh-Cn84BsbfxxtnpNAwsWdFY4EO4,518
37
- ipiranga_inovai_project_lib-1.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
38
- ipiranga_inovai_project_lib-1.3.dist-info/top_level.txt,sha256=BD-APH5oIEb_KDXwrfnZiu9QDsD9ttTEkYc32r9thqg,7
39
- ipiranga_inovai_project_lib-1.3.dist-info/RECORD,,
36
+ ipiranga_inovai_project_lib-1.5.dist-info/LICENSE,sha256=UJ3ql8eZec9Y1kER7QSHAuvdgFPuL47asePHYmdzG_o,198
37
+ ipiranga_inovai_project_lib-1.5.dist-info/METADATA,sha256=dINl35X-KeT8NgA3g51UDcFORTw4gbhpxqA6wxMPy4c,518
38
+ ipiranga_inovai_project_lib-1.5.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
39
+ ipiranga_inovai_project_lib-1.5.dist-info/top_level.txt,sha256=BD-APH5oIEb_KDXwrfnZiu9QDsD9ttTEkYc32r9thqg,7
40
+ ipiranga_inovai_project_lib-1.5.dist-info/RECORD,,