Answer the question
In order to leave comments, you need to log in
Where to write your python scripts in django?
Hello!
I created a project on django, created an application, created a page with a form, the form accepts a file, and then sends it to the server using the POST method for further processing.
def index(request):
if request.method == 'POST':
form = myForm(request.POST, request.FILES)
if form.is_valid():
...
...
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question