You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so basically we want the downstream boilerplate for this to be:
importschematableasstschl=st.parse('schedule')
ifschdl.exists():
# do the thing
w/o schematable, w/ only sqlalchemy
for some context here is the downstream boilerplate w/o this library completely
hint: this is basically the implementation so you can just copy and paste this in there 😉
importsqlalchemyassaschdl_db_url='sqlite://'schdl_table='schedule'schdl_engine=sa.create_engine(schdl_db_url)
ifschdl_engine.has_table(schdl_table):
# do the thing
w/ schematable
more context on the downstream boilerplate w/ this library
importschematableasstschl=st.parse('schedule')
ifschdl.engine.has_table(schdl.table, schdl.schema):
# do the thing
The text was updated successfully, but these errors were encountered:
so basically we want the downstream boilerplate for this to be:
w/o
schematable
, w/ onlysqlalchemy
for some context here is the downstream boilerplate w/o this library completely
hint: this is basically the implementation so you can just copy and paste this in there 😉
w/
schematable
more context on the downstream boilerplate w/ this library
The text was updated successfully, but these errors were encountered: