Get only summary page
Leave feedback
On this page
GroupDocs.Comparison for Python via .NET can generate only the summary page with high-level statistics and change counts.
Enable summary-only output to reduce file size and focus on key metrics.
import groupdocs.comparison as gc
with gc.Comparer("source.docx") as comparer:
comparer.add("target.docx")
options = gc.CompareOptions()
options.show_only_summary_page = True
comparer.compare("result.docx", options)
🔹 Use case: Share a concise overview of differences without exposing full document content.
The result is as follows:
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.