Skip to content

mattn/go-plist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-plist

plist parser

Usage

v, err := plist.Read(f)
if err != nil {
	log.Fatal(err)
}

tree := v.(plist.Dict)
for _, t := range tree["Tracks"].(plist.Dict) {
	if item, ok := t.(plist.Dict); ok {
		fmt.Println(item["Name"])
	}
}

Installation

go get github.com/mattn/go-plist

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages