Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: cinemagoer library problem
Post: RE: cinemagoer library problem

(Sep-06-2023, 08:06 AM)menator01 Wrote: Here is a tkinter version. The movie search is not finished but, can search by person. As before, it takes a minute as there are several queries being done. ...
lunacy90 General Coding Help 21 2,413 Sep-08-2023, 03:16 PM
    Thread: cinemagoer library problem
Post: RE: cinemagoer library problem

(Sep-05-2023, 12:24 PM)deanhystad Wrote: Because there are fewer that 10 items? My guess is there is 1, but that is only a guess. Have you looked at the return value for get_top250_movies()? And ...
lunacy90 General Coding Help 21 2,413 Sep-05-2023, 01:30 PM
    Thread: cinemagoer library problem
Post: RE: cinemagoer library problem

hello again ok so im trying to generate the top 10 best movies from imdb. i have the code below that i found in a tutorial but as you can see under the code the variable is empty. I tried both Cinemag...
lunacy90 General Coding Help 21 2,413 Sep-05-2023, 11:58 AM
    Thread: cinemagoer library problem
Post: RE: cinemagoer library problem

(Sep-05-2023, 03:24 AM)menator01 Wrote: Could use filmography but, returns a lot of stuff that I don't know if it even involves jolie I think it's the database. I used harrison ford and got movies t...
lunacy90 General Coding Help 21 2,413 Sep-05-2023, 10:58 AM
    Thread: cinemagoer library problem
Post: RE: cinemagoer library problem

(Sep-05-2023, 03:24 AM)menator01 Wrote: Could use filmography but, returns a lot of stuff that I don't know if it even involves jolie I think it's the database. I used harrison ford and got movies t...
lunacy90 General Coding Help 21 2,413 Sep-05-2023, 10:12 AM
    Thread: cinemagoer library problem
Post: RE: cinemagoer library problem

(Sep-04-2023, 06:45 PM)deanhystad Wrote: The data comes from Cinemagoer, an IMDB scraper package. Lunacy probably should have posted this question in the original thread instead of starting a new o...
lunacy90 General Coding Help 21 2,413 Sep-04-2023, 07:55 PM
    Thread: cinemagoer library problem
Post: cinemagoer library problem

I am trying to make an application that in part prints out the last 10 films released based on actor which means i want to exclude announced films if they haven/t been released yet def get_data_actor...
lunacy90 General Coding Help 21 2,413 Sep-04-2023, 06:19 PM
    Thread: imdby package problem
Post: RE: imdby package problem

(Sep-04-2023, 02:42 PM)deanhystad Wrote: How about the one I mentioned in my first reply, Cinemagoer (used to be imdbPy)? That was last updated in May. that was very helpful. after messing about a ...
lunacy90 General Coding Help 8 1,148 Sep-04-2023, 03:45 PM
    Thread: imdby package problem
Post: RE: imdby package problem

(Sep-04-2023, 02:33 PM)deanhystad Wrote: Looks like an internal package problem. Probably due to a change in the IMDB web page. Move on to a different package. This fails if there is no "h4" in y...
lunacy90 General Coding Help 8 1,148 Sep-04-2023, 02:36 PM
    Thread: imdby package problem
Post: RE: imdby package problem

(Sep-04-2023, 01:54 PM)deanhystad Wrote: Post full error message and trace. Or would it be better if I installed the module so I can run your code snd maybe see the error? My guess would be that t...
lunacy90 General Coding Help 8 1,148 Sep-04-2023, 02:30 PM
    Thread: imdby package problem
Post: RE: imdby package problem

(Sep-04-2023, 01:54 PM)deanhystad Wrote: Post full error message and trace. Or would it be better if I installed the module so I can run your code snd maybe see the error? My guess would be that t...
lunacy90 General Coding Help 8 1,148 Sep-04-2023, 02:14 PM
    Thread: imdby package problem
Post: imdby package problem

I am trying to build an app that connects on imdb module and will be able to access diferent kinds of information about the film in question from imdby.imdb import imdb details=imdb("tt4154796") print...
lunacy90 General Coding Help 8 1,148 Sep-04-2023, 12:25 PM
    Thread: how to open a popup window in tkinter with entry,label and button
Post: RE: how to open a popup window in tkinter with ent...

I found the solution all by myself. In case anyone needs a pop up window lookup the simpledialog module of tkinter. There is an askstring, askinteger and askfloat function that you can use. The option...
lunacy90 General Coding Help 1 901 Sep-01-2023, 12:07 AM
    Thread: how to open a popup window in tkinter with entry,label and button
Post: how to open a popup window in tkinter with entry,l...

I need to be able to open a pop up window with an Label, Entry and Button widgets. They have to be located from left to right (label/entry/button). I want the button function to output the entry input...
lunacy90 General Coding Help 1 901 Aug-31-2023, 09:10 PM
    Thread: Tkinter button images not showing up
Post: RE: Tkinter button images not showing up

(Aug-31-2023, 05:43 PM)deanhystad Wrote: When you make the buttons you need to tell them their parent is "window". For example: deposit_button=Button(window, text="Deposit Money" image=deposit_img,...
lunacy90 General Coding Help 7 1,614 Aug-31-2023, 06:17 PM
    Thread: Tkinter button images not showing up
Post: RE: Tkinter button images not showing up

(Aug-31-2023, 05:33 PM)deanhystad Wrote: Much better. Thankyou. I don't understand what you are trying to do. You make a canvas and add that to the window. Then you make some buttons, but you ar...
lunacy90 General Coding Help 7 1,614 Aug-31-2023, 05:35 PM
    Thread: Tkinter button images not showing up
Post: RE: Tkinter button images not showing up

(Aug-31-2023, 05:22 PM)deanhystad Wrote: I am not going to help you until you fix your post by adding the correct python tags. You've been warned about this on several occasions. Thanks. Sorry i tr...
lunacy90 General Coding Help 7 1,614 Aug-31-2023, 05:25 PM
    Thread: Tkinter button images not showing up
Post: Tkinter button images not showing up

I have the following code from tkinter import * from tkinter import messagebox def read_account_balance(): try: with open("money.txt","r") as file: money=float(file.read())...
lunacy90 General Coding Help 7 1,614 Aug-31-2023, 05:06 PM
    Thread: send function output from one py file to another (OOP)
Post: RE: send function output from one py file to anoth...

(Aug-26-2023, 10:33 AM)deanhystad Wrote: Did you look at my example? The option menu control used to select the quiz category was bound to a function. Selecting a category calls the function. The...
lunacy90 GUI 15 2,441 Aug-26-2023, 11:52 AM
    Thread: send function output from one py file to another (OOP)
Post: RE: send function output from one py file to anoth...

(Aug-25-2023, 03:34 PM)deanhystad Wrote: Quote:basically the data py file's function returns a list of dictionaries into the main py file Why doesn't the Quiz brain do this? The Quiz Brain is the t...
lunacy90 GUI 15 2,441 Aug-26-2023, 10:12 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020