{ "info": { "author": "Gerald Kaszuba", "author_email": "fmi@gakman.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "License :: OSI Approved :: BSD License", "Topic :: Utilities" ], "description": "fmi\n===\n\nA small Python library to fetch location information from the \"Find My iPhone\"\nservice on MobileMe.\n\nExample\n-------\n\n from fmi import FMI\n \n fmi = FMI('myusername@me.com', 'mypassword')\n fmi.login()\n\n devices = fmi.devices()\n\n for device in devices['content']:\n print device['name'], '-',\n if not device['location']:\n print 'No location found'\n continue\n print device['location']['longitude'],\n print device['location']['latitude']\n\nWill display all devices registered with MobileMe's Find My iPhone. An example\noutput is:\n\n Batman's iPhone - 151.204420924 -33.85947118\n Batman\u2019s iPad - No location found\n\nNotes\n-----\n\nThis is a quick hack right now, but might slowly improve over time.\n\nBugs\n----\n\nThe domain changes (when calling devices) and there is no detection for it yet.\nThis means it might be completely broken for you. A fix is coming soon.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://slowchop.com/", "keywords": "iphone findmyiphone me.com mobileme", "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "fmi", "package_url": "https://pypi.org/project/fmi/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/fmi/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://slowchop.com/" }, "release_url": "https://pypi.org/project/fmi/0.0.2/", "requires_dist": null, "requires_python": null, "summary": "A simple Python interface to Find My iPhone on the Mobile Me service", "version": "0.0.2" }, "last_serial": 232794, "releases": { "0.0.1": [], "0.0.2": [] }, "urls": [] }