Skip to main content

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+.


Setup (one command)

Just run login — it walks you through everything the first time (no files to edit):

tg-ringer login

It will:

  1. Prompt for your api_id / api_hash (get them at https://my.telegram.orgAPI development tools) and an optional default target, then save them to ~/.config/tg-ringer/config (chmod 600).
  2. 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

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). pytgcalls covers group voice chats, not private 1-to-1 calls; private-call audio needs the old libtgvoip stack (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_hash and the *.session file 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tg_ringer-0.2.0.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tg_ringer-0.2.0-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file tg_ringer-0.2.0.tar.gz.

File metadata

  • Download URL: tg_ringer-0.2.0.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tg_ringer-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0bab63322cd8bade4d5c0b7e10644cfda1ebb9f07cc128c60342b18047fda28b
MD5 53ff202bfae6c220ef27daaa1bdfea28
BLAKE2b-256 806bf90f5f7e6c9e31e7a21a6316b5eb0f3e6551ae0c929f13f7e9c1736f445a

See more details on using hashes here.

File details

Details for the file tg_ringer-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: tg_ringer-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for tg_ringer-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f969d859c1626ed93fad9a9146da4cdac0ac78d63309250bd1406054d0209c0c
MD5 d12ce916ccb1916d3b3d360c1aebbfc7
BLAKE2b-256 ce90cea6be61993f59bc6c2c6b5dcb38d5a03836b7da122622985abf3bf47f44

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page