update parser html / cli et interface non depndante
This commit is contained in:
parent
be9d434ee0
commit
e9b3636df8
25
chaineTV.py
25
chaineTV.py
@ -1,6 +1,4 @@
|
||||
from tkinter import *
|
||||
from bs4 import BeautifulSoup
|
||||
import urllib.request
|
||||
import json
|
||||
import sys
|
||||
import os
|
||||
@ -86,6 +84,8 @@ def RepresentsInt(s):
|
||||
|
||||
|
||||
def parsechaine(file):
|
||||
from bs4 import BeautifulSoup
|
||||
import urllib.request
|
||||
URL = 'https://fr.wikipedia.org/wiki/Liste_des_cha%C3%AEnes_de_Canal'
|
||||
liste_chaine = {}
|
||||
response = urllib.request.urlopen(URL)
|
||||
@ -96,15 +96,16 @@ def parsechaine(file):
|
||||
for tr in item.find_all('tr'):
|
||||
|
||||
firstTD = tr.find()
|
||||
num = firstTD.string
|
||||
if RepresentsInt(num):
|
||||
num = firstTD.text
|
||||
#print(num)
|
||||
if RepresentsInt(num):
|
||||
|
||||
if RepresentsInt(firstTD.find_next().string):
|
||||
#print(firstTD.find_next().find_next().string)
|
||||
liste_chaine[num] = firstTD.find_next().find_next().string
|
||||
#print(firstTD.find_next().find_next().text)
|
||||
liste_chaine[int(num)] = firstTD.find_next().find_next().text
|
||||
else:
|
||||
#print(firstTD.find_next().string)
|
||||
liste_chaine[num] = firstTD.find_next().string
|
||||
liste_chaine[int(num)] = firstTD.find_next().text
|
||||
print(json.dumps(liste_chaine, indent=4))
|
||||
with open(file, 'w', encoding='utf-8') as f:
|
||||
json.dump(liste_chaine, f, indent=4)
|
||||
@ -120,18 +121,14 @@ def cli(num):
|
||||
print("numero de chaine inconnue")
|
||||
|
||||
|
||||
interface = Interface()
|
||||
if len(sys.argv) > 1:
|
||||
arg = True
|
||||
else:
|
||||
interface.value.set("")
|
||||
arg = False
|
||||
|
||||
if arg == True:
|
||||
if len(sys.argv) > 1:
|
||||
for i in sys.argv[1:]:
|
||||
if i =="update":
|
||||
parsechaine(os.path.dirname(os.path.realpath(__file__))+"/chaine.json")
|
||||
else:
|
||||
cli(i)
|
||||
else:
|
||||
interface = Interface()
|
||||
interface.value.set("")
|
||||
interface.mainloop()
|
||||
|
Loading…
Reference in New Issue
Block a user