Skip to content

Microsoft Office metadata extractor written in Go

License

Notifications You must be signed in to change notification settings

kevinborras/metagoffice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Package to extract metadata of Office files

Travis build Go Report Card

This package is intended to be a powerful alternative to other solutions for extract metadata from Office files.

The main features of metagoffice are:

  • Read metadata of xlsx files.
  • Read metadata of docx files.
  • Read metadata of pptx files.

How to use ?


package main

import (
	"fmt"

	"github.com/kevinborras/metagoffice"
)

func main() {
	
	file, err := os.Open("document.docx")
	if err != nil {
		log.Fatal(err)
	}
	file.Close()
	content, err := metagoffice.GetContent(file)
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Title: ", content.Title)
	fmt.Println("Subject: ", content.Subject)
	fmt.Println("Creator: ", content.Creator)
	fmt.Println("Keywords: ", content.Keywords)
	fmt.Println("Description: ", content.Description)
	fmt.Println("Last modified by: ", content.LastModifiedBy)
	fmt.Println("Revision: ", content.Revision)
	fmt.Println("Created: ", content.Created)
	fmt.Println("Modified: ", content.Modified)
	fmt.Println("Category: ", content.Category)

}

Output

Title:  Test Document
Subject:
Creator:  Soler, Kevin
Keywords:  This is a tag
Description:  This is a comment
Last modified by:  Soler, Kevin
Revision:  4
Created:  2018-10-12T14:01:00Z
Modified:  2018-10-15T11:23:00Z
Category:

About

Microsoft Office metadata extractor written in Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages