Check whether FileResponse instead of StreamingHttpResponse helps to solve the issue , https://docs.djangoproject.com/en/4.0/ref/request-response/#fileresponse-objects
On Tue, Feb 1, 2022 at 11:26 PM Aadil Rashid <aadil10121998@gmail.com> wrote:
--I am trying to generating pdf from webpages, using popen , but when i call thisview it generates UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd3 in position 10: invalid continuation byteThis is my viewfrom projName.settings import BASE_DIRfrom subprocess import Popen, PIPE, STDOUTfrom wsgiref.util import FileWrapperfrom django.http import StreamingHttpResponseclass DownloadAsPDF(View):def post(self, request, *args, **kwargs):base = str(BASE_DIR)file_name = str( base + '/testreport.pdf')post_url = request.POST.get("page_url")url = str('http://' + request.get_host() + post_url)chrome_args = ['/path/google-chrome', '--headless', '--virtual-time-buget=20000','--print-to-pdf=/path/testreport.pdf', url]external_process = Popen(chrome_args, stdout=PIPE, stderr=STDOUT)external_process.wait()return_file = FileWrapper(open('{}'.format(file_name), 'r'))download_file_name = 'report'response = StreamingHttpResponse(return_file, content_type='application/force-download')response['Content-Disposition'] = f'attachment; filename= {download_file_name}.pdf'return responseCan please anybody, tell me why is it generating this error and what is the possible solutionthis problem, Thanks you very much
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/9a0b68e5-a587-4ac4-a018-a8fcc18f1cf4n%40googlegroups.com.
--
Jisson Varghese
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAADa5QfL1dmbPFWChRnF8OxowsBaOCAOo2Xq%2Bu-EshjA4LpydA%40mail.gmail.com.
No comments:
Post a Comment