Skip to content

Repository files navigation

Driver for SQLite Cloud

SQLite Cloud logo

Build StatuscodecovPyPI - VersionPyPI - DownloadsPyPI - Python Version


SQLite Cloud is a powerful Python package that allows you to interact with the SQLite Cloud database seamlessly. It provides methods for various database operations. This package is designed to simplify database operations in Python applications, making it easier than ever to work with SQLite Cloud.

Compatibility with sqlite3 API

We aim for full compatibility with the Python built-in sqlite3 API (based on Python DBAPI 2.0 PEP 249), with the primary distinction being that our driver connects to SQLite Cloud databases. This allows you to migrate your local SQLite databases to SQLite Cloud without needing to modify your existing Python code that uses the sqlite3 API.

Autocommit transactions: Difference between sqlitecloud and sqlite3

In sqlitecloud, autocommit is always enabled, and we currently do not support disabling it. This means that the isolation_level is always set to None, resulting in autocommit being permanently on.

This behavior differs from the sqlite3 Python module, where autocommit can be controlled (see details in the section Controlling Transactions in the official documentation).

To manage transactions in sqlitecloud, you should explicitly use the BEGIN, ROLLBACK, SAVEPOINT, and RELEASE commands as needed.

Installation and Usage

$ pip install sqlitecloud
importsqlitecloud# Open the connection to SQLite Cloudconn=sqlitecloud.connect("sqlitecloud://myhost.sqlite.cloud:8860?apikey=myapikey")
# You can autoselect the database during the connect call# by adding the database name as path of the SQLite Cloud# connection string, eg:# conn = sqlitecloud.connect("sqlitecloud://myhost.sqlite.cloud:8860/mydatabase?apikey=myapikey")db_name="chinook.sqlite"conn.execute(f"USE DATABASE {db_name}")
cursor=conn.execute("SELECT * FROM albums WHERE AlbumId = ?", (1, ))
result=cursor.fetchone()
print(result)
conn.close()

sqlitecloud loves sqlite3

Is your project based on the sqlite3 library to interact with a SQLite database?

Just install sqlitecloud package from pip and change the module name! That's it!

Try it yourself:

# import sqlitecloudimportsqlite3# comment out the following line...conn=sqlite3.connect(":memory:")
# ... and uncomment this line and import the sqlitecloud package# (add the database name like in this connection string)# conn = sqlitecloud.connect("sqlitecloud://myhost.sqlite.cloud:8860/mydatabase.sqlite?apikey=myapikey")conn.execute("CREATE TABLE IF NOT EXISTS producers (ProducerId INTEGER PRIMARY KEY, name TEXT, year INTEGER)")
conn.executemany(
"INSERT INTO producers (name, year) VALUES (?, ?)",
[("Sony Music Entertainment", 2020), ("EMI Music Publishing", 2021)],
)
cursor=conn.execute("SELECT * FROM producers")
forrowincursor:
print(row)

SQLite Cloud for SQLAlchemy (beta)

This is an initial release, features and stability may not be guaranteed in all scenarios.

If you encounter any bugs or issues, please feel free to open an issue on our GitHub repository.

We’ve implemented the initial support for sqlitecloud with SQLAlchemy, allowing you to utilize all standard SQLAlchemy operations and queries. For further information, please see the dedicated REDAME.

Example

The example is based on chinook.sqlite databse on SQLite Cloud

Install the package:

$ pip install sqlalchemy-sqlitecloud
importsqlalchemyfromsqlalchemyimportColumn, ForeignKey, Integer, Stringfromsqlalchemy.dialectsimportregistryfromsqlalchemy.ormimportbackref, declarative_base, relationship, sessionmakerBase=declarative_base()
classArtist(Base):
__tablename__="artists"ArtistId=Column("ArtistId", Integer, primary_key=True)
Name=Column("Name", String)
Albums=relationship("Album", backref=backref("artist"))
classAlbum(Base):
__tablename__="albums"AlbumId=Column("AlbumId", Integer, primary_key=True)
ArtistId=Column("ArtistId", Integer, ForeignKey("artists.ArtistId"))
Title=Column("Title", String)
# SQLite Cloud connection stringconnection_string="sqlitecloud://myhost.sqlite.cloud:8860/mydatabase.sqlite?apikey=myapikey"engine=sqlalchemy.create_engine(connection_string)
Session=sessionmaker(bind=engine)
session=Session()
name="John Doe"query=sqlalchemy.insert(Artist).values(Name=name)
result_insert=session.execute(query)
title="The Album"query=sqlalchemy.insert(Album).values(
ArtistId=result_insert.lastrowid, Title=title
)
session.execute(query)
query= (
sqlalchemy.select(Artist, Album)
.join(Album, Artist.ArtistId==Album.ArtistId)
.where(Artist.ArtistId==result_insert.lastrowid)
)
result=session.execute(query).fetchone()
print("Artist Name: "+result[0].Name)
print("Album Title: "+result[1].Title)

SQLite Cloud for Pandas DataFrame

Pandas is a Python package for data manipulation and analysis. It provides high-performance, easy-to-use data structures, such as DataFrame.

Use the connection to SQLite Cloud to:

  • Insert data from a DataFrame into a SQLite Cloud database.
  • Query SQLite Cloud and fetch the results into a DataFrame for further analysis.

Example:

importioimportpandasaspdimportsqliteclouddfprices=pd.read_csv(
io.StringIO(
"""DATE,CURRENCY,PRICE 20230504,USD,201.23456 20230503,USD,12.34567 20230502,USD,23.45678 20230501,USD,34.56789"""
)
)
conn=sqlitecloud.connect("sqlitecloud://myhost.sqlite.cloud:8860/mydatabase.sqlite?apikey=myapikey")
conn.executemany("DROP TABLE IF EXISTS ?", [("PRICES",)])
# Write the dataframe to the SQLite Cloud database as a table PRICESdfprices.to_sql("PRICES", conn, index=False)
# Create the dataframe from the table PRICES on the SQLite Cloud databasedf_actual_prices=pd.read_sql("SELECT * FROM PRICES", conn)
# Inspect the dataframeprint(df_actual_prices.head())
# Perform a simple query on the dataframequery_result=df_actual_prices.query("PRICE > 50.00")
print(query_result)

About

Python drivers for SQLite Cloud

Topics

Resources

Stars

22 stars

Watchers

3 watching

Forks

Releases

Used by

Contributors

Languages