You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
472 B
20 lines
472 B
8 years ago
|
import sqlite3
|
||
|
from subliminal import *
|
||
|
|
||
|
# Get providers list from subliminal
|
||
|
providers_list = sorted(provider_manager.names())
|
||
|
|
||
|
# Open database connection
|
||
|
db = sqlite3.connect('bazarr.db')
|
||
|
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()
|