Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: ModuleNotFoundError: No module named '...'
Post: RE: ModuleNotFoundError: No module named '...'

first error looks like a dependency issue. try installing the module using pip or searching for the module online. The second is a github thing. I use github desktop, so i'm not sure how to stage chan...
maxtimbo General Coding Help 1 5,580 Oct-09-2019, 06:47 PM
    Thread: Progress Bar While Sending an Email
Post: RE: Progress Bar While Sending an Email

(Oct-09-2019, 05:19 PM)woooee Wrote: The first thing you have to do is get the percent done. I don't know of any way to do this, so the best that you may be able to do is a progress bar that moves ...
maxtimbo GUI 3 4,115 Oct-09-2019, 06:41 PM
    Thread: Progress Bar While Sending an Email
Post: Progress Bar While Sending an Email

Hello, I am trying to create a progress bar for my tkinter based gui that shows the user that an email is being sent. I've never successfully implemented threading or multi-processing before, simply b...
maxtimbo GUI 3 4,115 Oct-09-2019, 12:58 PM
    Thread: Progress Bar While Sending an Email
Post: Progress Bar While Sending an Email

Hello, I am trying to create a progress bar for my tkinter based gui that shows the user that an email is being sent. I've never successfully implemented threading or multi-processing before, simply b...
maxtimbo GUI 0 2,130 Oct-08-2019, 02:13 PM
    Thread: listbox ipadx, ipady not working
Post: RE: listbox ipadx, ipady not working

(Feb-19-2019, 11:55 PM)woooee Wrote: The padding is what you declare it as (run code below). You are possibly overlaying it with something else. You will have to comment lines in your complete pro...
maxtimbo GUI 4 4,917 Feb-20-2019, 09:44 PM
    Thread: listbox ipadx, ipady not working
Post: listbox ipadx, ipady not working

Perhaps not working properly is the better term here. If you: import tkinter as tk from tkinter import ttk class MyApp(ttk.Frame): def __init__(self, parent, *args, **kwargs) ttk.Frame.__...
maxtimbo GUI 4 4,917 Feb-19-2019, 11:37 PM
    Thread: Add stdout to text file
Post: RE: Add stdout to text file

I figured this out a while ago. Thought I would share the solution for future browsers/google searchers: file_count = 0 count = 0 def write_file(): global file_count, count, sfile if(count &...
maxtimbo General Coding Help 3 3,160 Feb-05-2019, 12:53 AM
    Thread: Running python code meant for Notepad++ plugin independently
Post: RE: Running python code meant for Notepad++ plugin...

(Jan-28-2019, 05:39 PM)greektranslator Wrote: Right, thanks, how do I define the file on which the replacements will run? To my knowledge, a txt file open in this way runs within the python environm...
maxtimbo General Coding Help 3 2,998 Jan-28-2019, 06:03 PM
    Thread: Running python code meant for Notepad++ plugin independently
Post: RE: Running python code meant for Notepad++ plugin...

I'm not sure if this helps, but that won't work on Windows. First, you need to use the forward slash "\" not the backslash "/". Second, you need to escape the forward slash like this: "\\". So the cod...
maxtimbo General Coding Help 3 2,998 Jan-28-2019, 05:22 PM
    Thread: Add stdout to text file
Post: RE: Add stdout to text file

(Jan-28-2019, 03:57 AM)ichabod801 Wrote: I would move the with statement on line 25 outside of the for loop on line 23. It overwrites because you open it each time and write it anew. Open it once an...
maxtimbo General Coding Help 3 3,160 Jan-28-2019, 02:45 PM
    Thread: Add stdout to text file
Post: Add stdout to text file

Alright, I've tried a great many thing to try to get this to work. This iteration is the closest I've gotten to success. What I'm trying to do is write two lines, and only two lines, to a text file an...
maxtimbo General Coding Help 3 3,160 Jan-28-2019, 03:09 AM

User Panel Messages

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