bazarr/utils.py

17 lines
575 B
Python
Raw Normal View History

2017-09-17 21:02:16 +08:00
import sqlite3
import time
2017-09-16 08:49:46 +08:00
2017-09-17 21:02:16 +08:00
def history_log(action, sonarrSeriesId, sonarrEpisodeId, description):
# Open database connection
2017-10-20 07:50:54 +08:00
db = sqlite3.connect('data/db/bazarr.db')
2017-09-17 21:02:16 +08:00
c = db.cursor()
2017-09-16 08:49:46 +08:00
2017-09-17 21:02:16 +08:00
# Get Sonarr API URL from database config table
history = c.execute('''INSERT INTO table_history(action, sonarrSeriesId, sonarrEpisodeId, timestamp, description) VALUES (?, ?, ?, ?, ?)''', (action, sonarrSeriesId, sonarrEpisodeId, time.time(), description))
2017-09-16 08:49:46 +08:00
2017-09-17 21:02:16 +08:00
# Commit changes to DB
db.commit()
# Close database connection
db.close()