1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- from docx import Document
- from docx.shared import Inches
- import time
- 'https://python-docx.readthedocs.io/en/latest/user/text.html'
- def create_custome_doc_file():
- '''
- :return: Bill as Doc file
- '''
- document = Document()
- document.add_heading('Document Title', 0)
- p = document.add_paragraph('A plain paragraph having some ')
- p.add_run('bold').bold = True
- p.add_run(' and some ')
- p.add_run('italic.').italic = True
- document.add_heading('Heading, level 1', level=1)
- document.add_paragraph('Intense quote', style='Intense Quote')
- document.add_paragraph(
- 'first item in unordered list', style='List Bullet'
- )
- document.add_paragraph(
- 'first item in ordered list', style='List Number'
- )
- records = (
- (3, '101', 'Spam'),
- (7, '422', 'Eggs'),
- (4, '631', 'Spam, spam, eggs, and spam')
- )
- table = document.add_table(rows=1, cols=3)
- hdr_cells = table.rows[0].cells
- hdr_cells[0].text = 'Qty'
- hdr_cells[1].text = 'Id'
- hdr_cells[2].text = 'Desc'
- for qty, id, desc in records:
- row_cells = table.add_row().cells
- row_cells[0].text = str(qty)
- row_cells[1].text = id
- row_cells[2].text = desc
- document.add_page_break()
- doc_output_path = r'C:\Users\Danny\Desktop\ssd wichtige dinge D\Tools\fast_excel_to_bill\test_folder' + r'\doc_test_{}.docx'.format(time.strftime("%Y-%m-%d_H%H-M%M"))
- document.save(doc_output_path)
|