rpa-suite 1.3.1__tar.gz → 1.3.3__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.
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/PKG-INFO +16 -7
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/README.md +3 -4
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite.egg-info/PKG-INFO +17 -8
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/setup.py +1 -1
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/LICENSE +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/clock/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/clock/exec_at.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/clock/scheduler.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/clock/waiter.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/date/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/date/date.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/email/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/email/sender_smtp.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/file/__create_ss_dir.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/file/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/file/counter.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/file/file_flag.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/file/screen_shot.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/file/temp_dir.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/__create_log_dir.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/_functions_logger.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/_logger.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/_variables.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/_variables_uru.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/functions_logger_uru.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/log_decorator.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/logger_uru.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/log/printer.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/regex/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/regex/pattern_in_text.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/suite.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/validate/__init__.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/validate/mail_validator.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite/validate/string_validator.py +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite.egg-info/SOURCES.txt +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite.egg-info/dependency_links.txt +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite.egg-info/requires.txt +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/rpa_suite.egg-info/top_level.txt +0 -0
- {rpa_suite-1.3.1 → rpa_suite-1.3.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: rpa_suite
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.3
|
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
|
@@ -22,9 +22,18 @@ Requires-Dist: loguru
|
|
22
22
|
Requires-Dist: colorama
|
23
23
|
Requires-Dist: email_validator
|
24
24
|
Requires-Dist: colorlog
|
25
|
-
|
26
|
-
|
27
|
-
|
25
|
+
Dynamic: author
|
26
|
+
Dynamic: author-email
|
27
|
+
Dynamic: classifier
|
28
|
+
Dynamic: description
|
29
|
+
Dynamic: description-content-type
|
30
|
+
Dynamic: keywords
|
31
|
+
Dynamic: license
|
32
|
+
Dynamic: license-file
|
33
|
+
Dynamic: requires-dist
|
34
|
+
Dynamic: summary
|
35
|
+
|
36
|
+

|
28
37
|
|
29
38
|
<h1 align="left">
|
30
39
|
RPA Suite
|
@@ -157,7 +166,7 @@ O módulo principal do rpa-suite é dividido em categorias. Cada categoria cont
|
|
157
166
|
- **string_validator** - Função que valida presença de letras, palavras, e textos e possibilita contar as ocorrencias em uma string
|
158
167
|
|
159
168
|
## Release
|
160
|
-
Versão: **Beta 1.3.
|
169
|
+
Versão: **Beta 1.3.3**
|
161
170
|
|
162
171
|
Lançamento: *20/02/2024*
|
163
172
|
|
@@ -166,7 +175,7 @@ Lançamento: *20/02/2024*
|
|
166
175
|
Status: Em desenvolvimento.
|
167
176
|
|
168
177
|
#
|
169
|
-
### Notas da atualização: 1.3.
|
178
|
+
### Notas da atualização: 1.3.2
|
170
179
|
|
171
180
|
- Correções de bugs em diversas funções relacionadas a tempo: *exec_at_hour* , *wait_for_exec* , *exec_and_wait*
|
172
181
|
- Correções de bugs com tempo superior a 10 minutos nas funções de data: *get_hms* e *get_dma*
|
@@ -1,5 +1,4 @@
|
|
1
|
-

|
3
2
|
|
4
3
|
<h1 align="left">
|
5
4
|
RPA Suite
|
@@ -132,7 +131,7 @@ O módulo principal do rpa-suite é dividido em categorias. Cada categoria cont
|
|
132
131
|
- **string_validator** - Função que valida presença de letras, palavras, e textos e possibilita contar as ocorrencias em uma string
|
133
132
|
|
134
133
|
## Release
|
135
|
-
Versão: **Beta 1.3.
|
134
|
+
Versão: **Beta 1.3.3**
|
136
135
|
|
137
136
|
Lançamento: *20/02/2024*
|
138
137
|
|
@@ -141,7 +140,7 @@ Lançamento: *20/02/2024*
|
|
141
140
|
Status: Em desenvolvimento.
|
142
141
|
|
143
142
|
#
|
144
|
-
### Notas da atualização: 1.3.
|
143
|
+
### Notas da atualização: 1.3.2
|
145
144
|
|
146
145
|
- Correções de bugs em diversas funções relacionadas a tempo: *exec_at_hour* , *wait_for_exec* , *exec_and_wait*
|
147
146
|
- Correções de bugs com tempo superior a 10 minutos nas funções de data: *get_hms* e *get_dma*
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
2
|
-
Name:
|
3
|
-
Version: 1.3.
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: rpa_suite
|
3
|
+
Version: 1.3.3
|
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
|
@@ -22,9 +22,18 @@ Requires-Dist: loguru
|
|
22
22
|
Requires-Dist: colorama
|
23
23
|
Requires-Dist: email_validator
|
24
24
|
Requires-Dist: colorlog
|
25
|
-
|
26
|
-
|
27
|
-
|
25
|
+
Dynamic: author
|
26
|
+
Dynamic: author-email
|
27
|
+
Dynamic: classifier
|
28
|
+
Dynamic: description
|
29
|
+
Dynamic: description-content-type
|
30
|
+
Dynamic: keywords
|
31
|
+
Dynamic: license
|
32
|
+
Dynamic: license-file
|
33
|
+
Dynamic: requires-dist
|
34
|
+
Dynamic: summary
|
35
|
+
|
36
|
+

|
28
37
|
|
29
38
|
<h1 align="left">
|
30
39
|
RPA Suite
|
@@ -157,7 +166,7 @@ O módulo principal do rpa-suite é dividido em categorias. Cada categoria cont
|
|
157
166
|
- **string_validator** - Função que valida presença de letras, palavras, e textos e possibilita contar as ocorrencias em uma string
|
158
167
|
|
159
168
|
## Release
|
160
|
-
Versão: **Beta 1.3.
|
169
|
+
Versão: **Beta 1.3.3**
|
161
170
|
|
162
171
|
Lançamento: *20/02/2024*
|
163
172
|
|
@@ -166,7 +175,7 @@ Lançamento: *20/02/2024*
|
|
166
175
|
Status: Em desenvolvimento.
|
167
176
|
|
168
177
|
#
|
169
|
-
### Notas da atualização: 1.3.
|
178
|
+
### Notas da atualização: 1.3.2
|
170
179
|
|
171
180
|
- Correções de bugs em diversas funções relacionadas a tempo: *exec_at_hour* , *wait_for_exec* , *exec_and_wait*
|
172
181
|
- Correções de bugs com tempo superior a 10 minutos nas funções de data: *get_hms* e *get_dma*
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='rpa_suite',
|
5
|
-
version='1.3.
|
5
|
+
version='1.3.3',
|
6
6
|
packages=find_packages(),
|
7
7
|
description='Conjunto de ferramentas essenciais para Automação RPA com Python, que facilitam o dia a dia de desenvolvimento.',
|
8
8
|
long_description_content_type='text/markdown',
|
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
|