Skip to main content

Tello-Renewal

GitHub release Docker Image

中文版 | English Version

Automatic renewal system for Tello mobile plans. Uses CloakBrowser (headless Chromium with 57 source-level patches) to bypass Cloudflare managed challenges on Tello's checkout endpoint.

Features

  • 🔄 Automatic plan renewal via CloakBrowser
  • 🛡️ Cloudflare bypass via real browser fingerprinting (CloakBrowser)
  • 📋 Plan catalog check — monitor available plans without login
  • 📧 Email notifications for success / failure
  • 🧪 Dry-run mode for safe testing
  • 📡 JSON-first CLI output — machine-readable by default, --human for text
  • ⚙️ YAML configuration with pydantic validation
  • 📊 Structured logging with rotation
  • 🐳 Docker support — single image with CloakBrowser pre-bundled

Installation

From PyPI

pip install tello-renewal
python -m cloakbrowser install   # download patched Chromium (~200 MB, one-time)

Requirements

  • Python 3.10+
  • CloakBrowser's Chromium is self-contained (downloaded via python -m cloakbrowser install)

Quick Start

  1. Create configuration file:

    tello-renewal config-init
    
  2. Edit config.yaml with your Tello credentials:

    tello:
      email: "you@example.com"
      password: "your_password"
      card_expiration: "1/27"      # MM/YY
    
  3. Test:

    tello-renewal config-validate
    tello-renewal email-test
    tello-renewal status
    
  4. Renew:

    tello-renewal renew --dry-run   # test without charging
    tello-renewal renew             # real renewal
    

Configuration Reference

tello:
  email: "you@example.com"
  password: "your_password"
  card_expiration: "1/27"        # MM/YY, MM/YYYY, or YYYY-MM-DD
  base_url: "https://tello.com"
  login_timeout: 30

browser:
  browser_type: "cloakbrowser"
  headless: true                   # false for headed mode (helps with CF)
  timeout: 60
  # proxy_server: "http://10.0.0.1:7890"

# Expected plan (optional) — status/renew warn on mismatch
plan:
  data: "2 GB"                     # "2 GB", "10 GB", "20 GB", "Unlimited"
  call: "Unlimited"                # "300 min", "Unlimited"

renewal:
  auto_renew: true
  days_before_renewal: 1         # start attempting N days before due date
  max_retries: 3
  retry_delay: 300               # seconds between retries
  dry_run: false
  state_folder_path: ".tello_state"

smtp:
  server: "smtp.gmail.com"
  port: 587
  username: "you@gmail.com"
  password: "app_password"
  from_email: '"Tello Renewal" <you@gmail.com>'
  use_tls: true

notifications:
  email_enabled: true
  recipients:
    - "admin@example.com"
  send_on_success: true
  send_on_failure: true
  send_on_not_due: false

logging:
  level: "INFO"
  format: "detailed"             # simple | detailed | json
  file: "tello_renewal.log"
  max_size: "10MB"
  backup_count: 5
  console_output: true

CLI Commands

tello-renewal renew [--dry-run] [--force]   # execute renewal
tello-renewal status                         # account status and balance
tello-renewal plan-check                     # list available plan options
tello-renewal config-init [--output FILE]   # generate example config
tello-renewal config-validate               # validate config file
tello-renewal email-test                    # send test notification

Global options: --config FILE, --verbose, --human, --version

Output is JSON by default (machine-readable). Add --human for a human-friendly table/text view:

tello-renewal status                        # JSON output
tello-renewal --human status                # human-readable text
tello-renewal --human plan-check            # plan table

Exit Codes

Code Meaning
0 Success
1 General error
2 Configuration error
5 Renewal failed
6 Not due for renewal
7 Skipped (cached)

Docker

The Docker image (python:3.12-slim base) includes CloakBrowser's Chromium pre-downloaded.

docker run --rm --shm-size=256m \
  -v /path/to/config:/app/config:ro \
  -v /path/to/logs:/app/logs \
  oaklight/tello-renewal:latest \
  tello-renewal --config /app/config/config.yaml renew

--shm-size=256m is required — Chromium uses /dev/shm for IPC and crashes with the default 64 MB Docker limit.

Build from source

make build-package   # build Python wheel
make build-docker    # build Docker image from local wheel

# Optional overrides
make build-docker MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
make build-docker REGISTRY_MIRROR=docker.1ms.run

Cron with Docker

0 0 * * * docker run --rm --shm-size=256m \
  -v ~/.config/tello-renewal:/app/config:ro \
  -v /var/log/tello-renewal:/app/logs \
  oaklight/tello-renewal:latest \
  tello-renewal --config /app/config/config.yaml renew >/dev/null 2>&1

Scheduling (without Docker)

Cron

0 0 * * * /path/to/venv/bin/tello-renewal renew >> /var/log/tello-renewal.log 2>&1

Systemd timer

# /etc/systemd/system/tello-renewal.service
[Unit]
Description=Tello Plan Auto Renewal
After=network.target

[Service]
Type=oneshot
User=tello
ExecStart=/opt/tello-renewal/venv/bin/tello-renewal renew
# /etc/systemd/system/tello-renewal.timer
[Unit]
Description=Run Tello renewal daily

[Timer]
OnCalendar=daily
Persistent=true

[Install]
WantedBy=timers.target
sudo systemctl enable --now tello-renewal.timer

Troubleshooting

CloakBrowser binary missing:

python -m cloakbrowser install

Email sending failures: Use app-specific passwords. Test with tello-renewal email-test.

Debug mode:

tello-renewal --verbose renew --dry-run

Development

git clone https://github.com/Oaklight/Tello-Renewal.git
cd Tello-Renewal
pip install -e ".[dev]"
python -m cloakbrowser install
pytest
ruff check src/

Changelog

See CHANGELOG.md.

License

MIT — see LICENSE.

Disclaimer

Provided as-is for personal automation. You are responsible for complying with Tello's terms of service and for the security of your credentials. The authors are not liable for failed renewals or service interruptions.

Download files

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

Source Distribution

tello_renewal-0.5.0.tar.gz (76.4 kB view details)

Uploaded Source

Built Distribution

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

tello_renewal-0.5.0-py3-none-any.whl (79.8 kB view details)

Uploaded Python 3

File details

Details for the file tello_renewal-0.5.0.tar.gz.

File metadata

  • Download URL: tello_renewal-0.5.0.tar.gz
  • Upload date:
  • Size: 76.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tello_renewal-0.5.0.tar.gz
Algorithm Hash digest
SHA256 d0b8dddf6a4fea364e94087611a46b465d546ae0049af706b589ffb210e94e4d
MD5 03aa7dc5236b007c86aa094fe4d44716
BLAKE2b-256 4e27cbff7a728e7a0d6d20115923e383cef43bed8394693989ed32424fad1750

See more details on using hashes here.

Provenance

The following attestation bundles were made for tello_renewal-0.5.0.tar.gz:

Publisher: release.yml on Oaklight/Tello-Renewal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tello_renewal-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: tello_renewal-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tello_renewal-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b159312b50846235d0f7b7d6d29abd0e2f8f1c11c6398c4f27bd04731e46c0f5
MD5 584c54ad0e0868992774aea966b4b125
BLAKE2b-256 9ab9731203fce41f1900666bfc6a50793864c7b2d45f805305542e703bb8cd53

See more details on using hashes here.

Provenance

The following attestation bundles were made for tello_renewal-0.5.0-py3-none-any.whl:

Publisher: release.yml on Oaklight/Tello-Renewal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.5.1

2 files

This release

0.5.0 This release

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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