ynab alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view ynab alternatives based on common mentions on social networks and blogs.
-
go-openai
OpenAI ChatGPT, GPT-3, GPT-4, DALL·E, Whisper API wrapper for Go -
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
twitter-scraper
Scrape the Twitter frontend API without authentication with Golang. -
openaigo
OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Instant Messaging API only) -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
clarifai
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
go-trending
Go library for accessing trending repositories and developers at Github. -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
google-play-scraper
Golang scraper to get data from Google Play Store
Collect and Analyze Billions of Data Points in Real Time
Do you think we are missing an alternative of ynab or a related project?
README
YNAB API Go Library
This is an UNOFFICIAL Go client for the YNAB API. It covers 100% of the resources made available by the YNAB API.
Installation
go get go.bmvs.io/ynab
Usage
To use this client you must obtain an access token from your My Account page of the YNAB web app.
package main
import (
"fmt"
"go.bmvs.io/ynab"
)
const accessToken = "bf0cbb14b4330-not-real-3de12e66a389eaafe2"
func main() {
c := ynab.NewClient(accessToken)
budgets, err := c.Budget().GetBudgets()
if err != nil {
panic(err)
}
for _, budget := range budgets {
fmt.Println(budget.Name)
// ...
}
}
See the godoc to see all the available methods with example usage.
Development
- Make sure you have Go 1.11 or later installed
- Make sure you have exported
GO111MODULE=on
in your environment to be able do handle dependencies - Run tests with
go test -race ./...
License
BSD-2-Clause
*Note that all licence references and agreements mentioned in the ynab README section above
are relevant to that project's source code only.