Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/euskadi31/go-epf
Golang Apple EPF (Enterprise Partner Feed) Parser
https://github.com/euskadi31/go-epf
apple application epf feed golang-library itunes music parser
Last synced: about 2 months ago
JSON representation
Golang Apple EPF (Enterprise Partner Feed) Parser
- Host: GitHub
- URL: https://github.com/euskadi31/go-epf
- Owner: euskadi31
- License: mit
- Created: 2017-06-27T21:30:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-05T20:04:55.000Z (over 7 years ago)
- Last Synced: 2024-10-13T12:23:49.891Z (3 months ago)
- Topics: apple, application, epf, feed, golang-library, itunes, music, parser
- Language: Go
- Size: 5.86 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Enterprise Partner Feed Parser
==============================Golang Apple EPF (Enterprise Partner Feed) Parser
## Example
```go
import "github.com/euskadi31/go-epf"parser, err := epf.NewParser("itunes/artist")
if err != nil {
panic(err)
}
defer parser.Close()// Metadata of epf file, Fileds, Types, PrimaryKey, ...
md := parser.Metadata()// Read first row of epf file
item, err := parser.Read()
if err != nil {
panic(err)
}// item is a map[string]interface{}
```
## License
go-epf is licensed under [the MIT license](LICENSE.md).