I am trying out sqlalchemy and i am using this connection string to connect to my databases
engine = create_engine(\'sqlite:///C:\\\\sqlitedbs\\\\database.db\')
Linux stored SQLite3 database
database will be create in the same folder as the .py file:
engine = create_engine('sqlite:///school.db', echo=True)
will instantiate the school.db file in the same folder as the .py file.