EDIT: updated code, NO LONGER GIVES SPECIFIED ERROR
I am attempting to encode the following into json format:
class Map:
    """
    Storage for cities and routes
    """
    def __init__(self):
        self.cities = {}
        self.routes = {}
class Route: """ Stores route info """
def __init__(self, src, dest, dist):
    self.flight_path = src + '-' + dest
    self.src = src
    self.dest = dest
    self.dist = dist
def to_json(self):
    return {'source': self.src, 'destination': self.dest, 
    'distance': self.dist}
class City: """ Stores city info """
def __init__(self, code, name, country, continent, 
             timezone, coordinates, population, region):
    self.code = code
    self.name = name
    self.country = country
    self.continent = continent
    self.timezone = timezone
    self.coordinates = coordinates
    self.population = population
    self.region = region
def to_json(self):
    return {'code': self.code, 'name': self.name, 'country': self.country, 
    'continent': self.continent, 'timezone':  self.timezone, 
    'coordinates': self.coordinates, 'population': self.population, 
    'region': self.region}
I would like a "cities" section of python encoding all the city information stored in map.cities and a "routes" section encoding all the route information stored in map.routes
My attempt:
def map_to_json(my_file, air_map):
    """
    Saves JSON Data
    """
    with open(my_file, 'w') as outfile:
        for entry in air_map.cities:
            json.dumps(air_map.cities[entry].to_json(), outfile)
        for entry in air_map.routes:
            json.dumps(air_map.routes[entry].to_json(), outfile)
    outfile.close()
where air_map is a map and my_file is a file path.
I get the following error:
>    Jmap.map_to_json('Resources/map_save.json', air_map)   File
> "JSONToMap.py", line 53, in map_to_json
>     json.dumps(air_map.cities, outfile)   File "C:\Python27\lib\json\__init__.py", line 250, in dumps
>     sort_keys=sort_keys, **kw).encode(obj)   File "C:\Python27\lib\json\encoder.py", line 207, in encode
>     chunks = self.iterencode(o, _one_shot=True)   File "C:\Python27\lib\json\encoder.py", line 270, in iterencode
>     return _iterencode(o, 0)   File "C:\Python27\lib\json\encoder.py", line 184, in default
>     raise TypeError(repr(o) + " is not JSON serializable") TypeError: <City.City instance at 0x0417FC88> is not JSON serializable
> >>>
I am very new to python, and to JSON, so help would be appreciated.
Thanks
 
    