2017-02-21 15:00:55 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
def addLyrics(text, ref = 0, db = dbtools.dbHelper()):
|
2017-02-21 15:08:09 +00:00
|
|
|
db.executeQuery("INSERT INTO lyrics(text, ref, active) VALUES('%s', %i, %i);" % (text, ref, (1 if ref == 0 else 0)))
|
2017-02-21 15:00:55 +00:00
|
|
|
db.commit()
|
|
|
|
return db.cur.lastrowid
|
|
|
|
|
|
|
|
def queryLyrics(ref = 0):
|
|
|
|
text = input("Text: ")
|
2017-02-21 15:03:45 +00:00
|
|
|
|
|
|
|
if len(text) > 130:
|
|
|
|
print("Text too long (%i characters)" % len(text))
|
|
|
|
return queryLyrics(ref)
|
|
|
|
|
|
|
|
ref = int(input("Reference [%i]: " % ref) or ref)
|
2017-02-21 15:00:55 +00:00
|
|
|
|
|
|
|
row = addLyrics(text, ref)
|
|
|
|
|
|
|
|
ans = ""
|
|
|
|
|
|
|
|
while ans.lower() not in ("y", "n"):
|
|
|
|
ans = input("Add follow-up lyrics? [Y/n] ")
|
|
|
|
|
|
|
|
if ans.lower() != "n":
|
|
|
|
queryLyrics(row)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
queryLyrics()
|