Django - exporting data with django-import-export

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

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

  • @bugbytes3923
    @bugbytes3923  День назад +1

    ☕ Buy a coffee: ko-fi.com/bugbytes
    ⭐Top resource to learn Python - datacamp.pxf.io/kOjKkV ⭐

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

    Ugh, I implemented this manually and it was a pain messing around in jQuery / js; horrible language.
    Still, very valuable to know there's a lovely extension like this. Top video.

    • @bugbytes3923
      @bugbytes3923  2 месяца назад +1

      True, much easier in Python/Django! Thanks!

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

    Man you're a blessing for us wow everything one can have needed in Django absolutely everything ! Thank you so much !

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

      Thanks a lot, much appreciated!

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

    In terms of ideas for future features, as you mentioned, it could be a good idea if you do a video to show how to encrypt the database. Talking about financial transactions, it would be good if the objects are also encrypted to add security

  • @akokkalis1
    @akokkalis1 2 месяца назад +1

    Absolutely valuable content. Can you make also instant search with htmx? for that table?

    • @bugbytes3923
      @bugbytes3923  2 месяца назад +1

      Great idea! I'll look at adding this. And thank you!

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

    Thanks for the excellent video! It would be nice to have a PDF format to.🙂

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

      Thank you! Great idea, I'll look into that for sure.

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

    Great one, thank you

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

    Thanks brother

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

    thank you!

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

    thanks

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

    Thanks. 🙏

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

    it was a great video, TransactionFilter is a custom class or django class?

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

      Thanks! This is a FilterSet class, set up in this video:
      ruclips.net/video/PJgBHMsM7NY/видео.html

  • @dokismoki
    @dokismoki 2 месяца назад +1

    Have you tested how efficient this in?
    What happens if you happen to have something like 10k, 50k, 500k lines of entries?
    Does it have any sort of async export possiblity ?

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

      You can do the export in celery and mail it to the user

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

    🎉🎉🎉🎉🎉🎉🎉

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

    How to styling it like adding a border?

  • @e-h-ashiq
    @e-h-ashiq 2 месяца назад

    Brother I have a request to you. you make videos so useful i learned a lot from you but one thing in my mind is after built a website such as Social Network webapp or ecommerce We have to expand or scale out database So how to handle a lot of users and lots of data and maintain them in Django. Could you please make a video on this TOPIC plzzzzzz.....

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

      I am building an ecommerce shop and the same question has been boring me.

    • @e-h-ashiq
      @e-h-ashiq 2 месяца назад

      @@yajitimothy2903 do you find any solution?

    • @e-h-ashiq
      @e-h-ashiq 2 месяца назад

      ​@yajitimothy2903 have you find any solution ??

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

      Not yet

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

      Well for one look at the queries you are making.He has a video on Django orm.Your queries has to be efficient no duplicates ,don't fetch data you don't need.Optimised queries will take you far before you even think of caching.