This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Começo Pseudocodigo | |
inicio variaveis | |
var nome: String | |
var email: String | |
var password: String | |
fim variaveis | |
inicio pegarInformacao | |
nome = Input() | |
email = Input() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import pyodbc | |
from openpyxl import Workbook | |
from openpyxl.utils.dataframe import dataframe_to_rows | |
# Conectar ao banco de dados SQL Server | |
conn = pyodbc.connect('Driver={SQL Server};' | |
'Server=<server_name>;' | |
'Database=<database_name>;' | |
'Trusted_Connection=yes;') |