Browse Source

docs: fix code errors in user_guide

pull/34/head
Rossen Georgiev 9 years ago
parent
commit
5f6217eabf
  1. 16
      docs/user_guide.rst

16
docs/user_guide.rst

@ -147,9 +147,6 @@ SteamClient
This is currently a WIP, and is barebone. This is currently a WIP, and is barebone.
It should be possible to implement various functions with ease. It should be possible to implement various functions with ease.
.. warning::
API for this part could change without notice
CLI example CLI example
----------- -----------
@ -202,7 +199,10 @@ Configuring logging will lets us see the internal interactions.
print "Logged on as: %s" % msg.body.persona_name print "Logged on as: %s" % msg.body.persona_name
print "SteamID: %s" % repr(client.steamid) print "SteamID: %s" % repr(client.steamid)
client.wait_event('disconnect') try:
client.run_forever()
except KeyboardInterrupt:
client.logout()
Sending a message Sending a message
@ -217,12 +217,12 @@ Example of sending a protobuf message and handling the response.
message = MsgProto(EMsg.ClientRequestWebAPIAuthenticateUserNonce) message = MsgProto(EMsg.ClientRequestWebAPIAuthenticateUserNonce)
client.send_message_and_wait(message, EMsg.ClientRequestWebAPIAuthenticateUserNonceResponse) resp = client.send_message_and_wait(message, EMsg.ClientRequestWebAPIAuthenticateUserNonceResponse)
if resp.body.eresult == EResult.OK: if resp.eresult == EResult.OK:
print "WebAPI Nonce: %s" % repr(resp.body.webapi_authenticate_user_nonce) print "WebAPI Nonce: %s" % repr(resp.webapi_authenticate_user_nonce)
else: else:
print "Error: %s" % EResult(resp.body.eresult) print "Error: %s" % EResult(resp.eresult)
Alternatively, a callback can be registered to handle the response event every time. Alternatively, a callback can be registered to handle the response event every time.

Loading…
Cancel
Save