def user_country(self): """The country of the currently logged in user. The :attr:`~SessionEvent.OFFLINE_STATUS_UPDATED` event is emitted on the session object when this changes. """ return utils.to_country(lib.sp_session_user_country(self._sp_session))
def test_to_country(self): self.assertEqual(utils.to_country(20047), 'NO') self.assertEqual(utils.to_country(21317), 'SE')