本文整理汇总了Python中Map.Map.put方法的典型用法代码示例。如果您正苦于以下问题:Python Map.put方法的具体用法?Python Map.put怎么用?Python Map.put使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Map.Map
的用法示例。
在下文中一共展示了Map.put方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: newTak
# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import put [as 别名]
def newTak():
name = getValue(request, "name", None)
uid = getValue(request, "userid", None)
lat = getValue(request, "lat", None)
lng = getValue(request, "lng", None)
if not ( name and lat and lng and uid):
return json_response(code=400)
mapid = getValue(request, "mapid", None)
map = None
if uid is not None:
user = Account.get_by_id(int(uid))
if user is None:
return json_response(code=400)
if mapid is not None:
map = Map.get_by_id(int(mapid))
if map is None:
map = Map(creator=user.name,creatorId=int(uid),name='Untitled',adminIds=[int(uid)])
key = map.put()
mapid = key.id()
account = Account.get_by_id(int(uid))
account.adminMaps.append(int(mapid))
account.put()
tak = Tak(lng=lng,lat=lat, creator=user.name, name=name,mapId=int(mapid),creatorId=int(uid))
key = tak.put()
map.takIds.append(key.integer_id())
map.put();
return json_success(tak.Get())
示例2: main
# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import put [as 别名]
def main():
# Create a map
map = Map()
map.put("Smith", 30)
map.put("Anderson", 31)
map.put("Lewis", 29)
map.put("Cook", 29)
map.put("Cook", 129)
print("Entry set in map: " + str(map.items()))
print("The age for Lewis is " + str(map.get("Lewis")))
print("Is Smith in the map? " + str(map.containsKey("Smith")))
print("Is Johnson in the map? " +
str(map.containsKey("Johnson")))
print("Is value 30 in the map? " + str(map.containsValue(30)))
print("Is value 33 in the map? " + str(map.containsValue(33)))
print("Is age 33 in the map? " + str(map.containsValue(33)))
print("All values for Cook? " + str(map.getAll("Cook")))
print("keys are " + str(map.keys()))
print("values are " + str(map.values()))
map.remove("Smith")
print("The map is " + map.getTable())
map.clear()
print("The map is " + map.getTable())
示例3: api_map
# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import put [as 别名]
def api_map():
if request.method == 'POST':
userName = request.args.get("username","")
mapName = request.args.get("mapname","")
userId = request.args.get("userId","")
userId = str(userId.encode('utf-8').decode('ascii', 'ignore'))
uid = int(userId)
ownMap =Map(creator=userName,creatorId=uid,name=mapName)
key = ownMap.put()
return json_success({"mapId":key.integer_id()})
if request.method == 'GET':
id = request.args.get("id","")
ownMap = Map.get_by_id(int(id))
return json_success({"creator":ownMap.creator,"name":ownMap.name,"creatorId":ownMap.creatorId,"id":int(id)})
示例4: newMap
# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import put [as 别名]
def newMap(userid='', name='', public=''):
if not (name and public and userid):
return json_response(code=400);
user = Account.get_by_id(int(userid))
if user is None:
return json_response(code=400);
if public == 'true':
public = True
else: # default false if not set
public = False
for mapid in user.adminMaps:
map = Map.get_by_id(int(mapid))
if map is not None and map.creatorId == int(userid) and map.name == name:
return json_response(message="You already have a map of that name", code=400);
map = Map(creator=user.name,creatorId=int(userid),name=name,adminIds=[int(userid)], public=public)
key = map.put()
# add map to user's list of maps
user.adminMaps.append(key.integer_id())
user.put()
#return map json
return json_success(map.to_dict());