Using existing database

Simply load your database into python using sl3aio and get access to all of the tools available in the library.


If you already have SQLite3 database with existing tables and you want to use it asynchronously with sl3aio, you can load all of the tables from it using the following example.

First import necessary classes.

from sl3aio import Connector, SolidTable

Now connect to the desired database and load the table(-s) from it:

async with Connector('my_database.db').connection_manager() as cm:
    table = await SolidTable.from_database('my_table', cm)

Table is ready to work. See how to access it.