You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According pandas-dev/pandas#10654
read from SQL database is now easier with Pandas than it was
Instead of
```
import sqlalchemy as sa
engine = sa.create_engine('sqlite://db.db')
df = pd.read_sql('select * from t',
con=engine)
```
we can do
```
df = pd.read_sql('select * from t',
con='sqlite://db.db')
```
0 commit comments