Generieren Sie das MS-Word-Dokument in Django

Derzeit erstelle ich die Berichte im PDF-Format. Aber jetzt möchte ich die Berichte im MS Word- oder DocX-Format generieren.

meine api.py Datei

def export_pdf(request,id):
        report = Report.objects.get(id=id)                

        options1 = ReportPropertyOption.objects.filter(report=report,is_active=True)   
        locations = []  
        out_string = ""    
        map = None



        for option in options1:  
            option.property = get_property_name(option.property)        
            option.exterior_images = ReportExteriorImages.objects.filter(report = option)  
            option.interior_images = ReportInteriorImages.objects.filter(report = option)
            option.floorplan_images = ReportFloorPlanImages.objects.filter(report = option)
            option.fitouts =    ReportFitOut.objects.filter(propertyoption = option)   
            if (option.gps_longitude):

                locations.append("&markers=color:red|label:S|"+""+str(option.gps_longitude)+","+str(option.gps_latidtude)+"")
        for loc in locations:
            out_string+=loc

        if locations:
            map = "http://maps.google.com/maps/api/staticmap?center=Bangalore&zoom=12&size=512x512&maptype=roadmap"+out_string+"&sensor=true"              
        #map = "http://maps.google.com/maps/api/staticmap?zoom=12&size=400x400&maptype=roadmap&sensor=false&center=\\"
        html  = render_to_string('report/export.html', { 'pagesize' : 'A4', }, context_instance=RequestContext(request,{'options1':options1,'meta':report.meta,'map':map}))

        result = StringIO.StringIO()       
        pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), dest=result, link_callback=fetch_resources )        
        #pdf = Docx(StringIO.StringIO(html.encode("UTF-8")), dest=result, link_callback=fetch_resources )
        if not pdf.err:
            return result
        else:
            return None

Ich erhalte alle Daten als Ergebnis und exportiere diese Daten dann als PDF. Aber jetzt möchte ich die Daten in das DocX- oder MS-Word-Format exportieren. Das gleiche Ergebnis möchte ich in DocX-Format exportieren. Da ich die Daten im pdf-Format erhalte, möchte ich nicht das exportierte pdf in docx umwandeln. Ich möchte direkt in docx exportieren. Ich habe versucht, Python-Docx zu verwenden, konnte aber nicht herausfinden, wie man im Docx-Format exportiert. Kann mir jemand helfen? Welches Modul sollte ich in Django verwenden. Bitte hilf mir

Antworten auf die Frage(1)

Ihre Antwort auf die Frage