csc-cia-stne 0.0.28__tar.gz → 0.0.30__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.
Files changed (27) hide show
  1. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/PKG-INFO +1 -1
  2. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/pyproject.toml +1 -1
  3. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/email.py +1 -1
  4. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/gcp_bigquery.py +3 -1
  5. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne.egg-info/PKG-INFO +1 -1
  6. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/LICENCE +0 -0
  7. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/README.md +0 -0
  8. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/README_PYPI.md +0 -0
  9. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/setup.cfg +0 -0
  10. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/__init__.py +0 -0
  11. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/bc_correios.py +0 -0
  12. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/bc_sta.py +0 -0
  13. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/karavela.py +0 -0
  14. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/logger_json.py +0 -0
  15. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/logger_rich.py +0 -0
  16. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/servicenow.py +0 -0
  17. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/stne_admin.py +0 -0
  18. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/utilitarios/__init__.py +0 -0
  19. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/utilitarios/functions/__init__.py +0 -0
  20. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/utilitarios/functions/func_b64.py +0 -0
  21. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/utilitarios/functions/func_converters.py +0 -0
  22. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/utilitarios/functions/func_recriar_pastas.py +0 -0
  23. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne/utilitarios/functions/func_titulo.py +0 -0
  24. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne.egg-info/SOURCES.txt +0 -0
  25. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne.egg-info/dependency_links.txt +0 -0
  26. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne.egg-info/requires.txt +0 -0
  27. {csc_cia_stne-0.0.28 → csc_cia_stne-0.0.30}/src/csc_cia_stne.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: csc_cia_stne
3
- Version: 0.0.28
3
+ Version: 0.0.30
4
4
  Summary: Biblioteca do time CSC-CIA utilizada no desenvolvimento de RPAs
5
5
  License: MIT
6
6
  Keywords: karavela,csc,cia,stone,rpa
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "csc_cia_stne"
7
- version = "0.0.28"
7
+ version = "0.0.30"
8
8
  license = { text = "MIT" }
9
9
  description = "Biblioteca do time CSC-CIA utilizada no desenvolvimento de RPAs"
10
10
  keywords = ["karavela", "csc", "cia", "stone", "rpa"]
@@ -128,7 +128,7 @@ class Email():
128
128
  'error':str(e)
129
129
  }
130
130
 
131
- msg.attach(MIMEText(message))
131
+ msg.attach(MIMEText(message, 'html'))
132
132
 
133
133
  self.server.sendmail(self.email_sender, to + cc + cco, msg.as_string())
134
134
 
@@ -211,7 +211,9 @@ class BigQuery():
211
211
  priority=bigquery.QueryPriority.INTERACTIVE,
212
212
  use_legacy_sql=use_legacy,
213
213
  use_query_cache=use_cache,
214
- query_parameters=query_parameters,
214
+ query_parameters=[
215
+ bigquery.ScalarQueryParameter(param["name"], param["type"], param["value"]) for param in query_parameters
216
+ ],
215
217
  )
216
218
 
217
219
  result_query = self.client.query(query_to_execute,job_config=job_config).result()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: csc_cia_stne
3
- Version: 0.0.28
3
+ Version: 0.0.30
4
4
  Summary: Biblioteca do time CSC-CIA utilizada no desenvolvimento de RPAs
5
5
  License: MIT
6
6
  Keywords: karavela,csc,cia,stone,rpa
File without changes
File without changes
File without changes