[Link]
html
Relative file path
this requires three slashes:
===================================================
# sqlite://<nohostname>/<path>
# where <path> is relative:
engine = create_engine('sqlite:///[Link]')
Absolute file path
the three slashes are followed by the absolute path
===================================================
# Windows
engine = create_engine('sqlite:///C:\\path\\to\\[Link]')
# Windows alternative using raw string
engine = create_engine(r'sqlite:///C:\path\to\[Link]')
memory: database
Specify an empty URL
===================================================
engine = create_engine('sqlite://')