Build and Deploy a Full Stack Web App in Python (Tutorial)

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

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

  • @lineindent
    @lineindent  9 месяцев назад +2

    Build and Deploy a Full Stack Web App in Python (Tutorial)
    Test Web App Here:
    👾 reflex-site-yt.reflex.run/
    More Reflex Videos!
    🎬Simple Task Tracker: ruclips.net/video/JyY2sZIrGb0/видео.html
    🎬Minimal Analogue Clock: ruclips.net/video/heFUIjrNWYA/видео.html

  • @MoroccanAvatar
    @MoroccanAvatar 9 месяцев назад +2

    I didn't know that there is a library called reflex. Thank you

    • @Gato1.03
      @Gato1.03 9 месяцев назад

      Yea, and I´m really impressed for the easy to work with every library, now, I´m waiting for the new hosting in reflex, really man this is a realy big step with my page proyects

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

    How did you fix the websocket connection error to the backend at the end of the video?

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

    is there a place i can find source codes in these vidoes?

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

    on line `class Lander(rx.Vstack)`, i got AttributeError: module 'reflex' has no attribute reflex.Vstack, do you know where could go wrong, i followed the code in the video..

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

      It’s rx.vstack - you capitalized the V in vstack

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

      @@lineindent i changed it to small v still, i got errors, can you share the .py file please?

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

      In that case I think inheritance has been depreciated in the newer reflex version. I tried it on the most recent version and it did not work - you could put it all in a vstack method or downgrade the reflex version (not recommended)

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

      @@lineindent thanks, using function instead of class works, at least no more errors.