Skip to content
/ go-enex Public

The parser for the xml that exported by Evernote (.enex)

License

Notifications You must be signed in to change notification settings

macrat/go-enex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-enex

GoDoc

The parser for the xml that exported by Evernote (.enex).

Example

package main

import (
	"os"
	
	"github.com/macrat/go-enex"
)

func main() {
	f, _ := os.Open("notebook.enex")

	data, err := enex.ParseFromReader(f)
	if err != nil {
		panic(err.Error())
	}

	for _, note := range data.Notes {
		fmt.Println(note.UpdatedAt, ": ", note.Title)
	}
}

About

The parser for the xml that exported by Evernote (.enex)

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages