Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jwhittle933/docxology
Lightweight Golang Word Doc (.docx) file extractor and manipulator package
https://github.com/jwhittle933/docxology
extraction go golang golang-package microsoft microsoft-word text txt word xml zip zipfile zipfiles
Last synced: about 2 months ago
JSON representation
Lightweight Golang Word Doc (.docx) file extractor and manipulator package
- Host: GitHub
- URL: https://github.com/jwhittle933/docxology
- Owner: jwhittle933
- License: mit
- Created: 2019-04-02T13:02:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-19T12:56:25.000Z (almost 6 years ago)
- Last Synced: 2024-06-20T06:26:19.039Z (8 months ago)
- Topics: extraction, go, golang, golang-package, microsoft, microsoft-word, text, txt, word, xml, zip, zipfile, zipfiles
- Language: Go
- Homepage:
- Size: 40 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docxology
Golang Word Doc (.docx) file extractor and manipulator.
_In progress_ and open to contributions, suggestions, etc.
[![Build Status](https://travis-ci.com/jwhittle933/docxology.svg?branch=master)](https://travis-ci.com/jwhittle933/docxology)
[![GoDoc](https://godoc.org/github.com/jwhittle933/docxology?status.svg)](https://godoc.org/github.com/jwhittle933/docxology)## How To
### Info
.docx files are really just "application/zip" made of XML files. This package is intended to assist in extracting the XML and manipulating the data as you need. Go has everything you need built-in to handle this type of functionality, so this package aims, not to replace that funcationality, but to make it more immediately user-friendly.
### Get
```bash
go get github.com/jwhittle933/docxology
```