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.
21 lines
520 B
21 lines
520 B
7 years ago
|
import sqlite3
|
||
|
import pycountry
|
||
|
|
||
|
# Get languages list in langs tuple
|
||
|
langs = [[lang.alpha_3,lang.alpha_2,lang.name]
|
||
|
for lang in pycountry.languages
|
||
|
if hasattr(lang, 'alpha_2')]
|
||
|
|
||
|
# Open database connection
|
||
|
db = sqlite3.connect('bazarr.db')
|
||
|
c = db.cursor()
|
||
|
|
||
|
# Insert languages in database table
|
||
|
c.executemany('''INSERT OR IGNORE INTO table_settings_languages(code3, code2, name) VALUES(?, ?, ?)''', langs)
|
||
|
|
||
|
# Commit changes to database table
|
||
|
db.commit()
|
||
|
|
||
|
# Close database connection
|
||
|
db.close()
|