python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Prevent mocked definition from bleeding over to external library in python
Suppose I have some third-party code main.py:
import matplotlib.pyplot as plt
import tkinter
tk = tkinter.Tk()
fig = plt.figure()
ax = plt.gca()
ax.plot([1,2,3])
plt.savefig('test.png')
Suppose tha...
user32882
Votes: 0
Answers: 0
Raspberry Pi tkinter app blank screen when run from script, works fine when run directly from terminal
I have created a weather forecast display application using Python and tkinter for Raspberry pi zero. The app pulls the weather from a weather api using requests and displays the forecast using image...
Shankze
Votes: 0
Answers: 1
tkinter: Copy to clipboard via button
The idea of the code is to create N amount of buttons that copy text to the clipboard when pressed, overwriting and saving the text from the last pressed button.
from tkinter import *
import tkinter
r...
Noxramus
Votes: 0
Answers: 1
Tkinter window not opening, but if I comment out a line, it works
So I was trying to create a GUI in pygame, but after a while, I just decided to re-write it in tkinter. I need to create 3 bars, one being a canvas, the other 2 being empty. The size of the left bar i...
TheMystZ
Votes: 0
Answers: 2