Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexdlaird/pyngrok
A Python wrapper for ngrok
https://github.com/alexdlaird/pyngrok
education localhost localtunnel ngrok pyngrok python reverse-proxy tunnel tunneling webhook
Last synced: 5 days ago
JSON representation
A Python wrapper for ngrok
- Host: GitHub
- URL: https://github.com/alexdlaird/pyngrok
- Owner: alexdlaird
- License: mit
- Created: 2018-12-16T22:12:33.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-18T12:09:26.000Z (5 months ago)
- Last Synced: 2024-10-07T08:12:06.067Z (2 months ago)
- Topics: education, localhost, localtunnel, ngrok, pyngrok, python, reverse-proxy, tunnel, tunneling, webhook
- Language: Python
- Homepage: https://pyngrok.readthedocs.io
- Size: 5.64 MB
- Stars: 422
- Watchers: 6
- Forks: 59
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- best-of-web-python - GitHub
- awesome-rainmana - alexdlaird/pyngrok - A Python wrapper for ngrok (Python)
README
[![Version](https://img.shields.io/pypi/v/pyngrok)](https://pypi.org/project/pyngrok)
[![Python Versions](https://img.shields.io/pypi/pyversions/pyngrok.svg)](https://pypi.org/project/pyngrok)
[![Coverage](https://img.shields.io/codecov/c/github/alexdlaird/pyngrok)](https://codecov.io/gh/alexdlaird/pyngrok)
[![Build](https://img.shields.io/github/actions/workflow/status/alexdlaird/pyngrok/build.yml)](https://github.com/alexdlaird/pyngrok/actions/workflows/build.yml)
[![Docs](https://img.shields.io/readthedocs/pyngrok)](https://pyngrok.readthedocs.io/en/latest)
[![GitHub License](https://img.shields.io/github/license/alexdlaird/pyngrok)](https://github.com/alexdlaird/pyngrok/blob/main/LICENSE)`pyngrok` is a Python wrapper for `ngrok` that manages its own binary, making `ngrok` available via a convenient Python
API.[`ngrok`](https://ngrok.com) 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, and its made even more powerful with native Python integration through `pyngrok`.## Installation
`pyngrok` is available on [PyPI](https://pypi.org/project/pyngrok/) and can be installed
using `pip`:```sh
pip install pyngrok
```or `conda`:
```sh
conda install -c conda-forge pyngrok
```That's it! `pyngrok` is now available as a package to our Python projects, and `ngrok` is now available from
the command line.## Basic Usage
### Open a Tunnel
To open a tunnel, use the [`connect`](https://pyngrok.readthedocs.io/en/latest/api.html#pyngrok.ngrok.connect) method,
which returns a `NgrokTunnel`, and this returned object has a reference to the public URL generated by `ngrok` in its
`public_url` attribute.```python
from pyngrok import ngrok# Open a HTTP tunnel on the default port 80
# .ngrok.io" -> "http://localhost:80">
http_tunnel = ngrok.connect(3)# Open a SSH tunnel
# "localhost:22">
ssh_tunnel = ngrok.connect("22", "tcp")# Open a named tunnel from the config file
named_tunnel = ngrok.connect(name="my_tunnel_name")
```The [`connect`](https://pyngrok.readthedocs.io/en/latest/api.html#pyngrok.ngrok.connect) method takes `kwargs` as
well, which allows us to pass
additional tunnel configurations that are supported by ngrok,
[as documented here](https://pyngrok.readthedocs.io/en/latest/#tunnel-configurations).### `ngrok`'s Edges
To use [`ngrok`'s Edges](https://ngrok.com/docs/network-edge/edges/) with `pyngrok`, first [configure an Edge on
`ngrok`'s dashboard](https://dashboard.ngrok.com/edges) (with at least one Endpoint mapped to the Edge), and define a
labeled tunnel in [the `ngrok` config file](https://ngrok.com/docs/agent/config/v2/#define-two-labeled-tunnels)
that points to the Edge.```yaml
tunnels:
some-edge-tunnel:
labels:
- edge=my_edge_id
addr: http://localhost:80
```To start a labeled tunnel in `pyngrok`, pass its `name`
to [connect](https://pyngrok.readthedocs.io/en/develop/api.html#pyngrok.ngrok.connect).```python
from pyngrok import ngrok# Open the Edge tunnel that is defind in the config file
named_tunnel = ngrok.connect(name="some-edge-tunnel")
```Once an Edge tunnel is started, it can be managed through [`ngrok`'s dashboard](https://dashboard.ngrok.com/edges).
### Command Line Usage
This package puts the default `ngrok` binary on our path, so all features of `ngrok` are
available on the command line.```sh
ngrok http 80
```For details on how to fully leverage `ngrok` from the command line,
see [`ngrok`'s official documentation](https://ngrok.com/docs/agent/cli/).## Documentation
For more advanced usage, `pyngrok`'s official documentation is available
at [http://pyngrok.readthedocs.io](http://pyngrok.readthedocs.io).### `ngrok` Version Compatibility
`pyngrok` is compatible with `ngrok` v2 and v3, but by default it will install v3. To install v2 instead,
[set `ngrok_version` to "v2" in
`PyngrokConfig`](https://pyngrok.readthedocs.io/en/latest/index.html#ngrok-version-compatibility).## Contributing
If you would like to get involved, be sure to review
the [Contribution Guide](https://github.com/alexdlaird/pyngrok/blob/main/CONTRIBUTING.rst).Want to contribute financially? If you've found `pyngrok` useful, [sponsorship](https://github.com/sponsors/alexdlaird)
would also be greatly appreciated!