|
@@ -238,17 +238,33 @@ class feiyuyueduProcess(simpleProcess):
|
|
|
}
|
|
|
|
|
|
class feiyuyueduSpider(feiyuyueduProcess,simpleProcessSpider):
|
|
|
- pass
|
|
|
+ name = name
|
|
|
+ allowed_domains = allowed_domains
|
|
|
+ source = source
|
|
|
+ source_name = source_name
|
|
|
+ source_id = source_id
|
|
|
|
|
|
|
|
|
class feiyuyueduUpdateSpider(feiyuyueduProcess,simpleProcessupdateSpider):
|
|
|
- pass
|
|
|
+ name = name + "update"
|
|
|
+ allowed_domains = allowed_domains
|
|
|
+ source = source
|
|
|
+ source_name = source_name
|
|
|
+ source_id = source_id
|
|
|
|
|
|
|
|
|
|
|
|
class feiyuyueduFixSpider(feiyuyueduProcess,simpleProcessfixSpider):
|
|
|
- pass
|
|
|
+ name = name + 'fix'
|
|
|
+ allowed_domains = allowed_domains
|
|
|
+ source = source
|
|
|
+ source_name = source_name
|
|
|
+ source_id = source_id
|
|
|
|
|
|
|
|
|
class feiyuyueduBookInfoSpider(feiyuyueduProcess,simpleProcessBookInfoSpider):
|
|
|
- pass
|
|
|
+ name = name + "bookinfo"
|
|
|
+ allowed_domains = allowed_domains
|
|
|
+ source = source
|
|
|
+ source_name = source_name
|
|
|
+ source_id = source_id
|