Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/has-abi/docparser
- Owner: has-abi
- License: mit
- Created: 2022-12-22T16:52:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T14:10:47.000Z (12 months ago)
- Last Synced: 2024-11-10T18:47:38.217Z (3 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
[![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 parsedocument = parse("your_docx_document")
print(document.content)
```