Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

'''
Created on Jan 15, 2015

@author: amit
'''
from dtr import main
class Store(main.Store):
    def __init__(self):
        super(Store, self).__init__()
        
    def getName(self):
        return "flipkart"
    
    def scrapeAffiliate(self, startDate=None, endDate=None):
        raise NotImplementedError
    
    def parseOrderPage(self, htmlString=None): 
        raise NotImplementedError