Metadata-Version: 2.1
Name: tunnelify
Version: 0.3.0
Summary: A simple package for easily creating Cloudflare or Localtunnel tunnels.
Home-page: https://github.com/MYusufY/tunnelify
Author: Yusuf YILDIRIM
Author-email: yusuf@tachion.tech
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: Proxy Servers
Classifier: Topic :: System :: Networking
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Tunnelify

Tunnelify is a Python library to easily create and manage Cloudflare or Localtunnel tunnels.

# Example

```python
from tunnelify import tunnel

# For Cloudflare
url, proc = tunnel(8000, "cloudflare")
print(f"Cloudflare URL: {url}")

# For Localtunnel (without custom subdomain)
url, _ = tunnel(8000, "localtunnel")
print(f"Localtunnel URL: {url}")

# For Localtunnel with custom subdomain
url, _ = tunnel(8000, "localtunnel", "customsub")
print(f"Custom Localtunnel URL: {url}")
```

# Installation

Just:
`pip install tunnelify`

Tunnelify requires Cloudflared package to work. If it doesn't exist on your system, Tunnelify will automatically install it.
