Subversion Repositories SmartDukaan

Rev

Rev 3086 | Rev 3200 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#!/usr/bin/python
import sys
from shop2020.clients.CatalogClient import CatalogClient

if __name__ == '__main__' and __package__ is None:
    import os
    sys.path.insert(0, os.getcwd())

def notify():
    client = CatalogClient().get_client()
    client.sendProductNotifications()
    print "Product notifications sending completed"
            
def main():
    notify()

if __name__ == '__main__':
    main()