rpa-suite 0.7.1__py3-none-any.whl → 0.7.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.
- rpa_suite/clock/waiter.py +0 -5
- rpa_suite/suite.py +25 -0
- {rpa_suite-0.7.1.dist-info → rpa_suite-0.7.2.dist-info}/METADATA +6 -4
- {rpa_suite-0.7.1.dist-info → rpa_suite-0.7.2.dist-info}/RECORD +7 -7
- {rpa_suite-0.7.1.dist-info → rpa_suite-0.7.2.dist-info}/LICENSE +0 -0
- {rpa_suite-0.7.1.dist-info → rpa_suite-0.7.2.dist-info}/WHEEL +0 -0
- {rpa_suite-0.7.1.dist-info → rpa_suite-0.7.2.dist-info}/top_level.txt +0 -0
rpa_suite/clock/waiter.py
CHANGED
@@ -34,7 +34,6 @@ def wait_for_exec(
|
|
34
34
|
result: dict = {
|
35
35
|
'success': bool
|
36
36
|
}
|
37
|
-
# Pré Tratamento
|
38
37
|
|
39
38
|
# Processo
|
40
39
|
try:
|
@@ -46,9 +45,5 @@ def wait_for_exec(
|
|
46
45
|
except Exception as e:
|
47
46
|
result['success'] = False
|
48
47
|
error_print(f'Erro ao tentar aguardar para executar a função: {fn_to_exec.__name__} \nMensagem: {str(e)}')
|
49
|
-
|
50
|
-
|
51
|
-
# Pós Tratamento
|
52
|
-
...
|
53
48
|
|
54
49
|
return result
|
rpa_suite/suite.py
CHANGED
@@ -11,14 +11,35 @@ from .validate.mail_validator import valid_emails
|
|
11
11
|
from .validate.string_validator import search_in
|
12
12
|
|
13
13
|
class Rpa_suite():
|
14
|
+
"""
|
15
|
+
Classe ``Rpa_suite`` é uma representação genérica do dos módulos, com objetivo de centralizar todos submódulos para acesso através de uma instância deste Objeto representacional. Ele contem variaveis apontadas para as funções dos submódulos presentes no rpa-site.
|
16
|
+
|
17
|
+
Chamada
|
18
|
+
----------
|
19
|
+
Ao chamar o arquivo mantenedor desta classe, sera invocada uma instancia deste objeto para poder ser utilziado ou reutilizado através de outra variável
|
20
|
+
|
21
|
+
Objetivo
|
22
|
+
----------
|
23
|
+
Flexibilidade podendo chamar cada submódulo de forma individual ou fazendo a importação do objeto representacional de todos submódulos.
|
24
|
+
"""
|
25
|
+
|
26
|
+
# clock
|
14
27
|
wait_for_exec = wait_for_exec
|
15
28
|
exec_wtime = exec_wtime
|
29
|
+
|
30
|
+
# date
|
16
31
|
get_hms = get_hms
|
17
32
|
get_dma = get_dma
|
33
|
+
|
34
|
+
# email
|
18
35
|
send_email = send_email
|
36
|
+
|
37
|
+
# file
|
19
38
|
count_files = count_files
|
20
39
|
create_temp_dir = create_temp_dir
|
21
40
|
delete_temp_dir = delete_temp_dir
|
41
|
+
|
42
|
+
# log
|
22
43
|
alert_print = alert_print
|
23
44
|
success_print = success_print
|
24
45
|
error_print = error_print
|
@@ -27,7 +48,11 @@ class Rpa_suite():
|
|
27
48
|
print_retur_fn = print_retur_fn
|
28
49
|
magenta_print = magenta_print
|
29
50
|
blue_print = blue_print
|
51
|
+
|
52
|
+
# regex
|
30
53
|
create_list_using_regex = create_list_using_regex
|
54
|
+
|
55
|
+
# validate
|
31
56
|
valid_emails = valid_emails
|
32
57
|
search_in = search_in
|
33
58
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: rpa-suite
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.2
|
4
4
|
Summary: Conjunto de ferramentas essenciais para RPA com Python, que facilitam o dia a dia de desenvolvimento.
|
5
5
|
Author: Camilo Costa de Carvalho
|
6
6
|
Author-email: camilo.carvalho@triasoftware.com.br
|
@@ -27,8 +27,8 @@ Requires-Dist: email-validator
|
|
27
27
|
</h1>
|
28
28
|
<br>
|
29
29
|
|
30
|
-
[PyPI Latest Release](https://img.shields.io/pypi/v/rpa-suite.svg)
|
31
|
-
[PyPI Downloads](https://img.shields.io/pypi/dm/rpa-suite.svg?label=PyPI%20downloads)
|
30
|
+
[PyPI Latest Release](https://img.shields.io/pypi/v/rpa-suite.svg)
|
31
|
+
[PyPI Downloads](https://img.shields.io/pypi/dm/rpa-suite.svg?label=PyPI%20downloads)
|
32
32
|
|
33
33
|
-----------------
|
34
34
|
|
@@ -126,7 +126,7 @@ O módulo principal do rpa-suite é dividido em categorias. Cada categoria cont
|
|
126
126
|
- **string_validator** - Funções para validação/varredura (strings, substrings, palavras)
|
127
127
|
|
128
128
|
## Release
|
129
|
-
Versão: **Alpha 0.
|
129
|
+
Versão: **Alpha 0.7.2**
|
130
130
|
|
131
131
|
Lançamento: *04/12/2023*
|
132
132
|
|
@@ -144,3 +144,5 @@ Para mais informações, visite nosso projeto no Github ou PyPi:
|
|
144
144
|
<a href='https://pypi.org/project/rpa-suite/' target='_blank'>
|
145
145
|
Ver projeto publicado no PyPI.
|
146
146
|
</a>
|
147
|
+
|
148
|
+
<hr>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
rpa_suite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
rpa_suite/suite.py,sha256=
|
2
|
+
rpa_suite/suite.py,sha256=QvPL_2bWW-XcbfstLZREXZAqT32aM-SD38x7jxpvyfs,2152
|
3
3
|
rpa_suite/clock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
rpa_suite/clock/exec_while.py,sha256=3lHxKBmacT5lFtcZzDZGoWqr4S2gggY69VfXB96NGmw,2485
|
5
|
-
rpa_suite/clock/waiter.py,sha256=
|
5
|
+
rpa_suite/clock/waiter.py,sha256=2Mot7KozzlDN4iodfnKUnwPPCa7vF2wg_aK3i2Ta4J8,1910
|
6
6
|
rpa_suite/date/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
rpa_suite/date/date.py,sha256=5VXiQehSsd-0RmGnZ_amdGfxyBu3a7A-Go-KUt34tIw,2826
|
8
8
|
rpa_suite/email/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -16,8 +16,8 @@ rpa_suite/log/printer.py,sha256=yzFO6MBgbsbaFzEnq9l0PcUTgb9fjQiPMAYDV20lhEA,2805
|
|
16
16
|
rpa_suite/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
rpa_suite/validate/mail_validator.py,sha256=kGifg4ydz8Oh50Hr37t0Py82u4vUap7yzABGQOKE1lQ,2165
|
18
18
|
rpa_suite/validate/string_validator.py,sha256=wvgh9ZRl6P62W-kNII3heKXhbYaZUoIOOnWkOFO1PH0,4052
|
19
|
-
rpa_suite-0.7.
|
20
|
-
rpa_suite-0.7.
|
21
|
-
rpa_suite-0.7.
|
22
|
-
rpa_suite-0.7.
|
23
|
-
rpa_suite-0.7.
|
19
|
+
rpa_suite-0.7.2.dist-info/LICENSE,sha256=5D8PIbs31iGd9i1_MDNg4SzaQnp9sEIULALh2y3WyMI,1102
|
20
|
+
rpa_suite-0.7.2.dist-info/METADATA,sha256=7IJtW0XzwfoqCFCLENfI0GCG2-jP10icn8oHGkc4hKs,5656
|
21
|
+
rpa_suite-0.7.2.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
22
|
+
rpa_suite-0.7.2.dist-info/top_level.txt,sha256=HYkDtg-kJNAr3F2XAIPyJ-QBbNhk7q6jrqsFt10lz4Y,10
|
23
|
+
rpa_suite-0.7.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|