rpa-suite 1.3.0__py3-none-any.whl → 1.3.1__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/suite.py +4 -4
- rpa_suite/validate/string_validator.py +2 -2
- {rpa_suite-1.3.0.dist-info → rpa_suite-1.3.1.dist-info}/METADATA +8 -5
- {rpa_suite-1.3.0.dist-info → rpa_suite-1.3.1.dist-info}/RECORD +7 -7
- {rpa_suite-1.3.0.dist-info → rpa_suite-1.3.1.dist-info}/LICENSE +0 -0
- {rpa_suite-1.3.0.dist-info → rpa_suite-1.3.1.dist-info}/WHEEL +0 -0
- {rpa_suite-1.3.0.dist-info → rpa_suite-1.3.1.dist-info}/top_level.txt +0 -0
rpa_suite/suite.py
CHANGED
@@ -33,7 +33,7 @@ from .clock.exec_at import exec_at_hour
|
|
33
33
|
|
34
34
|
|
35
35
|
"""MODULE DATE"""
|
36
|
-
from .date.date import get_hms,
|
36
|
+
from .date.date import get_hms, get_dmy
|
37
37
|
|
38
38
|
|
39
39
|
"""MODULE EMAIL"""
|
@@ -60,7 +60,7 @@ from .regex.pattern_in_text import check_pattern_in_text
|
|
60
60
|
|
61
61
|
"""MODULE VALIDATE"""
|
62
62
|
from .validate.mail_validator import valid_emails
|
63
|
-
from .validate.string_validator import
|
63
|
+
from .validate.string_validator import search_str_in
|
64
64
|
|
65
65
|
|
66
66
|
class Rpa_suite():
|
@@ -96,7 +96,7 @@ class Rpa_suite():
|
|
96
96
|
|
97
97
|
# date
|
98
98
|
get_hms = get_hms
|
99
|
-
|
99
|
+
get_dmy = get_dmy
|
100
100
|
|
101
101
|
# email
|
102
102
|
send_email = send_email
|
@@ -134,7 +134,7 @@ class Rpa_suite():
|
|
134
134
|
|
135
135
|
# validate
|
136
136
|
valid_emails = valid_emails
|
137
|
-
|
137
|
+
search_str_in = search_str_in
|
138
138
|
|
139
139
|
# Create a instance of Rpa_suite
|
140
140
|
|
@@ -113,8 +113,8 @@ def search_str_in(
|
|
113
113
|
|
114
114
|
# Postprocessing
|
115
115
|
if result['is_found']:
|
116
|
-
success_print(f'Function: {
|
116
|
+
success_print(f'Function: {search_str_in.__name__} found: {result["number_occurrences"]} occurrences for "{searched_word}".')
|
117
117
|
else:
|
118
|
-
success_print(f'Function: {
|
118
|
+
success_print(f'Function: {search_str_in.__name__} found no occurrences of "{searched_word}" during the search.')
|
119
119
|
|
120
120
|
return result
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: rpa-suite
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.1
|
4
4
|
Summary: Conjunto de ferramentas essenciais para Automação 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
|
@@ -157,15 +157,16 @@ O módulo principal do rpa-suite é dividido em categorias. Cada categoria cont
|
|
157
157
|
- **string_validator** - Função que valida presença de letras, palavras, e textos e possibilita contar as ocorrencias em uma string
|
158
158
|
|
159
159
|
## Release
|
160
|
-
Versão: **Beta 1.3.
|
160
|
+
Versão: **Beta 1.3.1**
|
161
161
|
|
162
162
|
Lançamento: *20/02/2024*
|
163
|
-
Última atualização: *05/11/2024*
|
164
163
|
|
165
|
-
|
164
|
+
Última atualização: *10/11/2024*
|
166
165
|
|
166
|
+
Status: Em desenvolvimento.
|
167
167
|
|
168
|
-
|
168
|
+
#
|
169
|
+
### Notas da atualização: 1.3.1
|
169
170
|
|
170
171
|
- Correções de bugs em diversas funções relacionadas a tempo: *exec_at_hour* , *wait_for_exec* , *exec_and_wait*
|
171
172
|
- Correções de bugs com tempo superior a 10 minutos nas funções de data: *get_hms* e *get_dma*
|
@@ -175,6 +176,8 @@ Status: Em desenvolvimento.
|
|
175
176
|
- Correção de bug na função *"count_files"* para realizar de maneira correta a soma de todos arquivos nos diretórios
|
176
177
|
- Funções de regex e busca em textos por strings e palavras atualizadas
|
177
178
|
- Implementado nova função para arquivo de flag para execuções, no submodulo file, as funções são: *"file_flag_create"* e *"file_flag_delete"*
|
179
|
+
- correção de imports no arquivo suite.py das funções *"get_dmy"* e *"search_str_in"*
|
180
|
+
- ajuste de cores no svg da logo rpa-suite
|
178
181
|
|
179
182
|
## Mais Sobre
|
180
183
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
rpa_suite/__init__.py,sha256=2k_ZeqU7FvqZMFqGm-EYRiV98uxUxmiy5wXygvIobPU,13
|
2
|
-
rpa_suite/suite.py,sha256=
|
2
|
+
rpa_suite/suite.py,sha256=gR7g8LpBIm6dM75edFA8CQJ0nU1gsUAT6dRSla-MzD8,5488
|
3
3
|
rpa_suite/clock/__init__.py,sha256=haPk94yjX88kR5YpzNNFCpzHw0T7fKAEoiaHA3-vAds,14
|
4
4
|
rpa_suite/clock/exec_at.py,sha256=BbyndWv8FiGhpeCjd8AJvLdIPHsIlIetHQ59bjG818A,6066
|
5
5
|
rpa_suite/clock/scheduler.py,sha256=_EeERPcdVakgp4WoAWbQvLUeLUtZeWiONuU--EszKvI,1197
|
@@ -28,9 +28,9 @@ rpa_suite/regex/__init__.py,sha256=haPk94yjX88kR5YpzNNFCpzHw0T7fKAEoiaHA3-vAds,1
|
|
28
28
|
rpa_suite/regex/pattern_in_text.py,sha256=UvLm8IgkwTWkX6hCA2U4fR0fPHs0K9ws_quNjbj9oic,2289
|
29
29
|
rpa_suite/validate/__init__.py,sha256=haPk94yjX88kR5YpzNNFCpzHw0T7fKAEoiaHA3-vAds,14
|
30
30
|
rpa_suite/validate/mail_validator.py,sha256=LTvxXgyBMJxQ8DuMd8gA-6MT4UiWfj1R6Hh4Q56ID50,3035
|
31
|
-
rpa_suite/validate/string_validator.py,sha256=
|
32
|
-
rpa_suite-1.3.
|
33
|
-
rpa_suite-1.3.
|
34
|
-
rpa_suite-1.3.
|
35
|
-
rpa_suite-1.3.
|
36
|
-
rpa_suite-1.3.
|
31
|
+
rpa_suite/validate/string_validator.py,sha256=kkPTUflSfX6CIRVWQ8WXUrEY-ccUQyRPgaBYPGTvfQ4,4989
|
32
|
+
rpa_suite-1.3.1.dist-info/LICENSE,sha256=5D8PIbs31iGd9i1_MDNg4SzaQnp9sEIULALh2y3WyMI,1102
|
33
|
+
rpa_suite-1.3.1.dist-info/METADATA,sha256=-kGZpXphGDpEBJ_zyTUtW6pppVP11ZuAglBzWFoImS8,9101
|
34
|
+
rpa_suite-1.3.1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
35
|
+
rpa_suite-1.3.1.dist-info/top_level.txt,sha256=HYkDtg-kJNAr3F2XAIPyJ-QBbNhk7q6jrqsFt10lz4Y,10
|
36
|
+
rpa_suite-1.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|