本文整理汇总了Python中models.Place.offerText方法的典型用法代码示例。如果您正苦于以下问题:Python Place.offerText方法的具体用法?Python Place.offerText怎么用?Python Place.offerText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Place
的用法示例。
在下文中一共展示了Place.offerText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: fillConsumingPlaces
# 需要导入模块: from models import Place [as 别名]
# 或者: from models.Place import offerText [as 别名]
def fillConsumingPlaces(response):
places = []
for i in response["results"]:
place = Place()
ID = i["place_id"]
place = getDetailsForID(ID, place)
place.reward = ""
pointsToSpend = random.randint(0, 100)
place.offerPoints = str(pointsToSpend)
place.offerText = "Get our special offer for " + place.offerPoints + " points"
place.placeType = "consuming"
places.append(place)
return places
示例2: fetchDetailsFromPlaces
# 需要导入模块: from models import Place [as 别名]
# 或者: from models.Place import offerText [as 别名]
def fetchDetailsFromPlaces(response):
places = []
for i in response["results"]:
place = Place()
place.name = i["name"]
place.lat = str(i["geometry"]["location"]["lat"])
place.lng = str(i["geometry"]["location"]["lng"])
place.reward = ""
pointsToSpend = random.randint(0, 100)
place.offerPoints = str(pointsToSpend)
place.offerText = "Get our special offer for " + place.offerPoints + " points"
places.append(place)
return places