Ring (call) and message any Telegram user from your own account — urgent alerts via a real Telegram call.
Project description
tg-ringer
Ring (call) and message any Telegram user from your own account — a lightweight Telethon userbot for urgent alerts.
It places a real private Telegram call so the target's phone rings (no audio is streamed — the ring itself is the alert), then hangs up. It can also send direct account-to-account messages.
This is a userbot (your real account), not a bot. That is the point — bots cannot place calls. See ⚠️ ToS & bans before using.
When to use it
| You want… | Use this? |
|---|---|
| Phone to ring on a critical event (build failed, server down, prod alert) | ✅ yes |
| A free alternative to paid call APIs, and you already live in Telegram | ✅ yes |
| Account-to-account DM from a script (faster than Bot API on a warm connection) | ✅ yes |
| Spoken/TTS audio in the call | ❌ no — ring only (see limitations) |
| Reach someone with no internet (real cellular call) | ❌ no — Telegram is VoIP; use Twilio/PSTN |
| Mass messaging / spam | ❌ absolutely not — instant ban |
Install
pip install tg-ringer
Requires Python 3.9+.
Also available in other languages 🌍
| Language | Install | Downloads |
|---|---|---|
| 🐍 Python | pip install tg-ringer |
PyPI |
| 🐹 Go | go install github.com/jdp5949/tg-ringer-go/cmd/tg-ringer@latest |
binaries |
| 🟢 Node/TS | npm install github:jdp5949/tg-ringer-js |
tarball |
| ☕ Java | JitPack com.github.jdp5949:tg-ringer-java:v0.1.0 |
jars |
| 🦀 Rust | cargo install --git https://github.com/jdp5949/tg-ringer-rs |
binaries |
Full docs & use cases: https://jdp5949.github.io/tg-ringer/
Setup (one command)
Just run login — it walks you through everything the first time (no files to edit):
tg-ringer login
It will:
- Prompt for your
api_id/api_hash(get them at https://my.telegram.org → API development tools) and an optional default target, then save them to~/.config/tg-ringer/config(chmod 600). - Ask for the userbot account's phone number, the login code (delivered inside Telegram, not SMS), and a 2FA password if you have one.
Later runs skip setup and just sign in. Re-run setup anytime with tg-ringer init;
inspect it with tg-ringer config.
Use a separate account as the userbot — not the one you want to ring. You cannot call yourself.
Configuration values
Saved by login/init, or supplied as env vars (env takes precedence — handy in CI):
| Var | Meaning |
|---|---|
TG_API_ID, TG_API_HASH |
credentials (required) |
TG_TARGET |
default target for call/msg |
RING_SECONDS |
default ring duration (20) |
TG_SESSION |
session file path |
TG_RINGER_HOME |
config directory override |
CLI usage
# Ring a number (or @username, or numeric id) — phone rings, then hangs up
tg-ringer call +15551234567
tg-ringer call @someuser --seconds 30
tg-ringer call # uses TG_TARGET
# Send a direct message
tg-ringer msg +15551234567 "deploy finished"
echo "piped body" | tg-ringer msg @someuser
# Who am I logged in as?
tg-ringer whoami
# Check anti-spam status via @SpamBot
tg-ringer status
Full command reference and per-language usage (Go/Node/Rust/Java invocation + library snippets): https://jdp5949.github.io/tg-ringer/#usage
In scripts
long_task && tg-ringer msg "$ALERT" "✅ done" || tg-ringer call "$ALERT"
Library usage
import asyncio
from tg_ringer import TgCaller
async def main():
async with TgCaller(api_id=1234567, api_hash="...", session="userbot") as tg:
await tg.ring("+15551234567", seconds=20) # phone rings 20s
await tg.message("+15551234567", "heads up") # direct message
asyncio.run(main())
TgCaller methods (all async):
| Method | Does |
|---|---|
ring(target, seconds=20) |
Place a private call; phone rings then hangs up. Returns call id. |
message(target, text) |
Send a direct message. Returns message id. |
resolve(target) |
Resolve a @username, numeric id, or +phone to an entity. |
whoami() |
Return the logged-in account. |
target may be a @username, a numeric user id, or a +E164 phone number. A
phone number is imported as a temporary contact so it can be reached.
Limitations
- Ring only, no audio. Playing TTS/sound needs the full encrypted call to
connect (WebRTC/Opus).
pytgcallscovers group voice chats, not private 1-to-1 calls; private-call audio needs the oldlibtgvoipstack (fragile). For a spoken message, use a PSTN provider (e.g. Twilio). - Internet required on the receiver. Telegram calls are VoIP.
- Calls only land if Telegram lets them. New accounts, and especially VoIP
numbers, hit anti-spam (
PeerFloodError). Best results when caller and target are mutual contacts.
⚠️ ToS & bans
Automating a user account (userbot) is a gray area under Telegram's Terms of Service. Risks you accept by using this:
- Accounts can be limited or banned, especially VoIP numbers, new accounts, or any account making automated calls/messages to non-contacts.
- Keep volume low. Make the caller and target mutual contacts. Do not spam.
- Use a throwaway/secondary account as the userbot.
You are responsible for how you use this. See @SpamBot in Telegram to check an
account's restriction status.
Security
- Your
api_hashand the*.sessionfile grant full access to the userbot account. Never commit or share them. The config and session live under~/.config/tg-ringer/and are git-ignored in this repo. - Revoke a leaked session from any Telegram client: Settings → Devices → Terminate.
Troubleshooting
| Symptom | Fix |
|---|---|
PeerFloodError |
Account anti-spam limited. Make caller+target mutual contacts; check @SpamBot; wait; or use a non-VoIP number. |
session not authorized |
Run tg-ringer login. |
| Login code never arrives | It's delivered in the Telegram app ("Telegram" service chat), not SMS. The userbot number must be logged into a Telegram client. |
| Target not on Telegram | +phone must belong to a Telegram account. |
| No notification but message sent | Receiver chat is muted / OS notifications off. |
License
MIT © jdp5949
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tg_ringer-0.3.0.tar.gz.
File metadata
- Download URL: tg_ringer-0.3.0.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21c2f91e1336ca1625a86f674111cd2a6b38971c9ec7090010a96f8850f9ced2
|
|
| MD5 |
5c2c4b7fa33725cd4baf35bac0ea8797
|
|
| BLAKE2b-256 |
747ae3a5cdb1fe19c7b80230fa51629c94cd0b29fe53aa90929f16d6411eb098
|
File details
Details for the file tg_ringer-0.3.0-py3-none-any.whl.
File metadata
- Download URL: tg_ringer-0.3.0-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9cfca3282ae6060e72816a133fb6716d57463011663be4422f3665961bacfb3
|
|
| MD5 |
439d97d28191804cada36c47fb08ad49
|
|
| BLAKE2b-256 |
ad224c30fcb502dfa938142f27337e220f98571d40b9e2fe44a6a0f03dc6371a
|