diff --git a/src/geo.py b/src/geo.py index 378b114..b43301b 100644 --- a/src/geo.py +++ b/src/geo.py @@ -266,6 +266,11 @@ class Country(LastfmBase): def topTracks(self): """top tracks of the country""" return Geo.getTopTracks(self.__api, self.name) + + @LastfmBase.cachedProperty + def events(self): + """events taking place at/around the location""" + return Geo.getEvents(self.__api, self.name) @LastfmBase.topProperty("topTracks") def topTrack(self):