I am trying to run ngrok
with options
I tried
from pyngrok import ngrok
ngrokPublicUrl = ngrok.connect(5000, bind_tls= True)
and
ngrokPublicUrl = ngrok.connect(remote_addr=5000, bind_tls= True)
For options I used the documentation here --> https://ngrok.com/docs#tunnel-definitions. I am trying to get the https address not http. It looks like options
usage is not correct?
but I get this error
TypeError: connect() got an unexpected keyword argument 'remote_addr'
or
TypeError: connect() got an unexpected keyword argument 'bind_tls'