# contrôle avec simplegeo.places
print client.get_feature('SG_41gn625SLWoHJOeoPYJ81b_48.859400_2.294160@1299419564').to_dict()
{'geometry': {'type': 'Point', 'coordinates': (Decimal('2.29416'), Decimal('48.8594'))},
'type': 'Feature',
'id':'SG_41gn625SLWoHJOeoPYJ81b_48.859400_2.294160@1299419564',
'properties': {'city': 'Paris', 'name': 'Tour Eiffel', 'country': 'FR', 'private': 'false', 'href': 'http://api.simplegeo.com/1.0/features/SG_41gn625SLWoHJOeoPYJ81b_48.859400_2.294160@1299419564.json', 'postcode': '75007', 'address': '7 Av Anatole France', 'owner': '6338', 'classifiers': []}}
# contrôle avec simplegeo.context
client2 =simplegeo.context.Client(''votre code OAUTHKEY', 'votre code SECRET')
print client2.get_feature('SG_41gn625SLWoHJOeoPYJ81b_48.859400_2.294160@1299419564').to_dict()
{'geometry': {'type': 'Point', 'coordinates': (Decimal('2.29416'), Decimal('48.8594'))},
'type': 'Feature',
'id': 'SG_41gn625SLWoHJOeoPYJ81b_48.859400_2.294160@1299419564',
'properties': {'city': 'Paris', 'name': 'Tour Eiffel', 'country': 'FR', 'private': 'false', 'href': 'http://api.simplegeo.com/1.0/features/SG_41gn625SLWoHJOeoPYJ81b_48.859400_2.294160@1299419564.json', 'postcode': '75007', 'address': '7 Av Anatole France', 'owner': '6338', 'classifiers': []}}