Skip to content

TileDB-Inc/TileDB-Cloud-PythonDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The development of this repository has moved under TileDB-Cloud-Py

TileDB logo

TileDB-Cloud-PythonDB

This package features the TileDB-Cloud-Python connector, which aligns with the Python DB API 2.0 specification. It offers a convenient way for Python developers to connect to TileDB-Cloud and perform all necessary operations. This can also be seen as an alternative to a JDBC or ODBC driver.

Installation

pip install .

Usage

connection = TileDBConnection(token=<API_TOKEN>)
cursor = connection.cursor()
cursor.execute("SELECT * from `tiledb://TileDB-Inc/quickstart_dense`")

row = cursor.fetchone()
while row:
    print(row)
    row = cursor.fetchone()

print(cursor.description())

About

TileDB Connector for Python DB API 2.0

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages