Django Сохраняет несколько файлов, загруженных из html, в каталог и обрабатывает их

#python #html #django

Вопрос:

вот мои взгляды .py

     def savefile(request):
        context = {}
        if request.method == 'POST':
            uploaded_file = request.FILES['filename']
            fs = FileSystemStorage()
            name = fs.save(uploaded_file.name.replace(' ', '_'), uploaded_file)
            context['url'] = fs.url(name)
            if context['url']:
                print(context['url'])
                obj =  Resume_extractor()
                global texting
                texting= obj.extract_text_from_pdf(context['url'])
    
    
 

вот html-код

 <form enctype = "multipart/form-data"  method = "post">
    {% csrf_token %}
    <input type = "file" name = "filename" multiple/>
    <input type = "submit" value = "Upload" />
</form>
 

Как перебирать несколько файлов, чтобы сохранить их в папке и использовать их 1 на 1 для обработки над ними