bazarr/get_providers.py

20 lines
480 B
Python
Raw Normal View History

2017-09-19 10:43:14 +00:00
import sqlite3
from subliminal import *
# Get providers list from subliminal
providers_list = sorted(provider_manager.names())
# Open database connection
2017-10-19 23:50:54 +00:00
db = sqlite3.connect('data/db/bazarr.db')
2017-09-19 10:43:14 +00:00
c = db.cursor()
# Insert providers in database table
for provider_name in providers_list:
c.execute('''INSERT OR IGNORE INTO table_settings_providers(name) VALUES(?)''', (provider_name, ))
# Commit changes to database table
db.commit()
# Close database connection
db.close()