私は次のクラスを持っています:
class SomeClass:
def __init__(self, name, date):
self.name = name
self.date = date
これで、別のモジュールに関数があり、SQLiteデータベースに接続してクエリを実行します。
def getEntry(user):
data = []
connection = lite.connect(database)
with connection:
cur = connection.cursor()
cur.execute("SELECT name, date FROM table WHERE column = ?", [user])
events = cur.fetchall()
# instantiate an instance of `SomeClass`
return data
では、どのようにしてインスタンスを作成し、新しく作成したインスタンスにエントリを渡すSomeClass
のでしょうか。name
date