no momentálně žádný nemam, protože sem netušil jak to udělat. Pokud myslíš kód aplikace do který to potřebuju tak:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import urllib.request
from tkinter import *
x = 100
def vyberSouboru():
cekejte = Label(hlavni, text=("soubor byl úspěšně stažen"), foreground="dark green")
cekejte.pack()
if __name__ == "__main__":
soubor = adresaC.get()
# download file
page = urllib.request.urlopen(adresaS.get())
content = page.read()
page.close()
# save downloaded file
output_file = open(soubor, "wb")
output_file.write(content)
output_file.close()
nazev='soubor.file'
soubor=file(nazev,'w')
vstup=raw_input(soubor)
soubor.write(vstup)
soubor.close()
hlavni=Tk()
hlavni.title(("downloader 0.1.1 (beta)"))
width=0
text1 = Label(hlavni, text=("zde zadejte adresu souboru na serveru"))
text1.pack()
adresaS=Entry(hlavni)
adresaS.pack(fill=X)
text2 = Label(hlavni, text=("zde zadejte adresu souboru a jeho název na počítači"))
text2.pack()
adresaC=Entry(hlavni)
adresaC.pack(fill=X)
download=Button(hlavni, text='download', command=vyberSouboru, background="#F1CB04")
download.pack()
hlavni.mainloop()