HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
ScraperInData.py
Go to the documentation of this file.
1 """
2 HCE project, Python bindings, Distributed Tasks Manager application.
3 Event objects definitions.
4 
5 @package: dc
6 @file ScraperInData.py
7 @author Oleksii <developers.hce@gmail.com>
8 @link: http://hierarchical-cluster-engine.com/
9 @copyright: Copyright &copy; 2013-2014 IOIX Ukraine
10 @license: http://hierarchical-cluster-engine.com/license/
11 @since: 0.1
12 """
13 
14 
15 # #The ScraperInData class
16 #
17 #
18 class ScraperInData(object):
19 
20 
21  def __init__(self,
22  url,
23  urlId,
24  siteId,
25  raw_content,
26  template,
27  filters,
28  lastModified,
29  timezone,
30  batchId,
31  dbMode,
32  batch_item=None,
33  processor_properties=None,
34  output_format=None):
35  self.url = url
36  self.urlId = urlId
37  self.siteId = siteId
38  self.raw_content = raw_content
39  self.template = template
40  self.filters = filters
41  self.lastModified = lastModified
42  self.timezone = timezone
43  self.batchId = batchId
44  self.dbMode = dbMode
45  self.batch_item = batch_item
46  self.processor_properties = processor_properties
47  self.output_format = output_format
def __init__(self, url, urlId, siteId, raw_content, template, filters, lastModified, timezone, batchId, dbMode, batch_item=None, processor_properties=None, output_format=None)