User¶
-
class
pycommunicate.server.app.usertracker.User¶ This class represents a unique session to the server, known as a user. It also tracks the session and their current controller.
These are not to be created manually.
-
id_¶ The unique id for this user.
Danger
This information can be used to impersonate someone else on your website.
-
request_id¶ The current request id. This changes every page load.
-
session¶ The user’s session. This is a dict
-
active_controller¶ The active controller for this user
-
socket_connected¶ Whether or not the JS lib has connected to this user.
-