معرفی شرکت ها


docxedit-1.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Edit Word documents but keep original formatting
ویژگی مقدار
سیستم عامل -
نام فایل docxedit-1.0.1
نام docxedit
نسخه کتابخانه 1.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Henri Happonen <henkka.happonen@gmail.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/docxedit/
مجوز -
# Mass Edit Word Documents But Keep Original Formatting Edit existing Word documents effortlessly and without changing the original formatting of the document. As great as the original `docx` library is, this "keep same format" feature is not natively supported. However, this functionality is pretty useful if you want to automate document writing or editing and need to adhere to strict formatting rules. Hence, I wrote this small add-on module. [![PyPI version](https://badge.fury.io/py/docxedit.svg)](https://badge.fury.io/py/docxedit) ## Installing With pip: `pip install docxedit` ## Dependencies Included as a dependency: `python-docx` ## Functions Most of the functions in this module work primarily with **runs**, which are sequences of strings with the same formatting style. This is how we can edit the document but keep the original format. # Example Usage ```python from docx import Document import docxedit document = Document() # Replace all instances of the word 'Hello' in the document by 'Goodbye' docxedit.replace_string(document, old_string='Hello', new_string='Goodbye') # Replace all instances of the word 'Hello' in the document by 'Goodbye' but only # up to paragraph 10 docxedit.replace_string_up_to_paragraph(document, old_string='Hello', new_string='Goodbye', paragraph_number=10) # Remove any line that contains the word 'Hello' along with the next 5 lines docxedit.remove_lines(document, first_line='Hello', number_of_lines=5) ```


نیازمندی

مقدار نام
- python-docx>=0.8.0


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl docxedit-1.0.1:

    pip install docxedit-1.0.1.whl


نصب پکیج tar.gz docxedit-1.0.1:

    pip install docxedit-1.0.1.tar.gz