Compare commits
No commits in common. "master" and "dev" have entirely different histories.
@ -1,6 +1,2 @@
|
||||
# chainetv
|
||||
|
||||
## to do
|
||||
* finish class json
|
||||
* crée class emission
|
||||
* crée class cli?
|
||||
|
14
chaineTV.py
14
chaineTV.py
@ -35,7 +35,7 @@ class ScrollableCanvas(Frame):
|
||||
def __init__(self, parent, *args, **kw):
|
||||
Frame.__init__(self, parent, *args, **kw)
|
||||
|
||||
self.canvas=canvas=Canvas(self,width=300,height=300,scrollregion=(0,0,500,500))
|
||||
canvas=Canvas(self,width=300,height=300,scrollregion=(0,0,500,500))
|
||||
|
||||
vbar=Scrollbar(self,orient=VERTICAL)
|
||||
vbar.pack(side=RIGHT, fill=Y)
|
||||
@ -54,6 +54,7 @@ class ScrollableCanvas(Frame):
|
||||
# update the scrollbars to match the size of the inner frame
|
||||
size = (interior.winfo_reqwidth(), interior.winfo_reqheight())
|
||||
canvas.config(scrollregion="0 0 %s %s" % size)
|
||||
canvas.yview_moveto(1)
|
||||
if interior.winfo_reqwidth() != canvas.winfo_width():
|
||||
# update the canvas's width to fit the inner frame
|
||||
canvas.config(width=interior.winfo_reqwidth())
|
||||
@ -66,9 +67,8 @@ class ScrollableCanvas(Frame):
|
||||
canvas.bind('<Configure>', _configure_canvas)
|
||||
|
||||
def _MouseWhell(event):
|
||||
print (event.delta/120)
|
||||
canvas.yview_scroll(-1*(event.delta/120), "units")
|
||||
self.bind("<MouseWheel>",_MouseWhell)
|
||||
self.bind_all("<MouseWheel>",_MouseWhell)
|
||||
|
||||
|
||||
|
||||
@ -149,7 +149,6 @@ class Interface:
|
||||
print("numero de chaine inconnue")
|
||||
unknow=Label(self.resultframe.interior, text="numero de chaine inconnue")
|
||||
unknow.pack()
|
||||
self.resultframe.canvas.yview_moveto(1)
|
||||
|
||||
self.value.set("")
|
||||
|
||||
@ -161,7 +160,7 @@ class Interface:
|
||||
|
||||
def click_update(self):
|
||||
self.data.parsechaine()
|
||||
labelupdate = Label(self.resultframe.interior, text="update chaine done"+"\r")
|
||||
labelupdate = Label(self.resultframe, text="update chaine done"+"\r")
|
||||
labelupdate.pack()
|
||||
|
||||
def _openlink(self,link):
|
||||
@ -171,6 +170,7 @@ class Interface:
|
||||
class JSONfile:
|
||||
|
||||
def __init__(self,filename):
|
||||
import os,json
|
||||
self.datafilepath=os.path.dirname(os.path.realpath(__file__))+"/"+filename
|
||||
try:
|
||||
with open(self.datafilepath, 'r', encoding='utf-8') as f:
|
||||
@ -198,10 +198,10 @@ class JSONfile:
|
||||
|
||||
if RepresentsInt(firstTD.find_next().string):
|
||||
#print(firstTD.find_next().find_next().text)
|
||||
liste_chaine[str(int(num))] = firstTD.find_next().find_next().text
|
||||
liste_chaine[int(num)] = firstTD.find_next().find_next().text
|
||||
else:
|
||||
#print(firstTD.find_next().string)
|
||||
liste_chaine[str(int(num))] = firstTD.find_next().text
|
||||
liste_chaine[int(num)] = firstTD.find_next().text
|
||||
print(json.dumps(liste_chaine, indent=4))
|
||||
self.data=liste_chaine
|
||||
with open(self.datafilepath, 'w', encoding='utf-8') as f:
|
||||
|
Loading…
Reference in New Issue
Block a user