---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-1-b7eb239f86a7> in <module>
1 # Initialize path to SQLite database
2 path = 'data/classic_rock.db'
----> 3 con = sq3.Connection(path)
4
5
NameError: name 'sq3' is not defined
why is this showing up?
159 Views Asked by tom321 At
2
It looks like from the traceback that you are attempting to use
sq3
and you either did notimport
the library or did not correctly alias the library in question. Cannot know for sure without your code though.