worker-automate-hub 0.5.743__tar.gz → 0.5.745__tar.gz
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.
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/PKG-INFO +1 -1
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/pyproject.toml +1 -1
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/extracao_saldo_estoque.py +27 -23
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/README.md +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/ahead_service.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/client.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/datalake_service.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/helpers/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/helpers/api_helpers.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/rdp_service.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/rpa_fila_service.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/rpa_historico_service.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/webhook_service.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/cli.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/config/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/config/settings.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/config.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/core/so_manipulation.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/deprecation.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/rate_limit.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/repeat.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/retry.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/singleton.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/timeit.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dao/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dao/rpa_configuracao.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dao/rpa_fila.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dao/rpa_historico.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dao/rpa_processo.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dao/rpa_robo.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dto/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dto/rpa_historico_request_dto.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dto/rpa_processo_entrada_dto.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dto/rpa_processo_rdp_dto.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dto/rpa_sap_dto.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/dto/rpa_sistema_dto.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/abertura_livros_fiscais.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/coleta_dje_process.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/conexao_rdp.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/cte_manual.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/cte_xml.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/descartes.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/devolucao_ctf.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/devolucao_ctf_35.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/devolucao_prazo_a_faturar.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/ecac_estadual_go.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/ecac_estadual_main.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/ecac_estadual_mt.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/ecac_estadual_sc.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/ecac_estadual_sp.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/ecac_federal.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_cte_1353.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_cte_333.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_15.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_16.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_207.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_32.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_33.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_34.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_36.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_39.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_500.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_503.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_505.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_7139.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_9.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/entrada_de_notas_9000.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/exemplo_processo.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/extracao_fechamento_contabil.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/extracao_fechamento_emsys.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/fechar_conexao_rdp.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/fidc_exportacao_docs_portal_b2b.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/fidc_gerar_nosso_numero.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/fidc_remessa_cobranca_cnab240.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/fidc_retorno_cobranca.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/geracao_aprovacao_pedidos.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/geracao_aprovacao_pedidos_novo.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/integracao_contabil.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/integracao_contabil_generica.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/lancamento_pis_cofins.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/lancamento_rateio.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/login_emsys.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/login_emsys_versao_especifica.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/notas_faturamento_sap.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/opex_capex.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/playground.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/sped_fiscal.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/jobs/transferencias.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/task_definitions.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/task_executor.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/__init__.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/env.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/get_creds_gworkspace.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/logger.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/toast.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/updater.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/util.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/utils_nfe_entrada.py +0 -0
- {worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/worker.py +0 -0
@@ -4,7 +4,10 @@ from datetime import datetime
|
|
4
4
|
from pywinauto import Application, timings, findwindows
|
5
5
|
import sys
|
6
6
|
import io
|
7
|
-
|
7
|
+
|
8
|
+
sys.path.append(
|
9
|
+
os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", ".."))
|
10
|
+
)
|
8
11
|
|
9
12
|
from worker_automate_hub.models.dto.rpa_historico_request_dto import (
|
10
13
|
RpaHistoricoStatusEnum,
|
@@ -45,9 +48,9 @@ pyautogui.FAILSAFE = False
|
|
45
48
|
async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
46
49
|
try:
|
47
50
|
config = await get_config_by_name("login_emsys")
|
48
|
-
periodo = task.configEntrada[
|
49
|
-
periodo_format = periodo.replace("/","")
|
50
|
-
filial = task.configEntrada[
|
51
|
+
periodo = task.configEntrada["periodo"]
|
52
|
+
periodo_format = periodo.replace("/", "")
|
53
|
+
filial = task.configEntrada["filialEmpresaOrigem"]
|
51
54
|
historico_id = task.historico_id
|
52
55
|
await kill_all_emsys()
|
53
56
|
|
@@ -80,7 +83,7 @@ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
|
80
83
|
##### Janela Relatório Saldos do Estoque #####
|
81
84
|
# Marcar check box data
|
82
85
|
app = Application().connect(class_name="TFrmRelSaldoEstoque", timeout=60)
|
83
|
-
main_window = app["TFrmRelSaldoEstoque"]
|
86
|
+
main_window = app["TFrmRelSaldoEstoque"]
|
84
87
|
main_window.set_focus()
|
85
88
|
|
86
89
|
# Captura o campo de data
|
@@ -90,39 +93,39 @@ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
|
90
93
|
|
91
94
|
await worker_sleep(2)
|
92
95
|
# Insere a data
|
93
|
-
data_input = main_window.child_window(
|
94
|
-
|
95
|
-
)
|
96
|
-
|
96
|
+
data_input = main_window.child_window(class_name="TDBIEditDate", found_index=0)
|
97
|
+
|
97
98
|
data_input.set_edit_text(periodo)
|
98
99
|
|
99
100
|
# Clicar em gerar relatório
|
100
101
|
btn_gerar = main_window.child_window(
|
101
102
|
class_name="TBitBtn", found_index=0
|
102
|
-
).click_input()
|
103
|
+
).click_input()
|
103
104
|
|
104
105
|
# Aguarda até 60 segundos para a janela aparecer
|
105
106
|
timings.wait_until_passes(
|
106
107
|
timeout=1800,
|
107
108
|
retry_interval=1,
|
108
|
-
func=lambda: Application().connect(class_name="TFrmPreviewRelatorio")
|
109
|
+
func=lambda: Application().connect(class_name="TFrmPreviewRelatorio"),
|
109
110
|
)
|
110
111
|
|
111
112
|
await worker_sleep(2)
|
112
113
|
|
113
|
-
# Conecta à janela Preview Relatorio
|
114
|
+
# Conecta à janela Preview Relatorio
|
114
115
|
app = Application().connect(class_name="TFrmPreviewRelatorio")
|
115
116
|
main_window = app["TFrmPreviewRelatorio"]
|
116
117
|
main_window.set_focus()
|
117
118
|
|
118
119
|
# Clicar em salvar
|
119
|
-
caminho = r"assets\\
|
120
|
+
caminho = r"assets\\extracao_relatorios\\btn_salvar.png"
|
120
121
|
# Verifica se o arquivo existe
|
121
122
|
if os.path.isfile(caminho):
|
122
123
|
print("A imagem existe:", caminho)
|
123
124
|
|
124
125
|
# Procura a imagem na tela
|
125
|
-
pos = pyautogui.locateCenterOnScreen(
|
126
|
+
pos = pyautogui.locateCenterOnScreen(
|
127
|
+
caminho, confidence=0.9
|
128
|
+
) # ajuste o confidence se necessário
|
126
129
|
if pos:
|
127
130
|
pyautogui.click(pos) # clica no centro da imagem
|
128
131
|
print("Clique realizado na imagem.")
|
@@ -151,8 +154,8 @@ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
|
151
154
|
|
152
155
|
# Clicar em Salvar
|
153
156
|
btn_salvar = main_window.child_window(
|
154
|
-
|
155
|
-
).click_input()
|
157
|
+
class_name="TBitBtn", found_index=1
|
158
|
+
).click_input()
|
156
159
|
|
157
160
|
await worker_sleep(5)
|
158
161
|
|
@@ -161,23 +164,25 @@ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
|
161
164
|
main_window = app.window(title_re="Salvar para arquivo")
|
162
165
|
|
163
166
|
# Campo Nome (Edit) - use set_edit_text para evitar problemas de escape
|
164
|
-
campo_nome = main_window.child_window(
|
165
|
-
|
167
|
+
campo_nome = main_window.child_window(
|
168
|
+
class_name="Edit", control_id=1148
|
169
|
+
).wrapper_object()
|
170
|
+
caminho_arquivo = f"C:\Users\automatehub\Downloads\saldo_estoque_{periodo_format}_{filial}.xlsx"
|
166
171
|
campo_nome.set_focus()
|
167
172
|
campo_nome.set_edit_text(caminho_arquivo)
|
168
173
|
|
169
174
|
print("✅ Texto inserido no campo Nome")
|
170
175
|
|
171
176
|
await worker_sleep(2)
|
172
|
-
|
177
|
+
|
173
178
|
# Clicar em ok para salvar
|
174
179
|
btn_ok = main_window.child_window(
|
175
180
|
class_name="Button", found_index=0
|
176
|
-
).click_input()
|
181
|
+
).click_input()
|
177
182
|
|
178
183
|
await worker_sleep(5)
|
179
184
|
|
180
|
-
caminho_img = r"assets\\
|
185
|
+
caminho_img = r"assets\\extracao_relatorios\\janela_printing.png"
|
181
186
|
|
182
187
|
# Aguarda até a janela com título "Printing" (ou "Salvando...") fechar
|
183
188
|
try:
|
@@ -191,7 +196,7 @@ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
|
191
196
|
except findwindows.ElementNotFoundError:
|
192
197
|
print("⚠️ Janela 'Printing' não estava aberta.")
|
193
198
|
|
194
|
-
nome_com_extensao = f
|
199
|
+
nome_com_extensao = f"saldo_estoque_{periodo_format}_{filial}.xlsx"
|
195
200
|
# lê o arquivo
|
196
201
|
with open(f"{caminho_arquivo}", "rb") as file:
|
197
202
|
file_bytes = io.BytesIO(file.read())
|
@@ -229,4 +234,3 @@ async def extracao_saldo_estoque(task: RpaProcessoEntradaDTO):
|
|
229
234
|
status=RpaHistoricoStatusEnum.Falha,
|
230
235
|
tags=[RpaTagDTO(descricao=RpaTagEnum.Tecnico)],
|
231
236
|
)
|
232
|
-
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/__init__.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/ahead_service.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/api/rdp_service.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/config/__init__.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/config/settings.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/repeat.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/retry.py
RENAMED
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/decorators/timeit.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/models/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/tasks/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/__init__.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/env.py
RENAMED
File without changes
|
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/logger.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/toast.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/updater.py
RENAMED
File without changes
|
{worker_automate_hub-0.5.743 → worker_automate_hub-0.5.745}/worker_automate_hub/utils/util.py
RENAMED
File without changes
|
File without changes
|
File without changes
|