Skip to main content

ZeroFrame WebSocket API for Python

Project description

ZeroFramePy

version downloads license python build

ZeroFrame WebSocket API for Python.

Description

This is Python WebSocket client for ZeroFrame API. It supports (almost) same features as default ZeroFrame that is included in ZeroNet sites, but it is using WebSocket client so it can be used in local programs.

Installation

Requirements

ContentHash requires Python 3.5 or higher.

From PyPI

The recommended way to install ContentHash is from PyPI with PIP.

pip install zeroframe-ws-client

From Source

Alternatively, you can also install it from the source.

git clone https://github.com/filips123/ZeroFramePy.git
cd ZeroFramePy
python setup.py install

Usage

Importing Package

You can import ZeroFrameJS from zeroframe_ws_client package.

from zeroframe_ws_client import ZeroFrame

Creating Connection

To create a connection, you need to specify the ZeroNet site address.

zeroframe = ZeroFrame('1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D')

If ZeroNet instance is using Multiuser plugin and you want to use specific account, you need to specify a master address of the account you want to use. Account must already exist on the instance.

zeroframe = ZeroFrame(
    '1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D',
    multiuser_master_address='1Hxki73XprDRedUdA3Remm3kBX5FZxhFR3'
)

If you want to create a new account, you also need to specify a master seed of it. Note that this feature is unsafe on the untrusted proxy.

zeroframe = ZeroFrame(
    '1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D',
    multiuser_master_address='1KAtuzxwbD1QuMHMuXWcUdoo5ppc5wnot9',
    multiuser_master_seed='fdbaf75427ba69a3d4aa8e19372e05879e9e2d866e579dd30be25e6fab7e3fb2'
)

If needed, you can also specify protocol, host and port of ZeroNet instance.

zeroframe = ZeroFrame(
    '1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D',
    instance_host='192.168.1.1',
    instance_port=8080,
    instance_secure=True
)

Log and error message from zeroframe.log and zeroframe.error will not be displayed by default. If you want to, you can also display them as debug info.

zeroframe = ZeroFrame(
    '1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D',
    show_log=True,
    show_error=True
)

By default, the client will try to reconnect WebSocket if the connection was closed every 5 seconds. You can also configure time delay and total attempts. Delay is specified in milliseconds. The number of attempts -1 means infinity and 0 means zero (disabled reconnecting).

zeroframe = ZeroFrame(
    '1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D',
    reconnect_attempts=10,
    reconnect_delay=1000
)

The client will then obtain wrapper key to the site and connect to WebSocket using it.

You can now normally use ZeroFrame API. Just remember that there is no wrapper, so wrapper commands are not available. The client is connected directly to the WebSocket server, so you need to use its commands.

Note that the WebSocket server sometimes sends commands (notification, progress, error, prompt, confirm, setSiteInfo, setAnnouncerInfo, updating, redirect, injectHtml, injectScript) that are normally handled by the wrapper. Because there is no wrapper, you need to handle those commands yourself if needed. Commands response and ping are already handled by this client so you don't need to handle them.

Sending Command

You can use the cmd method to issue commands.

zeroframe.cmd(
  'siteInfo',
  {},
  lambda result: print(result)
)

You can also use the cmdp method to get results as Python asyncio futures.

result = zeroframe.cmd('siteInfo', {})
print(result.result())

Sending Response

To submit responses, you need to use response command.

zeroframe.response(10, 'Hello World')

Logging Information

There are also log and error methods which are available for logging. They will display output to console if enabled.

zeroframe.log('Connected')
zeroframe.error('Connection failed')

Handling Connection

There are also public handler methods which you can overwrite to add your own logic to ZeroFrame.

class ZeroApp(ZeroFrame):
    def on_request(self, cmd, message):
        if cmd == 'helloWorld':
            self.log('Hello World')

    def on_open_websocket(self):
        self.log('Connected to WebSocket')

    def on_error_websocket(self, error):
        self.error('WebSocket connection error')

    def on_close_websocket(self):
        self.error('WebSocket connection closed')

Calling Commands Directly

You can also directly call commands via __getattr__ method. Command name is accepted as an object's property and parameters are accepted as a method's arguments. Command returns asyncio.Future with the result.

  • Command with no arguments can be accessed with zeroframe.cmdName().
  • Command with keyword arguments can be accessed with zeroframe.cmdName(key1=value1, key2=value2).
  • Command with normal arguments can be accessed with zeroframe.cmdName(value1, value2).
siteInfo = zeroframe.siteInfo()
print(siteInfo.result())

Other Examples

You could also look to example.py.

Versioning

This library uses SemVer for versioning. For the versions available, see the tags on this repository.

License

This library is licensed under the MIT license. See the LICENSE file for details.

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

zeroframe-ws-client-1.1.0.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zeroframe_ws_client-1.1.0-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file zeroframe-ws-client-1.1.0.tar.gz.

File metadata

  • Download URL: zeroframe-ws-client-1.1.0.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.1

File hashes

Hashes for zeroframe-ws-client-1.1.0.tar.gz
Algorithm Hash digest
SHA256 4e4c38bf86945db0a8553edd2acc80424418d0315c4b1f35145bbb1f43b1c167
MD5 b6102d81d2bfa9e2ef18affe0899664d
BLAKE2b-256 3a3a7f174c41713f9ff3e9d139e552023b5c9e0849e41498d716c0367a557fae

See more details on using hashes here.

File details

Details for the file zeroframe_ws_client-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: zeroframe_ws_client-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.1

File hashes

Hashes for zeroframe_ws_client-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5cb8d4c759a339d1fe62e4d5169da7d8d60415bd7960487e35c423dbdfa6af60
MD5 804633fa4f475faa881df068acaf838f
BLAKE2b-256 966cd2e01b437e66071e8e59a3bc3c9ce309c378a5fbf4574dbfef51699a0550

See more details on using hashes here.

Supported by

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