Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Registrati
Accedi
Cinabre
/
My-Manga-List
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Ajout de get_last_release()
master
TheBidouilleur
2 settimane fa
parent
79c254f7b5
commit
06f20c6c55
1 ha cambiato i file
con
5 aggiunte
e
0 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
database.py
+ 5
- 0
database.py
Vedi File
@@ -12,3 +12,8 @@ def get_dbtitle(mid):
cursor.execute("SELECT title FROM manga WHERE id = '%s';" % mid)
rows = cursor.fetchall()
return rows[0][0]
def get_last_release(mid):
cursor.execute("SELECT chap FROM manga WHERE id = '%s';" % mid)
rows = cursor.fetchall()
return rows[0][0]
Write
Preview
Loading…
Annulla
Salva