https://github.com/macrat/go-enex
The parser for the xml that exported by Evernote (.enex)
https://github.com/macrat/go-enex
evernote evernote-enex golang-library
Last synced: about 1 month ago
JSON representation
The parser for the xml that exported by Evernote (.enex)
- Host: GitHub
- URL: https://github.com/macrat/go-enex
- Owner: macrat
- License: mit
- Created: 2019-03-25T12:40:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-25T11:09:45.000Z (over 4 years ago)
- Last Synced: 2024-06-19T18:08:29.631Z (over 1 year ago)
- Topics: evernote, evernote-enex, golang-library
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go-enex
=======[](https://godoc.org/github.com/macrat/go-enex)
The parser for [the xml that exported by Evernote (.enex)](https://help.evernote.com/hc/en-us/articles/209005557).
## Example
``` go
package mainimport (
"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)
}
}
```