ngrok-python icon indicating copy to clipboard operation
ngrok-python copied to clipboard

Embed ngrok secure ingress into your Python apps with a single line of code.

Results 9 ngrok-python issues
Sort by recently updated
recently updated
newest added

I have a particular usecase where I am trying to send data from my JS front end to my Python backend via websockets, exposed through ngrok. Python Server: ```python async...

bug

Hi everyone, I'm just getting started with Google Colab and NGrok to test an application, and I'm using a basic Flask example. I've initiated a tunnel using an auth token,...

I tried the colab notebook to use google colab together with my vscode environment. Is it still banned because i failed to connect it to the notebook machine.

I was [mentioned in this issue/comment](https://github.com/ngrok/ngrok-python/issues/83#issuecomment-1877725403) that it's possible to use the `labels` keyword argument with the `ngrok.forward` method (e.g. `ngrok.forward("localhost:8080", proto="labeled", labels="edge:edghts_2G...", authtoken_from_env=True)`), which is great for specifying a...

google colab is a python notebook that is very popular and we see a lot of users using the ngrok agent there. it would be good to have an example...

This modifies the type hints to reflect the behaviour of the functions. This is the easier/faster way to close #125, though not the better way.

There is no documentation indicating that ngrok.forward can return an `_asyncio.Task`. Running this code: ```python import asyncio import ngrok NGROK_TOKEN = "" def sync(): listener = ngrok.forward(80, authtoken=NGROK_TOKEN) print("sync") print(type(listener))...

Hi, I'm trying to implement a system where tunnels (specifically TCP, SSH tunnels) have a "timeout" - process goes roughly like - Open tunnel - Someone connects via SSH (in...