Skip to content

Positioning text and displaying URL images #510

Answered by Akascape
amanashraf asked this question in Q&A
Discussion options

You must be logged in to vote

@amanashraf I have analyzed your program code and improved it, here is the result:

Improved Program

result.mp4

Code

import tkinter as tk
import tkinter.messagebox
import customtkinter as ctk
#from Dataframe import Data
from PIL import Image, ImageTk
from urllib.request import urlopen
import io ##Need this module to convert the raw_data 

ctk.set_appearance_mode("System") # Modes: "System" (standard), "Dark", "Light"
ctk.set_default_color_theme("blue") # Themes: "blue" (standard), "green", "dark-blue"

class HomePage(ctk.CTk):
    
    WIDTH = 950
    HEIGHT = 700 ##I have changed the window size

    def __init__(self):
        super().__init__()

        self.title("Movie/Series…

Replies: 2 comments 5 replies

Comment options

You must be logged in to vote
4 replies
@amanashraf
Comment options

@Akascape
Comment options

@Akascape
Comment options

@amanashraf
Comment options

Comment options

You must be logged in to vote
1 reply
@amanashraf
Comment options

Answer selected by amanashraf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants