{ "info": { "author": "Matt Luongo", "author_email": "mhluongo@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License" ], "description": "A simple Python wrapper around the ORCID.org API.\n\nExample\n=======\n\nHere's a quick snippet to get info on `John Wilbanks`_. ::\n\n >>> import orcid\n >>> #retrieve john's profile from his ORCID\n >>> john = orcid.get('0000-0002-4510-0385')\n >>> print john.family_name\n wilbanks\n\nWhat if you'd like to see an author's works or areas of interest? ::\n\n >>> print john.keywords\n []\n >>> print john.publications\n []\n\nHm, let's try another author. ::\n\n >>> alfonso = orcid.get('0000-0001-8855-5569')\n >>> print alfonso.keywords\n [u'computer science', u' bioinformatics', u' computational biology']\n >>> print alfonso.publications[0]\n \n\n\nMaybe you'd like to read about Mr. Wiener's contributions? ::\n\n >>> print alfonso.publications[0].url\n http://www.scopus.com/inward/record.url?eid=2-s2.0-67650513866&partnerID=MN8TOARS\n\nSearching\n=========\n\nIf you'd rather search for authors, try ORCID's search functionality ::\n\n >>> #do a simple author search for john\n >>> authors = orcid.search('john wilbanks')\n >>> print next(authors).family_name\n wilbanks\n\nYou can also accomplish more complex queries using `Q` objects and fields ::\n\n >>> from orcid import Q\n >>> authors = orcid.search(Q('given-name','john') & Q('family-name', 'wilbanks'))\n >>> print next(authors).family_name\n wilbanks\n\nEnjoy!\n\n.. _John Wilbanks: http://en.wikipedia.org/wiki/John_Wilbanks", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/scholrly/orcid-python", "keywords": null, "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "orcid-python", "package_url": "https://pypi.org/project/orcid-python/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/orcid-python/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/scholrly/orcid-python" }, "release_url": "https://pypi.org/project/orcid-python/0.1/", "requires_dist": null, "requires_python": null, "summary": "A simple wrapper around the ORCID.org API.", "version": "0.1" }, "last_serial": 715957, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "b5e4a8386a27e2011f141406d69ccfb9", "sha256": "6667b6ba0eb353caeb2ed4e2d3a56da9352fc34e4ade99b3bb155039f3b1adbc" }, "downloads": -1, "filename": "orcid-python-0.1.tar.gz", "has_sig": false, "md5_digest": "b5e4a8386a27e2011f141406d69ccfb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4026, "upload_time": "2013-05-31T15:41:28", "url": "https://files.pythonhosted.org/packages/cd/53/2a5b3c87c2f0f398eee9bebffa974f14c393b008142cdf37cb44a08bfac9/orcid-python-0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b5e4a8386a27e2011f141406d69ccfb9", "sha256": "6667b6ba0eb353caeb2ed4e2d3a56da9352fc34e4ade99b3bb155039f3b1adbc" }, "downloads": -1, "filename": "orcid-python-0.1.tar.gz", "has_sig": false, "md5_digest": "b5e4a8386a27e2011f141406d69ccfb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4026, "upload_time": "2013-05-31T15:41:28", "url": "https://files.pythonhosted.org/packages/cd/53/2a5b3c87c2f0f398eee9bebffa974f14c393b008142cdf37cb44a08bfac9/orcid-python-0.1.tar.gz" } ] }