-
-
Save dejmail/8184108c3a50d7f60f9e460e7b781ee7 to your computer and use it in GitHub Desktop.
Read csv InMemoryUploadedFile Django
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import io | |
| def import_csv(request): | |
| if request.method == 'POST' and request.FILES['myfile']: | |
| myfile = request.FILES['myfile'] | |
| # Read csv file InMemoryUploadedFile | |
| file = myfile.read().decode('utf-8') | |
| reader = csv.DictReader(io.StringIO(file)) | |
| # Generate a list comprehension | |
| data = [line for line in reader] | |
| save_data(data) # Not implemented | |
| return HttpResponseRedirect(reverse('product:product_list')) | |
| template_name = 'product_import.html' | |
| return render(request, template_name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment