def add_value(namebd, title, a, b, c, url):
conn = sqlite3.connect(r'{name}.db'.format(name=namebd))
cur = conn.cursor()
cur.execute(f'''INSERT OR IGNORE INTO "base" (title, a, b, c, url)
VALUES ("{title}", {a}, {b}, {c}, "{url}");''')
conn.commit()
cur.execute(f'''INSERT OR IGNORE INTO "base" (title, a, b, c, url)
VALUES ("{title}", {a}, {b}, {c}, "{url}");''')