twitools/lyricsmanager.py
2017-02-26 19:52:55 +01:00

39 lines
793 B
Python
Executable file

#!/usr/bin/env python3
import dbtools
def addLyrics(text, ref = 0, db = dbtools.dbHelper()):
db.executeQuery("INSERT INTO lyrics(text, ref, active) VALUES('%s', %i, %i);" % (text.replace("'", "''"), ref, (1 if ref == 0 else 0)))
db.commit()
return db.cur.lastrowid
def queryLyrics(ref = 0):
text = "."
out = ""
while text != "":
text = input("Text: ")
if out != "":
out += "\n%s" % text
else:
out = text
if len(out) > 130:
print("Text too long (%i characters)" % len(out))
return queryLyrics(ref)
ref = int(input("Reference [%i]: " % ref) or ref)
row = addLyrics(out, 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()