This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Cinabre
/
My-Manga-List
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Debut de la fonction fetch_all_id pour récupérer tout les ID des mangas
master
TheBidouilleur
2 weeks ago
parent
25480ff678
commit
6a6bcf39bc
1 changed files
with
7 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-1
update_manga.py
+ 7
- 1
update_manga.py
View File
@@ -7,7 +7,13 @@ cursor = conn.cursor()
def main():
#print("Pas de fonction Main")
update_manga(31477)
fetch_all_id()
def fetch_all_id():
print("Recuperation des IDs")
cursor.execute("SELECT id FROM manga;")
rows = cursor.fetchall()
def update_manga(id):
url = get_url(id)
Write
Preview
Loading…
Cancel
Save