Subversion Repositories SmartDukaan

Rev

Rev 3133 | Rev 7609 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3086 rajveer 1
#!/usr/bin/python
2
import sys
3
 
4
if __name__ == '__main__' and __package__ is None:
5
    import os
6
    sys.path.insert(0, os.getcwd())
7
 
3200 rajveer 8
from shop2020.clients.CatalogClient import CatalogClient
9
 
3086 rajveer 10
def notify():
3133 rajveer 11
    client = CatalogClient().get_client()
3086 rajveer 12
    client.sendProductNotifications()
13
    print "Product notifications sending completed"
14
 
15
def main():
16
    notify()
17
 
18
if __name__ == '__main__':
19
    main()