This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-02/src/helper_sent.py
2020-01-07 12:13:51 +05:30

11 lines
222 B
Python

"""
Insert values into sent table
"""
from helper_sql import sqlExecute
def insert(t):
"""Perform an insert into the `sent` table"""
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)