Creating 10 Apps in Python [ with PySimpleGui ]

Creating 10 Apps in Python [ with PySimpleGui ]

Clear Code

2 года назад

213,477 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Nihat Alizade
Nihat Alizade - 26.08.2023 13:31

It is very easy way to understand. Way better than my udemy course.

Ответить
Neo Maredi
Neo Maredi - 22.07.2023 14:14

Output string is not defined is ruining my life. Who else is having this recurring problem. It’s infuriating. I’m using PyCharm and I think the way the modules are employed is different from Sublime. Tips

Ответить
Neeraj
Neeraj - 19.07.2023 17:44

Stop-watch part, time module is not working on my pycharm, with PySimpleGUI, what to do?

Ответить
Adrien
Adrien - 11.07.2023 16:47

Nice video but what are your sublime text packages ?

Ответить
Antonio Lopes
Antonio Lopes - 26.06.2023 02:56

Sorry for my question, I am a very beginner, and I am not sure where I should start, is it a terminal window ? or a python window? or what ? I am looking forward to start it as soon as I now where I should start typing the code.

Ответить
routereigrp50
routereigrp50 - 16.05.2023 13:15

Can you update the pastebin?

Ответить
Adarsh8750
Adarsh8750 - 13.05.2023 07:22

Great tutorial

Ответить
Divyanshu Singh
Divyanshu Singh - 10.05.2023 10:48

Please make open cv tutoriol

Ответить
myTech
myTech - 25.04.2023 20:12

This is no doubt THE BEST tutorial for beginners! From Scratch WOW

Ответить
Smokez
Smokez - 11.04.2023 03:52

Great tutorial

Ответить
stickman cartoon
stickman cartoon - 24.03.2023 10:48

How to convert pygame code into apk

Ответить
Nigel Pallatt
Nigel Pallatt - 23.02.2023 19:07

I have just enrolled in your Udemy course, I truly can not understand how you can have such organisational ability in your teaching! Very impressive.

Ответить
Nigel Pallatt
Nigel Pallatt - 23.02.2023 01:24

Fantastic, really excellent. I haven't had so much fun with a follow-along in years! Thank you!

Ответить
Emil-André Nordheim
Emil-André Nordheim - 22.02.2023 12:43

"import PySimpleGUI as sg":
my vscode defaulted py as the shortcut for PySimpleGUI

Ответить
Emad Rad
Emad Rad - 14.02.2023 11:55

Thanks a lot ,,,, Super nice and clear

Ответить
jos bexerr
jos bexerr - 13.02.2023 05:47

Esperamos un tutor con Qt que es mas avanzado

Ответить
Kieran928
Kieran928 - 12.02.2023 08:37

I'm just researching to decide on which python gui to put effort into to get started with. You mentioned that PySimplegui is wrapped around others such as Tkinter and qt....... would it be more beneficial to learn those first?

Ответить
Janski Humanski
Janski Humanski - 01.02.2023 10:08

Very nice video. You could add a little more code in the stop watch since at the moment the lap function does not really create "Lap Times". It just stores the current value for the overall elapsed time. For example if the first Lap is 2 seconds long the the second one is one second long this would show: Lap 1: 2; Lap 2: 3 instead of Lap 1: 2; Lap 2: 1

Ответить
monkey fruit
monkey fruit - 23.01.2023 19:35

I KEEP GETTING SO MUSCH FREAKING ADSS😡😡😡😡😡🤬🤬🤬🤬🤬😠😠😠😠😠😡

Ответить
Ernest
Ernest - 22.01.2023 16:20

