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: 5 months 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T14:10:47.000Z (about 1 year ago)
- Last Synced: 2024-11-10T18:47:38.217Z (5 months ago)
- Topics: doc-parser, document-parser, docx-parser, text-parser
- Language: Python
- Homepage:
- Size: 92.8 KB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- project-awesome - has-abi/docparser - Extract text from your DOCX documents. (Python)
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 parsedocument = parse("your_docx_document")
print(document.content)
```