ZeroFrame WebSocket API for Python
Project description
ZeroFramePy
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')
Closing Connection
You can use close
method to close WebSocket connection to ZeroFrame API.
zeroframe.close()
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
Built Distribution
File details
Details for the file zeroframe-ws-client-1.2.0.tar.gz
.
File metadata
- Download URL: zeroframe-ws-client-1.2.0.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bf918794154bdf4d91eb6c6ad1dddcbcbd7b96e7412d6a88479e13adea19864 |
|
MD5 | 5a7c727049fa7dea416f06fbb32d36f7 |
|
BLAKE2b-256 | 4c5a07202626c579812622b19c05401dfbab41accb17d46fdc7153b4a7b1a2f4 |
File details
Details for the file zeroframe_ws_client-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: zeroframe_ws_client-1.2.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6aa945c75fba8b38765c82d90a75de6b5cbea50f8c4dd79d7be4338da3af326f |
|
MD5 | 4a9b1935b35505a4cc774529c3384543 |
|
BLAKE2b-256 | 6a937279ea527d35d88d1a7a24220b84a6e3607052cead23b600efad6a9cc715 |