Skip to main content

A simple Python interface to Find My iPhone on the Mobile Me service

Project description

fmi
===

A small Python library to fetch location information from the "Find My iPhone"
service on MobileMe.

Example
-------

from fmi import FMI

fmi = FMI('myusername@me.com', 'mypassword')
fmi.login()

devices = fmi.devices()

for device in devices['content']:
print device['name'], '-',
if not device['location']:
print 'No location found'
continue
print device['location']['longitude'],
print device['location']['latitude']

Will display all devices registered with MobileMe's Find My iPhone. An example
output is:

Batman's iPhone - 151.204420924 -33.85947118
Batman’s iPad - No location found

Notes
-----

This is a quick hack right now, but might slowly improve over time.

Bugs
----

The domain changes (when calling devices) and there is no detection for it yet.
This means it might be completely broken for you. A fix is coming soon.

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page