Beispiel #1
0
def test_maps():
    maps = cass.get_maps(region="NA")
    for map in maps:
        map.name, map.id

    map = Map(name="Summoner's Rift", region="NA")
    map.id
Beispiel #2
0
def get_maps():
    maps = cass.get_maps()
    for map in maps:
        print(map.name, map.id)

    map = Map(name="Summoner's Rift")
    print(map.id)