当前位置: 首页>>代码示例>>Python>>正文


Python API.ophalenInfo方法代码示例

本文整理汇总了Python中API.ophalenInfo方法的典型用法代码示例。如果您正苦于以下问题:Python API.ophalenInfo方法的具体用法?Python API.ophalenInfo怎么用?Python API.ophalenInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在API的用法示例。


在下文中一共展示了API.ophalenInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: run

# 需要导入模块: import API [as 别名]
# 或者: from API import ophalenInfo [as 别名]
def run(titel,dag,id):
    window = Tk()

    def showKaartje(titel,id, aanbieder, starttijd):
        window.destroy()
        kaartje.show(koop(titel,id), id, titel, aanbieder, starttijd)

    def back(id):
        window.destroy()
        Beginscherm.beginscherm(id)

    def koop(titel, id):
        invoer = titel + id
        enc2 = ""
        for i in invoer:
            enc = ord(i) + 3
            enc2 = enc2 + chr(enc)
        return enc2

    film = API.ophalenInfo(titel,dag)
    kopen = Button(window, text="Kaartje kopen", command=lambda :showKaartje(titel,id, film['zender'],film['starttijd']))
    kopen.place(x=10, y=10)

    y = 140
    i = 0
    j = 30
    while i <= len(film['synopsis']):
        omschrijvinglabel = Label(master=window, text=film['synopsis'][i:j])
        omschrijvinglabel.place(x=10,y=y)
        i+=30
        j+=30
        y+=20


    titellabel = Label(master=window, text='Titel: '+film['titel'])
    jaarlabel = Label(master=window, text='Jaar: '+film['jaar'])
    regisseurlabel = Label(master=window, text='Regisseur: '+film['regisseur'])
    genrelabel = Label(master=window, text='Genre: ' +film['genre'])

    titellabel.place(x=10, y=50)
    jaarlabel.place(x=10,y=70)
    regisseurlabel.place(x=10,y=90)
    genrelabel.place(x=10,y=110)

    picurl=film['cover']
    pic_bytes = urlopen(picurl).read()
    data_stream = io.BytesIO(pic_bytes)
    pil_image = Image.open(data_stream)
    tk_image = ImageTk.PhotoImage(pil_image)
    photolabel=Label(image=tk_image)
    photolabel.place(x=210,y=30)
    window.geometry("800x600")
    window.mainloop()
开发者ID:Pengelz,项目名称:thuisbioscoop,代码行数:55,代码来源:FilmFrame.py


注:本文中的API.ophalenInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。