Ejemplo n.º 1
0
 def getNotifications(self):
     """
     Get the count of unread notifications for the authenticated user
     """
     return [
         FoursquareNotification(le) for le in self.getJSONFromString(
             self._output.get('Response', [])).get("notifications", [])
     ]
Ejemplo n.º 2
0
 def getNotifications(self):
     return [
         FoursquareNotification(le) for le in self.getJSONFromString(
             self._output.get('Response', [])).get("notifications", [])
     ]