This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-01/src/helper_sent.py
2019-11-25 15:17:32 +05:30

9 lines
165 B
Python

"""
Insert operation into sent table
"""
from helper_sql import *
def insert(t):
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)