
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
A Python package to easily start and manage Cloudflare Tunnels for exposing local services securely.
â
Auto-downloads & updates the cloudflared
binary
â
Supports Windows, Linux, and macOS
â
Works with Cloudflare account tunnels or TryCloudflare
â
Asynchronous & efficient (aiohttp
based)
â
Automatic exponential backoff for stable connections
Install via PyPI:
pip install cloudflarify
import asyncio
from cloudflarify import start_tunnel
async def main():
tunnel_url = await start_tunnel(app_port=5000)
print(f"Tunnel is live at: {tunnel_url}")
asyncio.run(main())
asyncio.run(start_tunnel(app_port=5000, tunnel_key="YOUR_TUNNEL_KEY"))
asyncio.run(start_tunnel(config_file="path/to/config.yml"))
from flask import Flask
import asyncio
from cloudflarify import start_tunnel
port = 5000
app = Flask(__name__)
@app.route("/")
def home():
return "Hello, Cloudflare Tunnel!"
if __name__ == "__main__":
asyncio.run(start_tunnel(app_port=port)) # Start tunnel
app.run(port=port) # Start Flask app
aiohttp
, tqdm
This project was inspired by flask-cloudflared.
This project is MIT licensed.
FAQs
A Python wrapper to run Cloudflare tunnels programmatically
We found that cloudflarify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.