-
-
Save ngocnhan2003/adab3bae8ce225f40ff656aaf7763242 to your computer and use it in GitHub Desktop.
Read 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'] | |
| # Lendo arquivo InMemoryUploadedFile | |
| file = myfile.read().decode('utf-8') | |
| reader = csv.DictReader(io.StringIO(file)) | |
| # Gerando uma list comprehension | |
| data = [line for line in reader] | |
| save_data(data) | |
| return HttpResponseRedirect(reverse('produto:produto_list')) | |
| template_name = 'produto_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