Ejemplo n.º 1
0
	def GrabPrice(smalllist):

		for s in smalllist:
			try:
				a = Analytics.OnlinePricingInfo(s)
				b = [s, a['ListPrice'], a['Price']]
				print(b)
				Info.append(b)
			except BaseException as exp:
				print(exp)
				pass