Answers for "formatting excel files with pandas"

1

read excel file using pandas in python

import sqlite3
import pandas as pd
from sqlalchemy import create_engine

# Read Excel file or sheets using pandas

# Setup code :)

file = "location of Excel file..."

engine = create_engine('sqlite://', echo=False)
df = pd.read_excel(file, sheet_name=sheetname)
df.to_sql("test", engine, if_exists="replace", index=False)
results = engine.execute("Select * from test")
final = pd.DataFrame(results, columns=df.columns)
Posted by: Guest on February-03-2021

Code answers related to "formatting excel files with pandas"

Python Answers by Framework

Browse Popular Code Answers by Language