Add before and after params to logs_from.
This commit is contained in:
parent
3e072db5d0
commit
fcc540ec44
@ -816,11 +816,13 @@ class Client(object):
|
|||||||
self._is_logged_in = False
|
self._is_logged_in = False
|
||||||
log.debug(request_logging_format.format(response=response))
|
log.debug(request_logging_format.format(response=response))
|
||||||
|
|
||||||
def logs_from(self, channel, limit=100):
|
def logs_from(self, channel, limit=100, before=None, after=None):
|
||||||
"""A generator that obtains logs from a specified channel.
|
"""A generator that obtains logs from a specified channel.
|
||||||
|
|
||||||
Yielding from the generator returns a :class:`Message` object with the message data.
|
Yielding from the generator returns a :class:`Message` object with the message data.
|
||||||
|
|
||||||
|
Will return the newest messages within the specified range, up to `limit` messages.
|
||||||
|
|
||||||
This function raises :exc:`HTTPException` if the request failed.
|
This function raises :exc:`HTTPException` if the request failed.
|
||||||
|
|
||||||
Example: ::
|
Example: ::
|
||||||
@ -833,12 +835,19 @@ class Client(object):
|
|||||||
|
|
||||||
:param channel: The :class:`Channel` to obtain the logs from.
|
:param channel: The :class:`Channel` to obtain the logs from.
|
||||||
:param limit: The number of messages to retrieve.
|
:param limit: The number of messages to retrieve.
|
||||||
|
:param before: Message before which all returned messages must be.
|
||||||
|
:param after: Message after which all returned messages must be.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
url = '{}/{}/messages'.format(endpoints.CHANNELS, channel.id)
|
url = '{}/{}/messages'.format(endpoints.CHANNELS, channel.id)
|
||||||
params = {
|
params = {
|
||||||
'limit': limit
|
'limit': limit
|
||||||
}
|
}
|
||||||
|
if before:
|
||||||
|
params['before'] = before.id
|
||||||
|
if after:
|
||||||
|
params['after'] = after.id
|
||||||
|
|
||||||
response = requests.get(url, params=params, headers=self.headers)
|
response = requests.get(url, params=params, headers=self.headers)
|
||||||
log.debug(request_logging_format.format(response=response))
|
log.debug(request_logging_format.format(response=response))
|
||||||
_verify_successful_response(response)
|
_verify_successful_response(response)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user