Awesome CSV uploader in Django !!

Awesome CSV uploader in Django !!

Coding for All | Newton School

1 год назад

9,631 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@mohamedabbase7789
@mohamedabbase7789 - 05.01.2023 21:51

Hi, Thanks for the tutorial, but This is not the django rest framework as you show in video thumbnail

Ответить
@sahilyt1887
@sahilyt1887 - 13.12.2022 08:03

bhai koi urls bhi bhej do

Ответить
@mehedi_maruf
@mehedi_maruf - 08.12.2022 05:59

Can you please provide the source code?

Ответить
@revengerahul
@revengerahul - 27.11.2022 11:09

Bhai next batch kb se start hoo reha h full stich devloper ka

Ответить
@awesometrackx
@awesometrackx - 26.11.2022 20:08

More optimised solution,
data = <your pandas csv data>
person_objects = []
for i in data:
person_objects.append(
Person(first_name=i[0],...more fields...))
Person.objects.bulk_create(person_objects)

This will decrease your query time.
😊

Ответить
@shreeji114
@shreeji114 - 26.11.2022 17:45

very good bhaiya

Ответить
@rangabharath4253
@rangabharath4253 - 26.11.2022 17:03

Awesome as always 😊

Ответить