Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/triztian/docx.jl
A package to read Docx (Word) documents
https://github.com/triztian/docx.jl
Last synced: about 1 month ago
JSON representation
A package to read Docx (Word) documents
- Host: GitHub
- URL: https://github.com/triztian/docx.jl
- Owner: triztian
- License: mit
- Created: 2021-03-26T04:38:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-26T15:52:45.000Z (over 3 years ago)
- Last Synced: 2024-11-09T17:42:07.386Z (about 2 months ago)
- Language: Julia
- Size: 165 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docx.jl
> **NOTICE:** THIS SOFTWARE IS UNDER DEVELOPMENT AND ITS API IS NOT YET STABLE
A pure Julia package to work with Docx (Word) documents.
This package aims to easily integrate with the packages of the [JuliaText](https://github.com/JuliaText) organization.
* This package is heavily inspired by [python-docx](https://github.com/python-openxml/python-docx)
## Installation
```julia
julia> using Pkg; Pkg.add("Docx")
```### Usage
```julia
using Docxdocument = Docx.open("/path/to/document.docx")
```Obtaining the plain text from the document:
```julia
Docx.read(document, String)
```