Skip to content

nsragow/SQLPanda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SQLPanda

If you want to read an sqlite file with a pandas dataframe in two lines of python this is the package for you.

Installation

pip install sql-panda-wrapper

From the documentation:

Wraps SQLite3 instance to streamline the SQL query to Pandas DataFrame process.

Any DataFrames produced by this object are detached from the sqlite database (so mutating the df's will not have an effect on the source table)

Warning: Can be slow with large database files. In such a case use the lite_load method inplace of the load method.

Setup:

    from SQLPanda import load

    sdf = load("data.sqlite")
    #where data.splite is the SQLite DB file

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages