Questions tagged [pyngrok]

pyngrok is a Python wrapper for `ngrok` that manages its own binary and puts it on your path, making `ngrok` readily available from anywhere on the command line and via a convenient Python API.

pyngrok is a Python wrapper for ngrok that manages its own binary and puts it on your path, making ngrok readily available from anywhere on the command line and via a convenient Python API.

ngrok is a reverse proxy tool that opens secure tunnels from public URLs to localhost, perfect for exposing local web servers, building webhook integrations, enabling SSH access, testing chatbots, demoing from your own machine, and more, made even more powerful with native Python integration through pyngrok.

52 questions
0
votes
3 answers

Can i get the generated ip-address or domain name of flask_ngrok or py-ngrok and return it to 127.0.0.1/

I'm trying to get the generated domain name or IP-address of flask_ngrok or py-ngrok after been deploy. I want to deploy flask_app to localhost and get the new IP-address or domain name on the main page. I.E: If I access 127.0.0.1/ I want it to…
Ahmad Khidir
  • 140
  • 1
  • 9
0
votes
1 answer

pyngrok downloads ngrok each time i run the pyinstaller executable. How can i make it download ngrok only once?

When i run the script first time it downloads the file ngrok.exe in the python38\Lib\site-packages\pyngrok\bin folder and running the script second time it uses the downloaded ngrok.exe which is expected. But when i make an executable file , then it…
Overflow
  • 21
  • 2
  • 2
0
votes
1 answer

Pyngrok to getting connecting continuously

I have just started using ngrok, and while using the standard procedure, I can start the tunnel using ./ngrok tcp 22 and see that tunnel open in my dashboard, But I would like to use pyngrok, and here when I use: from pyngrok.conf import…
Nishad Nazar
  • 371
  • 2
  • 3
  • 16
0
votes
2 answers

Ngrok hostname SSL Certificate

I am running a Flask API application, and I have an SSL Certificate. When I run flask server on localhost the certificate is applied from Flask successfully. But when I use Ngrok to deploy the localhost on a custom domain, the certificate is changed…
saad saad
  • 39
  • 1
  • 8
0
votes
2 answers

Python TCP socket returns getaddrinfo failed when using Ngrok

I'm trying to use Ngrok to connect two python scripts using the socket module. I've tried doing this with the ngrok.exe and with pyngrok. Trying to connect with the client using port as 12345 or 80 (everything else times out). On the client…
holmeswatson
  • 969
  • 3
  • 14
  • 39
-1
votes
1 answer

Deploying Django on IIS and ngrok

I am trying to deploy Django on local host and "tunnel" using ngrok. The ngrok works but the IIS (Internet Information Manager) gives 500 Error scriptProcessor could not be found in application configuration. Reference into…
Kaleab Woldemariam
  • 2,567
  • 4
  • 22
  • 43
-1
votes
1 answer

Need API for dynamic URL mapping in python

i am working on a web server in python that uses ngrok (pyngrok). this generates new URLs every time i restart the code, making the URL redundant as i am constantly implementing changes. is there a workaround to this? now what i need is one master…
ZyugyZarc
  • 15
  • 1
  • 4
1 2 3
4