This guy is amazing; he overflows with passion for what he does and is a benchmark in everything related to tkinter. I don't know if it's because of the speed with which he teaches that he chooses procedural programming instead of object-oriented programming. Anyway, this is the magic of Python, choosing what makes you happy.
Your teaching style is so good sir😂😂 i can't even feel bore for a single second❤ i enjoyed and learned so much about gui thanku sir for this great lecture 😊
Alright, this was useful. Thinking of ideas to apply these cool widgets to. My only nitpick with Tkinter would be that there are no rounded buttons built-in. But that's likely not too hard to add with custom images.
Looks cool, but recently after a long time using Tkinter and bimpy (Dear ImGui wrapper for Python) I switched to NiceGUI, I find it easier to customize, using QUASAR and Tailwind CSS classes. It has some limits, and sure Tkinter is a bit faster. But the power to customize things using HTML, CSS and Javascript libraries, VUE components, makes it very good.
I am a Web Developer, I don't understand the reason for all these, are they used to build websites?....I know tkinter is used to build desktop applications.
@@basscoversimulation3167 NiceGUI is built on top of FASTAPI, it can be used to create both LOCAL apps running on your localhost, and Web Services. So in my case, it's a better deal. But think about this, there is no perfect solutions or frameworks. Every solution has some limits that in some circumstances can become dealbreakers.
Getting this error at 1:24:00, "AttributeError: module 'PIL.Image' has no attribute 'CUBIC'. Did you mean: 'BICUBIC'?" I had to go into the library and change that line from Image.CUBIC to Image.BICUBIC. The path is "./.venv/Lib/site-packages/ttkbootstrap/widgets.py" and was on line 856.
In the meantime add this to imports: from PIL import Image # until ttkbootstrap (currect 1.10.1) is fixed for Image.CUBIC = Image.BICUBIC # depreciated CUBIC in PIL, we need these two lines. Got this from stackoverflow..
I will have to try it. Free tip: Please don't make forward references like "I'll cover that in a minute", "I'll go over that later", etc. It breaks comprehension and distracts it with an expectation.
@@charlesspringer4709 sir you are right 100% it could be better , with that said give him a break hes sharing free knowledge for everyone to learn from and enjoy
@@freesoftwares6042 It is my hopeless personal crusade to save many man years and improve comprehension on UA-cam. The targets are forward references and using the word "what" when not asking a question such as "What you want to do now is you want to..."
Hi John, as usual thanks a lot for your great video !!! I have a question about progressbar, is it possible to get the progressbar's value and print it like for sliders ? many thanks.
But, can you show packaging this and exporting as an executable to be installed cross-platform? Because I haven’t gotten Pyinstaller to work… ever hahahha
I get this error trying to declare that variable from 21:28 "Traceback (most recent call last): File "C:\Users\**\ttkbootstrap\main.py", line 22, in var1 = IntVar() ^^^^^^ NameError: name 'IntVar' is not defined"
Amazing tutorial, thanks a lot. I have a question, i would like to use the localization in French. (C:\Python310\Lib\site-packages\ttkbootstrap\localization\msgs.py) How can i do that in my main.py? Thank you again.
it looks to me like the style configure at 34.03 changes the success.TButton from there on, so that subsequent use picks up the changed font. my_style is unreferenced
I 've got the same trouble to my app. Here it looks also that there are not separators between the column headers. Actually there are but are invisible!!! Please ms Elder is there any solution to that?
While Compiling to exe is easy in python, getting the exe signed is not (it's expensive), and because of that makes deploying not great and will trigger most anti-virus. Depending on what you are doing, Godot might be a good option to create a gui app!
Cool, but you cannot make android , iOS, desktop and web apps with just one codebase like with FLET, which is kind of new still and currently being developed
Hi there: I have encountered problem of "ValueError: embedded null byte" while I clicked calendar in episode: Date Entry. The error message showed that Date entry text does not match %x. Could you help me out? Thanks!!!
I have this error that says tk.tcl error unkown option... So in general bootstyle is the issue but when I use button also font is unkown option. So how to solve it.
After installing tkbootstrap and trying you first example i got this error: "unsupported locale setting" and it refers to line 626 in a file "locale,py" with the function "setlocale return _setlocale(category, locale)" - How can I fix this in windows?
FYI.. You do not mention how to change fonts in ttkbootstrap checkboxes. For some reason it produces an error when font= is applied as you would in tkinter
Hello! Please help me how to correctly solve the administration problem, for example, use Python,QT, PostgreSQL. Please recommend an algorithm for organizing an access level for adesktop application where different interface components are included in different access classes, and when a new user is added, he will be included in one of these classes, and for him there will be Only components that are included in this access class are accessible. The question is, in order to implement this, what algorithm can be supported, or if there is documentation that can help resolve this issue. Thank you very much in advance!
@@TkinterPython It does not happen when I drag it anymore but it does happen if I minimize it or maximize it over and over quickly, does not happen to other GUI. I'll try to see if the same thing happens to ttkbootstrap.
Even with QTdesigner and stuff like that you'll need to know some code. Most of them usually create too much code and you have to edit it anyway. Also with QT you have to pay for it to use it, which is BS.
Any tkinter executable I make is seen as a virus. Across multiple machines and various different antivirus software. I think a web app makes more sense . Just as slow as tkinter but way more cross platform. And you can still use not only bootstrap but bootstrap with sass. If your program really is so demanding that a modern browser truly cant handle it you really should consider something in Rust or C++. Plenty of good cross platform GUI options available for those.
How exactly is this easy lol? Visual Basic had a GUI designer that was EASY. Sure wish that type of GUI builder was included in the base Python installer.
If you a beginner unless you have a project in mind don’t do this course instead do front end if you already did do something more advanced have a good day
I miss professional GUI standards. Nowadays most GUI’s look like crap and have terrible usability. Unfortunately most book/tutorials/video on Python GUI framework usually ignore proper design principles.
import _tkinter as tk m = tk.Tk() m.title('test') button= tk.Button(m, text= 'test', width = 25, command = m.destroy) button.pack() m.mainloop() Very basic but for some reasons says: Traceback (most recent call last): File "/Users/Leo/Library/Application Support/JetBrains/PyCharmCE2020.2/scratches/scratch_11.py", line 2, in m = tk.Tk() AttributeError: 'module' object has no attribute 'Tk'
This guy is amazing; he overflows with passion for what he does and is a benchmark in everything related to tkinter. I don't know if it's because of the speed with which he teaches that he chooses procedural programming instead of object-oriented programming. Anyway, this is the magic of Python, choosing what makes you happy.
This channel is a blessing to humanity. Good work team!
This is the best tkinter introduction. ttkbootstrap is a cherry on top.
There's no word that can thank you enough
Welcome
great, I've just finished a program and I've struggled in the graphics section until I found this turotrial.
Lex Luthor, I love your content. Always helpfull and understandable. Thank you so much.
This is AWESOME. Wow what a professional well presented masterclass. Thanks friend.
Glad you enjoyed it!
@@TkinterPython Hey brother ! Does this teach tkinter and ttkbootstrap from beggining?
Wish u were my programing lecturer.Lessons would have been so much interesting.Truly grateful for this tutorial.❤
Your teaching style is so good sir😂😂 i can't even feel bore for a single second❤ i enjoyed and learned so much about gui thanku sir for this great lecture 😊
Alright, this was useful.
Thinking of ideas to apply these cool widgets to.
My only nitpick with Tkinter would be that there are no rounded buttons built-in. But that's likely not too hard to add with custom images.
This is amazing! Love your TKINTER content.
Really good tutorial, it's amazing we can watch it for free
About time
Looks cool, but recently after a long time using Tkinter and bimpy (Dear ImGui wrapper for Python) I switched to NiceGUI, I find it easier to customize, using QUASAR and Tailwind CSS classes. It has some limits, and sure Tkinter is a bit faster. But the power to customize things using HTML, CSS and Javascript libraries, VUE components, makes it very good.
I am a Web Developer, I don't understand the reason for all these, are they used to build websites?....I know tkinter is used to build desktop applications.
@@basscoversimulation3167 NiceGUI is built on top of FASTAPI, it can be used to create both LOCAL apps running on your localhost, and Web Services. So in my case, it's a better deal. But think about this, there is no perfect solutions or frameworks. Every solution has some limits that in some circumstances can become dealbreakers.
Love your TKINTER book and content. You are awesome. 🥰
Getting this error at 1:24:00,
"AttributeError: module 'PIL.Image' has no attribute 'CUBIC'. Did you mean: 'BICUBIC'?"
I had to go into the library and change that line from Image.CUBIC to Image.BICUBIC.
The path is "./.venv/Lib/site-packages/ttkbootstrap/widgets.py" and was on line 856.
Seems like it was from a recent update of PIL. Should be fixed itself anytime soon
In the meantime add this to imports:
from PIL import Image # until ttkbootstrap (currect 1.10.1) is fixed for
Image.CUBIC = Image.BICUBIC # depreciated CUBIC in PIL, we need these two lines.
Got this from stackoverflow..
Today is your lucky day friend. Click on the Meters class and go to the definition, then find "CUBIC" and change it to "BICUBIC"
Thanks for creating complete course
I will have to try it. Free tip: Please don't make forward references like "I'll cover that in a minute", "I'll go over that later", etc. It breaks comprehension and distracts it with an expectation.
You mean I should watch it 3hrs straight?
but he does cover it in a minute
@@freesoftwares6042 Yes, but why should I be thinking about it? Is there no content while I wait for it? It is weak pedagogy.
@@charlesspringer4709 sir you are right 100% it could be better , with that said give him a break hes sharing free knowledge for everyone to learn from and enjoy
@@freesoftwares6042 It is my hopeless personal crusade to save many man years and improve comprehension on UA-cam. The targets are forward references and using the word "what" when not asking a question such as "What you want to do now is you want to..."
This video was COOL 😎
Thanks!
thx, you are the best!
really nice 🙏
thanks a lot mr white
Beautiful
Kivy stands out
This looks way better than customtkinter project
Excelente tuto
Hi John, as usual thanks a lot for your great video !!! I have a question about progressbar, is it possible to get the progressbar's value and print it like for sliders ? many thanks.
But, can you show packaging this and exporting as an executable to be installed cross-platform? Because I haven’t gotten Pyinstaller to work… ever hahahha
very helpfull ! but where to find all the method of each tkinter object ? can't find any tuto about this
Hi thank you so much sir, The themes of TTKBootstrap do not apply to a second window opened from the first one.
There is one another video on tkinter,
which video should i learn from?
Hallo Good course and Notice you like the bootstyle danger. The Toast Notification section
is not working in Microsof Visual Basic 2022.
I get this error trying to declare that variable from 21:28
"Traceback (most recent call last):
File "C:\Users\**\ttkbootstrap\main.py", line 22, in
var1 = IntVar()
^^^^^^
NameError: name 'IntVar' is not defined"
Fixed it.
I had to change *var1 = IntVar()* to *var1 = tb.IntVar()*
Amazing tutorial, thanks a lot. I have a question, i would like to use the localization in French. (C:\Python310\Lib\site-packages\ttkbootstrap\localization\msgs.py) How can i do that in my main.py? Thank you again.
why python doesn't use drag and drop tecnology on devoloping user interface.
@02:45:38 the lin for TREEVIEW not working😢
😎😎👌👌
Which ide used in this course?
Just sublime text and the Git Bash Terminal
How do you control the layout of the widgets?
Sir please teach you how to make an responsive navbar with right corner hamburger and icon using ttkboostrap
is there a way that i can use tkinter to make hotkeys, or to activate a button etc that the user can change to what they want?
Furst comeentt🎉🎉🎉
the bootstyle doesn't work on the labels of the other extra window i open, for example about window :(
Python perfeito na informação
Is there a way to get live preview while coding for ttkbootstrap?
it looks to me like the style configure at 34.03 changes the success.TButton from there on, so that subsequent use picks up the changed font. my_style is unreferenced
I 've got the same trouble to my app. Here it looks also that there are not separators between the column headers. Actually there are but are invisible!!! Please ms Elder is there any solution to that?
is it easy to convert into exe or deploy
While Compiling to exe is easy in python, getting the exe signed is not (it's expensive), and because of that makes deploying not great and will trigger most anti-virus.
Depending on what you are doing, Godot might be a good option to create a gui app!
In the first example the label has alternating text , but no timer is used , still it averages about 2/sec how does that work?
Please make video on Reverse engineering
Nice but you don't have to run project in cmd. Ctrl+B in SublimeText works ;)
is the "watch later" feature gone? I can't find the icon anywhere from the browser
Cab u share the python files used in the video?
3 hours to create simple GUI form with 6 buttons? Why when exist Delphi or the same?
How can any graphical interface be used in Google colab
thxx
any chance at a FLET course? since Tkinter is kind of outdated
Not outdated anymore, because of this library.
Cool, but you cannot make android , iOS, desktop and web apps with just one codebase like with FLET, which is kind of new still and currently being developed
How do you add a logo to the title using Tkinter? Could you please help me with this?
Hi there: I have encountered problem of "ValueError: embedded null byte" while I clicked calendar in episode: Date Entry. The error message showed that Date entry text does not match %x. Could you help me out? Thanks!!!
bootsyle does not work for me! any change of style does not work. has any one fixed this issue?
I have this error that says tk.tcl error unkown option...
So in general bootstyle is the issue but when I use button also font is unkown option. So how to solve it.
After installing tkbootstrap and trying you first example i got this error: "unsupported locale setting" and it refers to line 626 in a file "locale,py" with the function "setlocale return _setlocale(category, locale)" - How can I fix this in windows?
FYI.. You do not mention how to change fonts in ttkbootstrap checkboxes. For some reason it produces an error when font= is applied as you would in tkinter
Hello! Please help me how to correctly solve the administration problem, for example, use Python,QT, PostgreSQL. Please recommend an algorithm for organizing an access level for adesktop application where different interface components are included in different access classes, and when a new user is added, he will be included in one of these classes, and for him there will be Only components that are included in this access class are accessible. The question is, in order to implement this, what algorithm can be supported, or if there is documentation that can help resolve this issue. Thank you very much in advance!
I had to import as follows to get the meter to work
from PIL import Image
Image.CUBIC = Image.BICUBIC
import tkinter as tk
import ttkbootstrap as ttkb
I can't not run it on macbook M1, it gime this error: "locale.Error: unsupported locale setting"
tkinter and ttkbootstrap run fine on mac, you must have done something differently from the video...
@@TkinterPython I fixed it
is ttkbootstrap safe ?
Isn't tkinter obsolete?
obviously not lol that's the point of the video. TTKBootstrap makes it modern.
@@TkinterPython I found that tkinter sometimes flicker when dragging it around or switching back to it. Does that also happen with ttkbootstrap?
@@lmnts556 No, Tkinter doesn't do that. That was an issue with your computer and/or display settings.
@@TkinterPython It does not happen when I drag it anymore but it does happen if I minimize it or maximize it over and over quickly, does not happen to other GUI. I'll try to see if the same thing happens to ttkbootstrap.
@@lmnts556 why would you ever min and max it over and over quickly? Just don't do that.
Using C++?
Sublime Test Unregistered xD
🎉🎉🎉🎉
this is tedious, what about UI editor?
Even with QTdesigner and stuff like that you'll need to know some code. Most of them usually create too much code and you have to edit it anyway. Also with QT you have to pay for it to use it, which is BS.
You should do a course on using Qt and QtCreator. Much better than Tkinter.
It's paid. 300+ dollars a month, or you have to open your code.
@@filipemtx Only for applications that get sold commercially.
Here is a course about how to use Qt for Python using PySide6: ua-cam.com/video/Z1N9JzNax2k/v-deo.html
the problem it look horrible in windows .. 7 8 and and i want my app to look awesome in all OS..
Is it me or the guy in thumbnail looking like gigachad.
TKinter always missing manager for system tray. Huge lack.
PONGAN TRADUCCION AL ESPAÑOL POR FAVOR.. NO SE MUCHO INGLES Y ME CUESTA MUCHO SEGUIRLOS.
Aprende inglés.
Python how to make Round Modern Button in less than 5 minutes 2023
Python Gui
🎉
Any tkinter executable I make is seen as a virus. Across multiple machines and various different antivirus software. I think a web app makes more sense . Just as slow as tkinter but way more cross platform. And you can still use not only bootstrap but bootstrap with sass. If your program really is so demanding that a modern browser truly cant handle it you really should consider something in Rust or C++. Plenty of good cross platform GUI options available for those.
How exactly is this easy lol? Visual Basic had a GUI designer that was EASY. Sure wish that type of GUI builder was included in the base Python installer.
Hello
2024.
Imagine calling tcl/tk "modern"
Cant add ttkbootstrap to anaconda?
If you a beginner unless you have a project in mind don’t do this course instead do front end if you already did do something more advanced have a good day
05K
Tkinter and modern do not belong in the same sentence.
😂😂
I have one doubt anyone explain is this skill is worth ? Can i get job from this skill or its just a waste of time
358
I stopped watching after import *. I thought this channel posts professional videos. I was wrong
I miss professional GUI standards. Nowadays most GUI’s look like crap and have terrible usability. Unfortunately most book/tutorials/video on Python GUI framework usually ignore proper design principles.
Then do a better one.
For Meters part add this at begining of code:
from PIL import Image
Image.CUBIC = Image.BICUBIC
2:38:09 great suckess
import _tkinter as tk
m = tk.Tk()
m.title('test')
button= tk.Button(m, text= 'test', width = 25, command = m.destroy)
button.pack()
m.mainloop()
Very basic but for some reasons says:
Traceback (most recent call last):
File "/Users/Leo/Library/Application Support/JetBrains/PyCharmCE2020.2/scratches/scratch_11.py", line 2, in
m = tk.Tk()
AttributeError: 'module' object has no attribute 'Tk'