-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecurity.py
More file actions
34 lines (30 loc) · 769 Bytes
/
security.py
File metadata and controls
34 lines (30 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# FTP
ftp70_host = ""
ftp70_username = ""
ftp70_password = ""
ftp70_porta = 0
# Servidor
siparq = ""
# Conexão com o Banco
driver = "{SQL Server Native Client 11.0}"
name_db = ""
user_db = ""
password_db = ""
# E-mail
email_cobranca = ""
email_teste = ""
def user(concessionaria, tipo):
if concessionaria == 'Bandeirante':
if tipo == 'User':
username_field = ''
return str(username_field)
if tipo == 'Password':
password_field = ''
return str(password_field)
if concessionaria == 'ESCELSA':
if tipo == 'User':
username_field = ''
return str(username_field)
if tipo == 'Password':
password_field = ''
return str(password_field)