def __init__(self, city, cat, keywords): self.city = city self.cat = cat self.keywords = keywords self.url = CITY_URL.format(city, cat) self._items = []
def __init__(self, city, cat): self.city = city self.cat = cat self.url = CITY_URL.format(city, cat) self._items = []