We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I would like to know if its possible to add an example using one DRF.
Example ( http://www.django-rest-framework.org/api-guide/parsers/#fileuploadparser )
Basic usage example:
class FileUploadView(views.APIView): parser_classes = (FileUploadParser,) def put(self, request, filename, format=None): file_obj = request.data['file'] # ... # do some stuff with data-importer # ... return Response(status=204) # If data-importer succeeds on save.
The text was updated successfully, but these errors were encountered:
Hi, klahnen Amazing, idea !!!
Could you send me one pull request with changes that you need ? If not I'll make some examples in my free time.
Sorry, something went wrong.
Hey valdergallo,
I will work on that and if you agree I will be posting questions if I get stuck. Thanks for your time.
OK, no problem
tnx :D
No branches or pull requests
Hi,
I would like to know if its possible to add an example using one DRF.
Example ( http://www.django-rest-framework.org/api-guide/parsers/#fileuploadparser )
Basic usage example:
The text was updated successfully, but these errors were encountered: