Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13566 amit.gupta 1
'''
2
Created on Jan 15, 2015
3
 
4
@author: amit
5
'''
6
from dtr import main
7
class Store(main.Store):
8
    def __init__(self):
9
        super(Store, self).__init__()
10
 
11
    def getName(self):
12
        return "flipkart"
13
 
14
    def scrapeAffiliate(self, startDate=None, endDate=None):
15
        raise NotImplementedError
16
 
17
    def parseOrderPage(self, htmlString=None): 
18
        raise NotImplementedError