Python: Unable to download with selenium in webpage

My purpose it to download a zip file from https://www.shareinvestor.com/prices/price_download_zip_file.zip?type=history_all&market=bursa

It is a link in this webpage https://www.shareinvestor.com/prices/price_download.html#/?type=price_download_all_stocks_bursa. Then save it into this directory "/home/vinvin/shKLSE/ (I am using pythonaywhere). Then unzip it and the csv file extract in the directory.

Tkinter grid_forget is clearing the frame

from tkinter import * from PIL import ImageTk,Image root=Tk() root.title("Image Viewer") def buttonforward(image_number): global myLabel myLabel.grid_forget() myLabel = Label(image=imagelist[image_number-1]) myLabel.grid(row=0, column=0, columnspan=3) return my_img1 = ImageTk.PhotoImage(Image.open('mountain1.jpg')) my_img2 = ImageTk.PhotoImage(Image.open('mountain2.jpg')) my_img3 = ImageTk.PhotoImage(Image.open('mountain3.jpg')) my_img4 = ImageTk.PhotoImage(Image.open('mountain4.jpg')) my_img5 = ImageTk.PhotoImage(Image.open('mountain5.jpg')) myLabel = Label(image=my_img1, ).grid(row=0, column=0, columnspan=3) imagelist = [my_img1, my_img2, my_img3, my_img4, my_img5] button_back = Button(root, text='<<').grid(row=1,column=0) … Read more