Skip to content
Discussion options

You must be logged in to vote

Yes! In the next days we are going to release an update to the sqlitecloud package.
It will allow you to use the connection to SQLite Cloud directly into the Pandas dataframe like:

import pandas as pd
import sqlitecloud

con = sqlitecloud.connect("sqlitecloud://myhost.sqlitecloud.io/dbname?apikey=abc1234")
df = pd.read_sql_query("SELECT * from albums", conn)

print(df.head())

conn.close()

Is this solution the feature you are you looking for?

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@ben112233
Comment options

@danielebriggi
Comment options

Answer selected by danielebriggi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants