Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more! Learn more →
TextBelt Alternatives
Similar projects and alternatives to TextBelt
-
-
Appwrite
Appwrite - The Open Source Firebase alternative introduces iOS support . Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
-
ZeroNet
ZeroNet - Decentralized websites using Bitcoin crypto and BitTorrent network
-
Jitsi Meet
Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
-
-
-
home-assistant-google-assistant-local-sdk
Google Assistant Local SDK implementation for Home Assistant
-
Sonar
Write Clean JavaScript Code. Always.. Sonar helps you commit clean code every time. With over 300 unique rules to find JavaScript bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.
-
Zulip
Zulip server and web application. Open-source team chat that helps teams stay productive and focused.
-
-
-
-
-
-
-
Mattermost
Mattermost is an open source platform for secure collaboration across the entire software development lifecycle.
-
InfluxDB
Build time-series-based applications quickly and at scale.. InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
TextBelt reviews and mentions
-
Ways to code notifications into your Python scripts?
I use paid service textbelt.com (also www.twilio.com is there), they have standard plugin for many languages.
-
Elixir and SMS tutorial
# Path: lib/sms_demo/sms_handler.ex defmodule SmsDemo.SmsHandler do use GenServer def send_message(to_phone, message) do GenServer.cast(SmsDemo.SmsHandler, {:send, {to_phone, message}}) end def receive_message(from_phone, message) do GenServer.cast(SmsDemo.SmsHandler, {:receive, {from_phone, message}}) end def start_link(_) do GenServer.start_link(__MODULE__, [], name: __MODULE__) end def init([]) do {:ok, %{}} end def handle_cast({:send, {phone, message}}, state) do textbelt_url = "https://textbelt.com/text" textbelt_key = Application.get_env(:sms_demo, :textbelt_key) replyWebhookUrl = Application.get_env(:sms_demo, :webhook_url) params = %{ phone: phone, message: message, key: textbelt_key, replyWebhookUrl: replyWebhookUrl } HTTPoison.post(textbelt_url, Poison.encode!(params), [{"Content-type", "application/json"}]) {:noreply, state} end def handle_cast({:receive, {phone, message}}, state) do # TODO: Do something with the message {:noreply, state} end end
-
Free SMS API
You can look into this: https://github.com/typpo/textbelt
-
Home Assistant iOS app adds local push notification support
I settled on https://textbelt.com/ since it was cheap, a curl one-liner to use and didn't require me to install something new on my phone.
% long-running-job.sh ; sms "the job is done"
-
A note from our sponsor - Appwrite
appwrite.io | 8 Feb 2023
Stats
typpo/textbelt is an open source project licensed under MIT License which is an OSI approved license.
TextBelt is marked as "self-hosted". This means that it can be used as a standalone application on its own.