app_dispatcher.py 248 B

1234567891011121314
  1. from consumer.connect import DataConsumer
  2. from consumer.credentials import getCredentials
  3. print('Start')
  4. credentials = getCredentials()
  5. consumer = DataConsumer(credentials)
  6. rows = consumer.getProductSet()
  7. for r in rows:
  8. print(r)
  9. print('End')