How To Create Apps In Python Using Tkinter!

Поделиться
HTML-код
  • Опубликовано: 16 дек 2024

Комментарии • 79

  • @kingofcastlechaos
    @kingofcastlechaos 11 месяцев назад +11

    Just stumbled across your channel and LOVE IT! Finally a creator who understands how to use background music wisely. Learning a lot, thank you!

  • @histrion2
    @histrion2 Год назад +6

    Great intro! I'd like to see more about tkinter - maybe a follow-up with something that plays a small game or creates a calculator or utility or something?

  • @HHJoshHH
    @HHJoshHH 2 года назад +27

    Great job man. I'm on Python3 in Pycharm and it wouldn't let me use the "Brass 30 font." But this was a lot of fun!

    • @b001
      @b001  2 года назад +14

      You’ll have to install the Brass Mono font. It’s not a preinstalled system font.

    • @HHJoshHH
      @HHJoshHH 2 года назад +11

      @@b001 ahhh lol ty so much man! Really enjoyed your video!

  • @AddingAUsername
    @AddingAUsername 8 месяцев назад +2

    Great video!!! This made me understand both classes and tkinter way better you're the king!!!!

  • @64imma
    @64imma 2 года назад +5

    Thanks for the video! I've been wanting to work with tkinter again but it's been about a month since I last did a project with it.

    • @tecowski
      @tecowski 8 месяцев назад

      What frameworks do you use on other projects, if i may ask

  • @darrenlefcoe
    @darrenlefcoe 2 месяца назад

    A great well explained tutorial on the tkinter module...

  • @evanbtaylor
    @evanbtaylor 7 месяцев назад

    Great video! Very clear and professional!

  • @turtleman9302
    @turtleman9302 10 месяцев назад +2

    help the reverse text isn't working i put in "lonely tylenol" and it didn't work

  • @sapachino
    @sapachino 2 года назад +3

    Thank you for the video! Very helpful! Keep it up

  • @Red_1mperat0r
    @Red_1mperat0r 2 месяца назад

    Thank you very so much b001 for this video clip for Python very hellp for me that's is so chill for beginners

  • @migasgt638
    @migasgt638 2 года назад +6

    Hey man, great video, just wondering, what is your VSCode theme? Yours looks much smoother.

    • @mrt8bit692
      @mrt8bit692 2 года назад

      7:21 he says it here, hope you have an awesome day

    • @franzliszt4545
      @franzliszt4545 2 года назад +2

      if ur talking about the font then check mrt8bit692's reply, but if ur referring to the colour scheme, its synthwave '84

    • @mrt8bit692
      @mrt8bit692 2 года назад

      @@franzliszt4545 ahhhh I see, my apologies. Misread the question. Thanks!

  • @franzliszt4545
    @franzliszt4545 2 года назад +3

    Hey, what font settings do you use because when I downloaded Brass Mono and installed it into vscode, it became really messy so I'm just wondering how to make it look like yours. Thanks!

  • @domenicfieldhouse5644
    @domenicfieldhouse5644 Год назад +1

    I havent seen the mainframe being elemented, if you had another frame (other_frame) for example, could you have a button click command or other call change the mainframe by simply swapping out other frames;
    For example i made a digital cleaning checklist app for work, and it had subsections of how often each job had to be done, and when you clicked on a button i would place forget the labels currently displayed then place the labels for the other subsection, could i have just created all the frames on the start up and just swap them out with changing the mainframe

  • @Kripibipi
    @Kripibipi 11 месяцев назад +1

    ttk is needed for the combobox and cannot be grouped with tk widgets.

  • @SlackerCast
    @SlackerCast Год назад

    great vid, love the content and chill background music. you should maybe add this to your tutorial playlist...

  • @kapibara2440
    @kapibara2440 11 месяцев назад +1

    Brilliant! Thank you ❤

  • @SusanAmberBruce
    @SusanAmberBruce Год назад +1

    Do you think that one day, python will have and maintain its own X windowing system for GUI's?

  • @will2see
    @will2see 2 года назад +2

    for some reason I get an error with "command=self.reverse". I get: Cannot access member "reverse" for type "App"
    Member "reverse" is unknownPylance
    or
    AttributeError: 'App' object has no attribute 'reverse'

    • @cheefoong8923
      @cheefoong8923 2 года назад

      this should be the code in the mainloop:
      self.reverse_text = ttk.Button(self.mainframe, text='Reverse Text', command=self.reverse)
      self.reverse_text.grid(row=4, column=0, pady=10, sticky='NWES')
      this should be the function code:
      def reverse(self):
      newtext = self.text.cget('text')
      reversed = newtext[::-1]
      self.text.config(text=reversed)
      you might have forgot to define reverse, otherwise, idk

  • @charles_1523
    @charles_1523 2 года назад +1

    Thanks for this, very helpful!

  • @younscrafter7372
    @younscrafter7372 7 месяцев назад

    10:14 why isn't it self.text_set_button?

  • @staypositive606
    @staypositive606 Год назад +1

    Loved it! Thanks❤

  • @dingdongkornik9521
    @dingdongkornik9521 3 месяца назад

    very informative. thank you.

  • @HHJoshHH
    @HHJoshHH 2 года назад +1

    I can't seem to understand what the NWES was for. Could you help me out here. I didn't hear you explain that part. And thanks again!

    • @b001
      @b001  2 года назад +3

      “NWES” means “North West East South” . You can do any combination of these and Tkinter will understand the same, such as “SWNE” “WES” “ESNW” “N” etc

    • @HHJoshHH
      @HHJoshHH 2 года назад

      @@b001 I thought that’s what it meant but wasn’t sure. Thanks for all your replies!

  • @harisserdarevic4913
    @harisserdarevic4913 5 месяцев назад

    I'm working on a mac and followed your code exactly, but for whatever reason the background color wasn't changing for me. My text just had a weird dark grey effect surrounding it, almost like the text, button, etc all were in "dark mode", while the rest of the frame was white

  • @CatnipGawd
    @CatnipGawd 2 года назад +1

    Very cool!
    Thank you.❤

  • @Hitmandelr
    @Hitmandelr 3 месяца назад

    I get this error: "AttributeError: partially initialized module 'tkinter' has no attribute 'Tk' (most likely due to a circular import). Did you mean: 'tk'?" for some reason and tkinter works on the regularf python 3.11 app but not in visual studio, any fixes?

  • @kuc5743
    @kuc5743 11 месяцев назад +1

    Make a video about introspection and annotration in Python

  • @HHJoshHH
    @HHJoshHH 2 года назад +1

    Hey can I run this in Pycharm? I ran it and got a text box and everything looked good but then I red X out of the text box and can't get it back.

    • @b001
      @b001  2 года назад

      When you close out of the window, it doesnt stop the code. You’ll have to stop the code in PyCharm and re-run it

    • @HHJoshHH
      @HHJoshHH 2 года назад +1

      @@b001 actually I was stopping it in Pycharm but the reason the text box wouldn’t reappear was bc of the font I didn’t have downloaded was throwing error messages. So as soon as I replaced it with “Times New Roman” it worked perfectly!

  • @murphygreen8484
    @murphygreen8484 Год назад +1

    @b001 have you ever used Ctk?

  • @deyumai
    @deyumai 2 года назад +1

    thank you for your sharing. Good job.

  • @sealandland3959
    @sealandland3959 Год назад +1

    Great 😃👍 but how could we implement this for a Mobile app??????

  • @mrfriendlyghost5350
    @mrfriendlyghost5350 8 месяцев назад

    tnx supper helpful and super easy to read tnx allot subbed and liked

  • @TheNeilsolaris
    @TheNeilsolaris 3 месяца назад

    I'm new to this, so this might be a silly question, but how would we go about using this app on our mobile phones?

  • @gusic4529
    @gusic4529 2 года назад +1

    Can you do a video on customtkinter?

  • @donista.brigida157
    @donista.brigida157 Год назад

    Thanks for the great tutorial Sir! Special request if you could show us sir as well how to deploy or run this as an app or exe file? I hope my question makes sense. Thanks a lot again!

  • @acid8000
    @acid8000 2 года назад +1

    It keeps saying bad option: “-command” must be: -column -columnspan,-in ……

  • @Hi-dn8pq
    @Hi-dn8pq 2 года назад +1

    What font do you use?

  • @avaneeshc
    @avaneeshc 2 года назад +2

    what's your vs code theme

    • @b001
      @b001  2 года назад +3

      SynthWave’84

  • @joauqinxd8560
    @joauqinxd8560 7 месяцев назад

    what do i do if .pack() isnt recognized? (sorry for bad english)

  • @danielortiz-rb2dl
    @danielortiz-rb2dl 3 месяца назад

    There is a form you that You Can Work With HTML and python ?

  • @kyugin1811
    @kyugin1811 2 года назад +2

    that was cool

  • @echokni62
    @echokni62 11 месяцев назад

    How do i change the icon?

  • @escapethematrix5561
    @escapethematrix5561 2 года назад +1

    how to make it full screen?

  • @DhruvKumar-fd6rb
    @DhruvKumar-fd6rb 2 года назад +1

    Helpful if you would mala a tutorial of tkinter library

    • @SlackerCast
      @SlackerCast Год назад +1

      I was thinking the same thing...

  • @koo3246
    @koo3246 2 года назад +2

    Looks like python and html/css had a baby lol

  • @azurestarton
    @azurestarton 10 месяцев назад

    Thank you.

  • @shadowfantasiesf8556
    @shadowfantasiesf8556 2 года назад +1

    I stopped learning tkinter for textual.
    I am not sure if that's even true, but I had the impression tkinter was very bad for using anything but the absolut standard design.
    With textual you have css.
    Also since textual is so young, there are pretty much no tutorials. So if you feel like it, that would probably be helpful for quite a lot of people.

    • @vanshavbhalla6210
      @vanshavbhalla6210 Год назад

      Hey! I just got to know about textual from your comment and looked it up. It looks really good and maybe better than tkinter. Have you been working with it and did you find some resource to learn it?

  • @AdityaSharma-wg4rj
    @AdityaSharma-wg4rj Год назад +2

    Increase font sizr

  • @McT321
    @McT321 Год назад

    Okay i love u fr

  • @gedtoon6451
    @gedtoon6451 9 месяцев назад

    Your demo would have looked better if you had added a 'pady' to your widgets.

  • @memetech-
    @memetech- Год назад +1

    700th like… I don’t like that but it’s a multiple of 100

  • @awildmoose6798
    @awildmoose6798 6 месяцев назад

    If this is an intro video about tkinter, why make it more complicated by putting in a class? Why not just make it as simple as possible and avoid the class altogether

  • @LeteLusky
    @LeteLusky 2 года назад +1

    pass the code please

  • @wenelol
    @wenelol 2 года назад +21

    tkinter is pain

    • @Aidanbaro
      @Aidanbaro 5 месяцев назад +1

      No it's eazy try to code a project bro then you will feel better about tkinter

    • @wenelol
      @wenelol 5 месяцев назад +1

      @@Aidanbaro I have and it was pain.

    • @Yo_1010
      @Yo_1010 5 месяцев назад +5

      no pain, no gain

    • @aidanrafferty6189
      @aidanrafferty6189 4 месяца назад +1

      @@Aidanbaroyo same name same spelling bro also a fan of Minecraft let’s goo

  • @erkakb
    @erkakb 3 месяца назад

    2:03 that moment when the narrator says 'I have a video on this...' but gives no link...😖 and expect you to find it within over 100+ videos
    found it tho😮‍💨ruclips.net/video/o4XveLyI6YU/видео.html

  • @MysticpyMC
    @MysticpyMC 2 года назад +1

    Random Name Picker With tkinter:
    import random
    import keyboard
    from tkinter import *
    def welcome():
    wel_tx = Label(root,text="WELCOME",bg="gold")
    wel_tx.pack()
    def names():
    list = ['Daniel','Dawn','Dean','Dan']
    list = random.choice(list)
    print(list)
    root = Tk()
    root.title("Random Name Choice")
    root.geometry("400x400")
    root.resizable(False,False)
    root.configure(bg="gray")
    quit_button = Button(root,text="QUIT",bg="red",command=exit)
    quit_button.pack()
    play_button = Button(root,text="PICK RANDOM NAME",bg="green",command=names)
    play_button.pack()
    wel_button = Button(root,text="CLICK ME!!!",bg="gold",command=welcome)
    wel_button.pack()
    root.mainloop()
    while True:
    if keyboard.is_pressed('q'):
    break