Source code for scrapinghub.client.samples

from __future__ import absolute_import

from .proxy import _ItemsResourceProxy


[docs] class Samples(_ItemsResourceProxy): """Representation of collection of job samples. Not a public constructor: use :class:`~scrapinghub.client.jobs.Job` instance to get a :class:`Samples` instance. See :attr:`~scrapinghub.client.jobs.Job.samples` attribute. Please note that :meth:`list` method can use a lot of memory and for a large amount of logs it's recommended to iterate through it via :meth:`iter` method (all params and available filters are same for both methods). Usage: - retrieve all samples from a job:: >>> job.samples.iter() <generator object mpdecode at 0x10f5f3aa0> - retrieve samples with timestamp greater or equal to given timestamp:: >>> job.samples.list(startts=1484570043851) [[1484570043851, 554, 576, 1777, 821, 0], [1484570046673, 561, 583, 1782, 821, 0]] """