A python client library for communicating with HappyPanda X servers
Install and update using pip
$ pip3 install happypandax-client
Get up and running fast:
import happypandax_client as hpxclient
from pprint import pprint
c = hpxclient.Client("my-client")
c.connect(host="localhost", port=7007)
c.handshake(user = None, password = None)
d = c.send([{"fname": "get_version"}])
pprint(d)
Client (name, host="localhost", port=7007, session_id="", ssl_context=None, timeout=60) → A Client instance
A client for communicating with a HappyPanda X server.
Args:
name
: name of clienthost
: HPX server hostport
: HPX server hostsession_id
: if provided, this will be the session id used in messagesssl_context
: seessl.create_default_context
timeout
: seesocket.settimeout
Set or return the HPX server host
Set or return the HPX server port
Whether this client has been authenticated or not (this value will only be available after connecting)
The version message returned from the HPX server (this value will only be available after connecting)
Whether guests are allowed on the connected HPX server (this value will only be available after connecting)
Whether this client is ready to exchange messages with the HPX server
Whether the connection is still alive
Connect to HPX server
Args:
host
: HPX server host, if set toNone
the provided host on instantiation will be usedport
: HPX server port, if set toNone
the provided port on instantiation will be used
Perfom a handshake with the HPX server
Args:
user
: usernamepassword
: passwordignore_err
: don't raise any errors
Basically a re-login
Args:
user
: username, if set toFalse
the previously provided username will be usedpassword
: password, if set toFalse
the previously provided password will be usedignore_err
: don't raise any errors
Send bytedata to server. Receive bytedata from server.
Args:
data
: bytes data to send to serverraise_on_auth
: raise an error if client is not authenticated
Send json-compatible dict to server. Receive json-compatible from server.
Note that this method will not add anything to your message and expects you to add the name and session yourself. See the finalize function.
Args:
data
: data to send to server, this is a dictraise_on_auth
: raise an error if client is not authenticatedencoding
: bytes encoding, there shouldn't be a reason to change this
Like Client.send_raw, but as a convenience, this method will wrap your message into the required message structure HPX expects and automatically sets the session and name:
final_msg = {
'session': client.session_id,
'name': client.name,
'data': data, # <--- your message is put here
}
Args:
data
: data to send to server, this is usually a list of dictsraise_on_auth
: raise an error if client is not authenticatedencoding
: bytes encoding, there shouldn't be a reason to change this
Close connection with server. Note that it won't be possible to connect again after the connection has been closed.
A helper function that will wrap your message up like this:
msg = {
'session': session_id,
'name': name,
'data': data, # <--- your message is put here
}
Args:
name
: name of clientdata
: data to send to server, this is usually a list of dictssession_id
: session id
These are all the exceptions that can be raised by the client:
Base client exception, all client exceptions will derive from this
Server connection error
Server disconnected
Auth Base Error
It must support being used as a drop-in replacement for the standard json
module
import happypandax_client as hpxclient
import ujson
hpxclient.client.json = ujson