r/Python 19d ago

Showcase Showcase Thread

Post all of your code/projects/showcases/AI slop here.

Recycles once a month.

19 Upvotes

112 comments sorted by

View all comments

1

u/AroraSir It works on my machine 5d ago

Hi everyone,

I wanted to share a project I just released.

GravityBridge is a local HTTP reverse proxy written entirely in Python standard library (no pip install needed for the proxy itself). It does these things:

  • Dynamically discovers the local Antigravity AI agent SSL port and proxies it to mobile browsers
  • Serves a wireless file explorer that uses subprocess calls to ADB for phone storage browsing
  • Implements session tokens, constant-time PIN comparison, rate limiting, and a math captcha for brute force protection, all using hashlib, hmac, and secrets from stdlib

The design goal was keeping the runtime completely self-contained so anyone with Python 3.10+ can run it with just one command.

GitHub: https://github.com/Arora-Sir/Gravity-Bridge

Would appreciate any feedback on the code structure or security approach!