PyBitmessage/src/helper_sent.py

10 lines
212 B
Python
Raw Normal View History

2019-10-07 13:58:12 +00:00
"""
2019-10-09 13:27:51 +00:00
Insert values into sent table
2019-10-07 13:58:12 +00:00
"""
2019-10-09 13:27:51 +00:00
from helper_sql import *
def insert(t):
2019-10-09 13:27:51 +00:00
"""Perform an insert into the `sent` table"""
2015-03-09 06:35:32 +00:00
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)