Skip to main content

Nabto Client Wrapper for Python

Project description

python-nabto-client

Python Wrapper for Nabto Client

Requirements

  • Python 3.6+
  • python3-dev package for Debian distributions

Installation

Install using pip...

pip install -i https://test.pypi.org/simple/ nabto-client

Example

Let's take a look at a quick example of using nabto_client to open a session and a tunnel.

import nabto_client

NABTO_HOME_DIRECTORY = "/home/nabto/example"

USER = "user"
PASSWORD = "password"

LOCAL_PORT = 7000
NABTO_HOST = "example.appmyproduct.com"
REMOTE_HOST = "localhost"
REMOTE_PORT = 8000

# Initializes the Nabto client API
nabto_client.startup(NABTO_HOME_DIRECTORY)

# Creates a Nabto self signed profile
nabto_client.createSelfSignedProfile(USER, PASSWORD)

with nabto_client.NabtoSession(USER, PASSWORD) as session:
    with nabto_client.NabtoTunnel(session, LOCAL_PORT, NABTO_HOST, REMOTE_HOST, REMOTE_PORT) as port:
        print(f'Opened tunnel on port {port}')
        ...
        
# Releases any resources held by the Nabto client API
nabto_client.shutdown()

Tunnel status

The example above doesn't allow to query the current status of the tunnel because the context manager returns the port not the tunnel object.

If you want to query the tunnel status, don't use the context manager, instead create and open a tunnel like this:

tunnel = nabto_client.NabtoTunnel(session, LOCAL_PORT, NABTO_HOST, REMOTE_HOST, REMOTE_PORT)
print(f'Tunnel status is {tunnel.status()}') # -1 or TunnelStatus.CLOSED
port = tunnel.openTcp()
print(f'Opened tunnel on port {port}')
print(f'Tunnel status is {tunnel.status()}') # 3 or TunnelStatus.LOCAL
# ... do something with the tunnel
tunnel.close()
if nabto_client.TunnelStatus.CLOSED == tunnel.status():
    print(f'Tunnel is closed')

You can also run example/cli.py for an interactive example.

python example/cli.py --device example.appmyproduct.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nabto_client-1.0.1.tar.gz (31.7 MB view details)

Uploaded Source

File details

Details for the file nabto_client-1.0.1.tar.gz.

File metadata

  • Download URL: nabto_client-1.0.1.tar.gz
  • Upload date:
  • Size: 31.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.3

File hashes

Hashes for nabto_client-1.0.1.tar.gz
Algorithm Hash digest
SHA256 8464aab4622834c0fbc5b20595526c471e20040cdf8c481ba38f6beff6db280c
MD5 382ae672e276e34369b04f72271c7169
BLAKE2b-256 e181bd74ab64a9484e480e2c7cec27d71093bbb3f705a926f2453ff912b4fac9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page