mirror of https://github.com/morpheus65535/bazarr
21 lines
543 B
Python
21 lines
543 B
Python
import sqlite3
|
|
import os
|
|
from subliminal import *
|
|
|
|
# Get providers list from subliminal
|
|
providers_list = sorted(provider_manager.names())
|
|
|
|
# Open database connection
|
|
db = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'), timeout=30)
|
|
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()
|