https://github.com/has-abi/docparser
Extract text from your DOCX documents.
https://github.com/has-abi/docparser
doc-parser document-parser docx-parser text-parser
Last synced: 9 days ago
JSON representation
Extract text from your DOCX documents.
- Host: GitHub
- URL: https://github.com/has-abi/docparser
- Owner: has-abi
- License: mit
- Created: 2022-12-22T16:52:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T14:10:47.000Z (almost 2 years ago)
- Last Synced: 2025-09-29T08:18:54.290Z (3 months ago)
- Topics: doc-parser, document-parser, docx-parser, text-parser
- Language: Python
- Homepage:
- Size: 92.8 KB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://www.python.org/downloads/release/python-370/)

[](https://codecov.io/gh/has-abi/docparser)
# What is docparser?
docparser is python package that extract text form a DOCX document.
## Installation
```bash
pip install python-docparser
```
## Usage
```python
from docparser import parse
document = parse("your_docx_document")
print(document.content)
```