Metadata-Version: 2.4
Name: tunnelify
Version: 0.3.1
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

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