spyder doesn`t like syntax "match values['-UNITS-']:" . Anyone having the same problem?

Ответить
FrostbittenMage
FrostbittenMage - 20.01.2023 00:02

ah what a nice tutorial!
wait what its 4 hours

Ответить
gold cash
gold cash - 18.01.2023 01:13

My Visual Studio code won't open the program window why is that??? Can someone help me please!?

Ответить
X ZEX
X ZEX - 17.01.2023 11:47

for calculator I find lots of bugs i made three main function that UI can call them this approach I have not had a bug
def button_press(num):
global equation_text
equation_text = equation_text + str(num)
equation_label.set(equation_text)
pass

def equals():
global equation_text
try:
total = str(eval(equation_text))
equation_label.set(total)
equation_text = total

except SyntaxError:
equation_label.set("Syntax Is Invalid")
equation_text = ""

except ZeroDivisionError:
equation_label.set("Devided By Zero")
equation_text = ""




def clear():
global equation_text

equation_label.set("")
equation_text = ""

Ответить
X ZEX
X ZEX - 16.01.2023 18:34

the calculator has lots of bug i solve some of them but still i need to prevent two operation ( pop one item if full_operation[-2] in operations ) that needs to be done but the enter got to change to
if event == 'Enter':
full_operation.append(''.join(current_num))
result = eval(' '.join(full_operation))
window['-TEXT-'].update(result)
current_num=[]
current_num.append(str(result))
print(full_operation)
print(current_num)
full_operation = []

Ответить
Javier Lopez
Javier Lopez - 11.01.2023 18:45

This is amazing!

Ответить
X ZEX
X ZEX - 30.12.2022 15:44

Add a line to the else: of converter to clear the INPUT
window['-INPUT-'].update(' ')
my contribution to the 1st app

Ответить
pydev369
pydev369 - 07.12.2022 07:57

Its high time to revisit this amazing series in the perspective of Flet ! Thank you !

Ответить
Sudhansu Grahacharya
Sudhansu Grahacharya - 30.11.2022 18:45

for the converter example, while running the code
"match values['-UNITS-']:"
it is throwing me an error, stating invalid syntax.

Ответить
Sudhansu Grahacharya
Sudhansu Grahacharya - 30.11.2022 17:33

hey, can we share the app with someone without displaying the code to them?

Ответить
Keita Yongz
Keita Yongz - 22.11.2022 06:42

for stopwatch part if you dont want to close and make new window you can try this:
if event == 'Start':
if active:
# from active to stop
active = False
window['Start'].update('Reset')
window['Lap'].update(visible = False)
else:
# from stop to reset
if start_time > 0:
window['TEXT'].update('Time')
window['Start'].update('Reset')
window['Start'].update('Start')
start_time = 0
# from start to active
else:
start_time = time()
active = True
window['Start'].update('Stop')
window['Lap'].update(visible = True)
if active:
elapsed_time = round(time() - start_time,1)
window['TEXT'].update(elapsed_time)

Ответить
גיא קרשטיין
גיא קרשטיין - 18.11.2022 14:05

why does my "match" statement doesn't work?

Ответить
Arun Meshram
Arun Meshram - 10.11.2022 10:42

thanks for great and clear explaination.very helpful to understand the logic using PysimpleGUI.

Ответить
Soorenn
Soorenn - 09.11.2022 23:48

Hi! I don't know if you reply or not, but i have a question. I'm developing an app that will help me calculate the dimension of components, and i noticed that if i lay it down like the first demonstration and i put in negative numerical values it recognizes them as string values, not numerical values. I managed to work around it without implementing the numerical check but i want to have a safer insertion. Is there a workaround?

Ответить
Piotr Stępień
Piotr Stępień - 17.10.2022 17:50

GraphApp, this is not working: fig = matplotlib.figure.Figure(figsize = (5,4)). Had to use this instead (from pyplot): fig = plt.figure(figsize = (5,4)). I don't know if this is system related issue but "figure" is not an attribute of matplotlib... Just FYI :)

Ответить
GHALI Ahmed
GHALI Ahmed - 13.10.2022 09:21

just thank you! .... YES, its' CLEAR CODE

Ответить
Calin Dumbraveanu
Calin Dumbraveanu - 11.10.2022 07:29

Thanks

Ответить
Bluzen
Bluzen - 04.10.2022 13:40

this is great. i combine this tutorial and another python Text to speech tutorial and made a TexT reader for myself. Great Thanks

Ответить
Yuriy Izbash
Yuriy Izbash - 30.09.2022 18:40

Interesting and helpful tutorial! As well as a perfect explanation! Thank you!

Ответить
יהונתן הרשקוביץ
יהונתן הרשקוביץ - 25.09.2022 12:38

I'm having problems with installing tkinter. I type in the cmd 'pip install PySimpleGUI' as instructed and when I try to import it, I get an error saying tkinter is not installed. I try pip installing tkinter and all I get is an error message. Any idea whats wrong?

Ответить
Fullrusher
Fullrusher - 18.09.2022 02:28

I see what they were going for with pysimplegui but I think tkinter is simpler actually ... Am the only one that thinks so ?

Ответить