|
__init__(self,
campfire,
room_id,
data,
connector)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
lock(self)
Locks the room to prevent new users from entering. |
source code
|
|
|
|
|
users(self)
Gets info about users chatting in the room. |
source code
|
|
|
transcript(self,
date=None)
Gets the transcript for the given date (a datetime.date instance) or
today. |
source code
|
|
|
|
|
|
|
|
|
|
|
update(self,
name,
topic)
Updates name and/or topic of the room. |
source code
|
|
|
uploads(self)
Lists recently uploaded files. |
source code
|
|
|
upload(self,
fileobj)
Uploads the content of the given file-like object to the room. |
source code
|
|
|
|
|
recent_messages(self,
limit=100,
since_message_id=None)
Returns upto limit (max 100) messages optionally starting from
since_message_id. |
source code
|
|
|
highlight_message(self,
message_id)
Highlights a message. |
source code
|
|
|
remove_highlight_from_message(self,
message_id)
Removes a highlight from a message. |
source code
|
|
|
listen(self,
callback,
errback,
start_reactor=True)
Listens on room conversation calling the callback on each message. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|