Popularity
1.7
Stable
Activity
0.0
Stable
19
4
1
Programming language: Go
License: MIT License
Tags:
Third-party APIs
Latest version: v1.0.0
textbelt alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view textbelt alternatives based on common mentions on social networks and blogs.
-
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
openaigo
OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested -
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.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of textbelt or a related project?
README
textbelt.com API for GO
This library sends text messages to mobile phones using http://textbelt.com
Installing
go get
$ go get gopkg.in/dietsche/textbelt.v1
Example Code
package main
import (
"gopkg.in/dietsche/textbelt.v1"
)
func main() {
texter := textbelt.New()
phoneToText := "123-456-7890"
if err := texter.Text(phoneToText, "txt msg from go!"); err != nil {
panic(err)
}
}