Building a Simple Web Browser in Python

Поделиться
HTML-код
  • Опубликовано: 7 авг 2024
  • www.dj4e.com - Django for Everybody - Using Python and Django to build web sites
    Web 01 HTTP 04 Browser
  • Авто/МотоАвто/Мото

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

  • @sys-radix
    @sys-radix 4 года назад +20

    The Perfect Teacher ever

  • @user-ph2bc8kc6c
    @user-ph2bc8kc6c 3 года назад +3

    Chuck Severance is AWESOME!! Brilliant lecturer who's able to convey anything is a persuasive way!!
    Thank you Chuck for this high-quality content!! Hoping to see more Python lectures from you!

  • @newsplanet7298
    @newsplanet7298 4 года назад +6

    I am doing your courses Sir. Thank You for making those

  • @nikk797
    @nikk797 3 года назад +3

    Sir, You are The Best !!!!!!!! Hats Off To You!!!!!!!!!!

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

    Your courses are very understandable.

  • @Projetaty
    @Projetaty 4 года назад +4

    Hello Chuck, how you doing? Hope you and family be good. Please, may could you give some hint how to render the response into a jquery modal layer? This would be wonderful to avoid usage. Thanks in advance and congrats for this very good approach to explain how thinks works.

  • @jarno_r
    @jarno_r 4 года назад +8

    Great video!

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

    how does it work with all video formats?

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

    The best of the best

  • @oyoplayer
    @oyoplayer 4 года назад +1

    thank ^^

  • @russellabraham9208
    @russellabraham9208 4 года назад +1

    Thanks

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

    I am trying to create a web browser using your video. It worked good, I can connect to my Disney+ account but the issue comes when I try to play a video.
    It's seems that Dineyplus blocked access if it doesn't recognise the browser ?
    Or a library PIP is missing ?
    Could you help please ?

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

      It was not working on real time for me also
      While I written this code in idle
      It is not even running

  • @user-cx6rg6mr7d
    @user-cx6rg6mr7d 3 года назад

    Great video, May I ask that why at row 10, you write "if len(data) < 1", not "if len(data) < 0"?

    • @leonardonetagamer
      @leonardonetagamer 3 года назад

      because 0 only refers to the first iteration of a list, everything else uses the normal number system.

    • @user-cx6rg6mr7d
      @user-cx6rg6mr7d 3 года назад

      @@leonardonetagamer Thank you for you reply! Please correct if I am wrong
      To my understaning:
      if len(data) < 1, we will terminate the while loop,
      but I wonder why we don't terminate the while loop when len(data)

    • @leonardonetagamer
      @leonardonetagamer 3 года назад

      @@user-cx6rg6mr7d Because, it checks if the data list has more than 1 item in it, if it does, it breaks, if not, it continues

    • @user-cx6rg6mr7d
      @user-cx6rg6mr7d 3 года назад

      @@leonardonetagamer you mean
      if it has "less than" 1 item in it, it breaks?
      Thank you! I think I got it!!!

    • @leonardonetagamer
      @leonardonetagamer 3 года назад

      @@user-cx6rg6mr7d Yes, I meant less than, you are welcome, good luck on your browser creating

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

    hi

  • @arvinsilberman804
    @arvinsilberman804 4 года назад +1

    How long does it take to build a full web browser?

    • @kenan2386
      @kenan2386 4 года назад

      10 to 14 Days i think but for a pro one day I THINK

    • @arvinsilberman804
      @arvinsilberman804 4 года назад +1

      kenan 238 on Quora people are saying it takes at-least 3-4 years??

    • @Nadox15
      @Nadox15 4 года назад +4

      @@arvinsilberman804 Of course I will take a long time. If you have to write own parts like a javascript engine it will take years (for a good one) those tasks are heavy

    • @rajuchada2487
      @rajuchada2487 4 года назад

      Hello sir plz send me your gmail id

    • @russellabraham9208
      @russellabraham9208 4 года назад +2

      @@arvinsilberman804 Sounds about right, depends how much you want to do yourself. I've been tinkering away at one for 2 years now.