Загрузка данных excel в django без сохранения файла

Я новичок в django, и мне отчаянно нужна помощь в загрузке и чтении данных Excel без фактического сохранения данных на машине. Я написал код и взял кое-что из исследования, которое я провел в Интернете.

Вот мои вопросы:
1. Как загрузить файл Excel (не сохраняя его на машине). Я просто хочу, чтобы файл excel заполнял некоторые поля django, а не сохранял его.

  1. Как заставить django читать столбцы в файле Excel и подавать в некоторые другие поля на другой странице. (Как мне их связать?)

  2. Большинство документов, которые я видел, требуют, чтобы я жестко закодировал имя файла Excel и его расположение. Есть способ обойти это, поскольку я не знаю, откуда пользователь может загружать. пожалуйста совет.

Мой views.py:

from django.shortcuts import render_to_response
from django.template import RequestContext
from django.http import HttpResponseRedirect
from django.core.urlresolvers import reverse
from credit.models import Document
from credit.forms import DocumentForm

def list(request):

if request.method == 'POST':
    form = DocumentForm(request.POST, request.FILES)
    if form.is_valid():

        newdoc = Document(docfile = request.FILES['docfile'])
        newdoc.save()

        return HttpResponseRedirect(reverse('credit.views.list'))
else:
    form = DocumentForm() 

documents = Document.objects.all()

return render_to_response('credit/list.html',
    {'documents': documents, 'form': form},
    context_instance=RequestContext(request)
)

Мой models.py:

class Document(models.Model):
   docfile = models.FileField(upload_to='documents/')
#these are the models I want the excel columns to feed into
policies = DecimalNumberField()
capital = DecimalNumberField()
inflation = DecimalNumberField()

Мой forms.py:

import os
import xlrd

IMPORT_FILE_TYPES = ['.xls', ]

class DocumentForm(forms.Form):
docfile = forms.FileField(label='Select a file')

def clean(self):
    data = super(DocumentForm, self).clean()

    if 'docfile' not in data:
        raise forms.ValidationError(_('The Excel file is required to proceed'))

    docfile = data['docfile']
    extension = os.path.splitext(docfile.name)[1]
    if not (extension in IMPORT_FILE_TYPES):
        raise forms.ValidationError(u'%s is not a valid Excel file. Please make sure your input file is an Excel file )' % docfile.name)

    file_data = StringIO.StringIO()
    for chunk in docfile.chunks():
        file_data.write(chunk)
    data['file_data'] = file_data.getvalue()
    file_data.close()

    try:
        xlrd.open_workbook(file_contents=data['file_data'])
    except xlrd.XLRDError, e:
        raise forms.ValidationError(_('Unable to open XLS file: %s' % e))

    return data
#i do not want to do this (specify the exact file name). Need an alternative   
sh = xlrd.open_workbook('documents\june.xls').sheet_by_index(1)
inflation = open("inflation.txt", 'w')
policies= open("policies.txt", 'w')
capital= open("access_to_finance.txt", 'w')

try:
    for rownum in range(sh.nrows):
        inflation.write(str(rownum)+ " = " +str(sh.cell(rownum, 1).value)+"\n")
        policies.write(str(rownum)+ " = " +str(sh.cell(rownum, 2).value)+"\n")
        capital.write(str(rownum)+ " = " +str(sh.cell(rownum, 3).value)+"\n")

finally:
    inflation.close()
    policies.close()
    capital.close()

Тогда у меня есть файл list.html:

{% if documents %}
    <ul class="nav nav-tabs">
    {% for document in documents %}
        <li><a href="{{ document.docfile.url }}">{{ document.docfile.name }}</a></li>
    {% endfor %}
    </ul>
{% else %}
    <p>Click Upload to go to Upload page</p>
{% endif %}

     <form action="{% url list %}" method="post" enctype="multipart/form-data">
        {% csrf_token %}
        <p>{{ form.non_field_errors }}</p>
        <p>{{ form.docfile.label_tag }} {{ form.docfile.help_text }}</p>
        <p>
            {{ form.docfile.errors }}
            {{ form.docfile }}
        </p>
        <p><input type="submit" value="Upload" /></p>
    </form>

person k19Uch    schedule 16.10.2014    source источник
comment
thepythondjango.com/upload-process-excel-file-django   -  person Anurag Rana    schedule 27.03.2018


Ответы (1)


Ответ на вопрос 1:

Если размер загружаемого файла меньше FILE_UPLOAD_MAX_MEMORY_SIZE (2.5 МБ), django помещает загруженный файл в памяти. Если размер вашего файла превышает 2,5 МБ, вы можете изменить FILE_UPLOAD_MAX_MEMORY_SIZE в файле настроек.

person chfw    schedule 27.01.2015