I was wondering if it was possible to use the datetime module in python to create day-specific tables so that the table's name is the date itself.
date_object = datetime.date.today()
sqlite_create_transfer_table = '''CREATE TABLE IF NOT EXISTS date_object (
sender TEXT NOT NULL,
recipient TEXT NOT NULL,
ID text NOT NULL,
Size NOT NULL,
Colour NOT NULL,
Quantity INTEGER NOT NULL);'''
However this just makes the table titled 'date_object' rather than using the variable. Any help would be greatly appreciated, thanks! <3