Subversion Repositories SmartDukaan

Rev

Rev 10909 | Rev 11531 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10909 Rev 10924
Line 174... Line 174...
174
  print '  i64 getCountForFlipkartItems()'
174
  print '  i64 getCountForFlipkartItems()'
175
  print '  i64 getFlipkartSearchResultCount( searchTerm)'
175
  print '  i64 getFlipkartSearchResultCount( searchTerm)'
176
  print '   getAllFkItems()'
176
  print '   getAllFkItems()'
177
  print '  FlipkartItem getFlipkartItemBySkyAtFlipkart(string sku)'
177
  print '  FlipkartItem getFlipkartItemBySkyAtFlipkart(string sku)'
178
  print '   getAllFbbListedItems()'
178
  print '   getAllFbbListedItems()'
-
 
179
  print '   getAllFbbPricingItems()'
179
  print ''
180
  print ''
180
  sys.exit(0)
181
  sys.exit(0)
181
 
182
 
182
pp = pprint.PrettyPrinter(indent = 2)
183
pp = pprint.PrettyPrinter(indent = 2)
183
host = 'localhost'
184
host = 'localhost'
Line 1154... Line 1155...
1154
  if len(args) != 0:
1155
  if len(args) != 0:
1155
    print 'getAllFbbListedItems requires 0 args'
1156
    print 'getAllFbbListedItems requires 0 args'
1156
    sys.exit(1)
1157
    sys.exit(1)
1157
  pp.pprint(client.getAllFbbListedItems())
1158
  pp.pprint(client.getAllFbbListedItems())
1158
 
1159
 
-
 
1160
elif cmd == 'getAllFbbPricingItems':
-
 
1161
  if len(args) != 0:
-
 
1162
    print 'getAllFbbPricingItems requires 0 args'
-
 
1163
    sys.exit(1)
-
 
1164
  pp.pprint(client.getAllFbbPricingItems())
-
 
1165
 
1159
else:
1166
else:
1160
  print 'Unrecognized method %s' % cmd
1167
  print 'Unrecognized method %s' % cmd
1161
  sys.exit(1)
1168
  sys.exit(1)
1162
 
1169
 
1163
transport.close()
1170
transport.close()