Flask Fundamentals - Flask CRUD with a list

Поділитися
Вставка
  • Опубліковано 7 вер 2024
  • In this video, we'll build a simple CRUD application in Flask using a list for storage. Check out Rithm School's free curriculum page for this topic here: www.rithmschoo...

КОМЕНТАРІ • 15

  • @jamesmuriuki3785
    @jamesmuriuki3785 6 років тому +1

    The most important flask tutorial that i have ever seen it has solved all my problems i have done a couple none was like this one thanks alot to the person who did this

  • @TraxxasRustler27
    @TraxxasRustler27 6 років тому

    Showing all possible errors is a great idea, thanks!

  • @keymars1416
    @keymars1416 5 років тому +1

    this was such a good tutorial. thanks so much.

  • @almazd7630
    @almazd7630 6 років тому

    Really perfect screencast!!! Odd, that this lesson has so less views

  • @farenrai576
    @farenrai576 5 років тому

    awesome , good quality voice explanation , it's really helpful for flask starting concept , thank you

  • @95platypus
    @95platypus 6 років тому

    Thanks so much for this video. Super easy to understand!

  • @kivancgunduz35
    @kivancgunduz35 2 роки тому

    Why are we don't see virtual env folder in your project folder when you command 'tree' ?

  • @portgasdace8961
    @portgasdace8961 5 років тому

    Really great Job 😃

  • @sambongay7569
    @sambongay7569 4 роки тому

    Hello! got an error says-----
    from werkzeug import url_decode
    ImportError: cannot import name 'url_decode' from 'werkzeug'
    ----------------------------------------------------------------------------------------------------------------------------- i did a fix but im worried that it may hunt me later
    its working again i pasted --> from .urls import url_decode in \site-pakages\werkzeug\__init__.py and it is now working perfectly.. or I did something wrong?
    BTW I love this tutorial! i just build a working web app! been searching youtube but yours is the most helpful one!

  • @lenilunderman3697
    @lenilunderman3697 4 роки тому

    Question, why did you not add to a database? sqlite or sqlalchemy? Any video about doing this?

  • @noidentify3174
    @noidentify3174 5 років тому

    you've done made action add, edit and delete. how to make action view details for each students ?

  • @azadabdullahshaheed
    @azadabdullahshaheed 5 років тому

    I touch another route like remove and created new template delete.html then how I work by clicking delete button?

  • @Anibale
    @Anibale 6 років тому

    thanx

  • @mayanktripathi4u
    @mayanktripathi4u 5 років тому

    Hi Friends,
    I am getting below error, any lead will be helpful.
    new_student = Students(request.form['first_name'], request.form['last_name'])
    TypeError: __init__() takes 1 positional argument but 3 were given