Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexferrari88/gohn
Hacker News API wrapper for Go
https://github.com/alexferrari88/gohn
api go golang golang-library hacker-news hacktoberfest hacktoberfest2022
Last synced: 9 days ago
JSON representation
Hacker News API wrapper for Go
- Host: GitHub
- URL: https://github.com/alexferrari88/gohn
- Owner: alexferrari88
- License: mit
- Created: 2022-10-01T06:29:08.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T08:48:50.000Z (over 1 year ago)
- Last Synced: 2024-10-11T04:45:46.427Z (25 days ago)
- Topics: api, go, golang, golang-library, hacker-news, hacktoberfest, hacktoberfest2022
- Language: Go
- Homepage: https://pkg.go.dev/github.com/alexferrari88/gohn/pkg/gohn
- Size: 615 KB
- Stars: 29
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GoHN — Hacker News API Wrapper for Go
GoHN is a wrapper for the [Hacker News API](https://github.com/HackerNews/API) for Go, inspired by the excellent [go-github](https://github.com/google/go-github) library.
It facilitates the use of the API by providing a simple interface to the API endpoints.
## Features 🚀
- Get the top/new/best/ask/show/job stories
- Retrieve all comments (with metadata) for a story using goroutines to speed up the process
- Retrieve the comments ordered as they appear in the story on the website
- Apply filters to retrieved items (stories, comments)
- Can be used with a custom http.Client instance (to use a proxy, for example)## Usage 💻
Refer to the [GoDoc](https://pkg.go.dev/github.com/alexferrari88/gohn/pkg/gohn) for the full API reference.
### Example
Refer to [example/main.go](example/main.go) for a full example on how to retrieve the top stories' IDs and the all the comments for the first one.
```go
// Instantiate a new client to retrieve data from the Hacker News API
hn, _ := gohn.NewClient(nil)// Use background context
ctx := context.Background()// Get the top 500 stories' IDs
topStoriesIds, _ := hn.Stories.GetTopIDs(ctx)var story *gohn.Item
// Retrieve the details of the first one
if len(topStoriesIds) > 0 && topStoriesIds[0] != nil {
story, _ = hn.Items.Get(ctx, *topStoriesIds[0])
}if story == nil {
panic("No story found")
}// Print the story's title
fmt.Println("Title:", *story.Title)// Print the story's author
fmt.Println("Author:", *story.By)// Print the story's score
fmt.Println("Score:", *story.Score)// Print the story's URL
fmt.Println("URL:", *story.URL)fmt.Println()
fmt.Println()if story.Kids == nil {
fmt.Println("No comments found")
return
}// Retrieve all the comments for that story
// UnescapeHTML is applied to each retrieved item to unescape HTML characterscommentsMap, err := hn.Items.FetchAllKids(ctx, story, processors.UnescapeHTML())
if err != nil {
panic(err)
}
if len(commentsMap) == 0 {
fmt.Println("No comments found")
return
}fmt.Printf("Comments found: %d\n", len(commentsMap))
fmt.Println()// Create a Story struct to hold the story and its comments
storyWithComments := gohn.Story{
Parent: story,
CommentsByIdMap: commentsMap,
}// Calculate the position of each comment in the story
storyWithComments.SetCommentsPosition()// Get an ordered list of comments' IDs (ordered by position)
orderedIDs, err := storyWithComments.GetOrderedCommentsIDs()if err != nil {
panic(err)
}// Print the comments
for _, id := range orderedIDs {
comment := commentsMap[id]
if comment.Text != nil {
fmt.Println(*comment.Text)
fmt.Println()
}
}
```## Semantic Versioning 🥚
As this library is not yet in version 1.0.0, the API may have breaking changes between minor versions.
## Contributing 🤝🏼
Feel free to fork this repo and create a PR. I will review them and merge, if ok.
## License 📝
[MIT](https://choosealicense.com/licenses/mit/)