Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 2 months ago
JSON representation

Extract text from your DOCX documents.

Awesome Lists containing this project

README

        

[![Python Version](https://img.shields.io/badge/python-3.7+-blue)](https://www.python.org/downloads/release/python-370/)
![Tests](https://github.com/has-abi/docparser/actions/workflows/test.yml/badge.svg)
[![codecov](https://codecov.io/gh/has-abi/docparser/branch/main/graph/badge.svg?token=4AL385JEH9)](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)
```