import psycopg2 as sgbd
cnx = sgbd.connect(host="localhost", \
user="alice", password="secret")
texte = input ("Texte à rechercher dans le titre :")
c = cnx.cursor()
motif = '%' + texte + '%';
c.execute("SELECT * FROM livre WHERE titre LIKE %s", \
[ motif ])
for l in c.fetchall():
print(l[0], l[2])
cnx.close()