Popularity
4.1
Stable
Activity
3.8
-
86
5
18

Description

This is a simple libary to extract text from plaintext, .docx, .odt, .pdf and .rtf files.

Programming language: Go
License: The Unlicense
Tags: Text Processing     Specific Formats     Parsing     Files     Package     PDF    
Latest version: v0.1.5

cat alternatives and similar packages

Based on the "Specific Formats" category.
Alternatively, view cat alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of cat or a related project?

Add another 'Specific Formats' Package

README

GoDoc License CircleCI Go Report Card codecov

cat

This is a simple libary to extract text from plaintext, .docx, .odt, .pdf and .rtf files.

Install

go get -u github.com/lu4p/cat

Basic Usage

package main
import (
  "fmt"
  "github.com/lu4p/cat"
)

func main(){
  txt, _ := cat.File("filename")
  fmt.Println(txt)
}


*Note that all licence references and agreements mentioned in the cat README section above are relevant to that project's source code only.