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
ScraperResponse.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 ScraperResponse.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 ScraperResponse(object):
19 
20 
21  def __init__(self, TagsCount, TagsMask, pubdate, processedContent, errorMask=0):
22  self.tagsCount = TagsCount
23  self.tagsMask = TagsMask
24  self.pubdate = pubdate
25  self.processedContent = processedContent
26  self.errorMask = errorMask
def __init__(self, TagsCount, TagsMask, pubdate, processedContent, errorMask=0)