{ "info": { "author": "Matt Behrens ", "author_email": "askedrelic@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# libgreader readme\nlibgreader is a Python library for authenticating and interacting with the unofficial Google Reader API. It currently supports all major user authentication methods (ClientLogin, OAuth2) and aims to simplify the many features that Google Reader offers. RSS ain't dead yet (but Google Reader may be)!\n\nLicensed under the MIT license: [http://www.opensource.org/licenses/mit-license.php]()\n\n## Current Status\nAs of March 2013, Google plans to shutdown down Google Reader on July 1st, 2013, which kind of makes this library not so useful.\n\nThere are plans to recreate the Google Reader API in several open source projects, so perhaps this library could be extended to support multiple APIs. At present, the author is waiting to see how things turn out and what course of action would make the most sense.\n\n\n## Features\n\n* Support for all Google recommended authentication methods, for easy integration with existing web or desktop applications\n* Explanation of most of the Google Reader API endpoints, which Google has never really opened up\n* Convenient functions and models for working with those endpoints\n* A modest integration test suite!\n\n## Usage\n\nIt's as simple as:\n\n\n\t>>> from libgreader import GoogleReader, ClientAuthMethod, Feed\n\t>>> auth = ClientAuthMethod('YOUR USERNAME','YOUR PASSWORD')\n\t>>> reader = GoogleReader(auth)\n\t>>> print reader.getUserInfo()\n\t{u'userName': u'Foo', u'userEmail': u'libgreadertest@gmail.com', u'userId': u'16058940398976999581', u'userProfileId': u'100275409503040726101', u'isBloggerUser': False, u'signupTimeSec': 0, u'isMultiLoginEnabled': False}`\n\nFor more examples with all of the authentication methods, see the [USAGE file](https://github.com/askedrelic/libgreader/blob/master/USAGE.md).\n\n## Installation\n\nlibgreader is on pypi at [http://pypi.python.org/pypi/libgreader/](http://pypi.python.org/pypi/libgreader/)\n\n\t$ pip install libgreader\n\nor \n\n\t$ easy_install libgreader\n\n## Testing and Contribution\n\nWant to test it out or contribute some changes?\n\nFirst, fork the repository on Github to make changes on your private branch.\nThen, create a dev environment using a virtualenv:\n\n\t$ pip install virtualenvwrapper\n\t$ mkvirtualenv venv-libgreader --no-site-packages\n\nCheckout your fork and then run the tests:\n\n\t$ python setup.py test\n\nNow hack away! Write tests which show that a bug was fixed or that the feature works as expected. Then send a pull request and bug me until it gets merged in and published.\n\n\n## Thanks\n\nOriginally created with help from:\n\n[http://blog.martindoms.com/2009/08/15/using-the-google-reader-api-part-1/]()\n\n[http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI]()\n\n[http://groups.google.com/group/fougrapi]()\n\nSince then, [many have contributed to the development of libgreader](https://github.com/askedrelic/libgreader/blob/master/AUTHORS.md).\n\n\n#History\n\n##v0.8.0 - \n- Make API endpoint configurable\n\n##v0.7.1 - 2013/06/14\n- Allow libgreader to install without requests already installed, thanks to https://github.com/stephenmcd\n\n##v0.7.0 - 2013/03/18\n- Now requires Requests > 1.0 (Requests now used for all HTTP requests)\n- Python 3.3 Compatibility (Test suite passes for Python 2.6, 2.7, and 3.3)\n- Deprecate OAuth 1.0 auth method (Google deprecated it April 20, 2012 https://developers.google.com/accounts/docs/OAuth )\n- RIP Google Reader :(\n\n##v0.6.3 - 2013/02/20\n- Add support for add/remove tag transaction abi- lity, to mass edit tags on on an Item\n- Add since/until argument support for many Container calls\n- Add support for loadLimit argument with feed Containers loadItems() call\n\n##v0.6.2 - 2012/10/11\n- Fix broken post() method with OAuth2 auth, https://github.com/askedrelic/libgreader/issues/11\n\n##v0.6.1 - 2012/08/13\n- cleanup sdist package contents, to not include tests\n- Remove httplib2 as a require import unless you are using GAPDecoratorAuthMethod\n\n##v0.6.0 - 2012/08/10\n* OAuth2 support\n* Deprecating OAuth support\n* Added auth support for Google App Engine with GAPDecoratorAuthMethod\n* Internal code re-organization\n\n##v0.5 - 2010/12/29\n* Added project to PyPi, moved to real Python project structure\n* Style cleanup, more tests\n\n##v0.4 - 2010/08/10\nLot of improvements : \n\n* Manage special feeds (reading-list, shared, starred, friends...)\n* Manage categories (get all items, mark as read)\n* Manage feeds (get items, unread couts, mark as read, \"fetch more\")\n* Manage items (get and mark read, star, share)\n\nand:\n\n* oauth2 not required if you don't use it\n* replacing all xml calls by json ones\n\n##v0.3 - 2010/03/07\n* All requests to Google use HTTPS\n* CLeaned up formatting, should mostly meet PEP8\n* Fixed random unicode issues\n* Added licensing\n\n##v0.2 - 2009/10/27\n* Moved all get requests to private convenience method\n* Added a few more basic data calls\n\n##v0.1 - 2009/10/27\n* Connects to GR and receives auth token correctly.\n* Pulls down subscription list.", "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/askedrelic/libgreader", "keywords": null, "license": "The MIT License (MIT)\nCopyright (c) 2013 Matt Behrens \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\nOR OTHER DEALINGS IN THE SOFTWARE.", "maintainer": null, "maintainer_email": null, "name": "libgreader", "package_url": "https://pypi.org/project/libgreader/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/libgreader/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/askedrelic/libgreader" }, "release_url": "https://pypi.org/project/libgreader/0.7.1/", "requires_dist": null, "requires_python": null, "summary": "Library for working with the Google Reader API", "version": "0.7.1" }, "last_serial": 771328, "releases": { "0.4": [ { "comment_text": "", "digests": { "md5": "a95d2ffcf398e98726f37e03cec31e73", "sha256": "9a4dfeba4a6f4e6a13993eca50ae4f3868f6881981b912682d7c8b253532039f" }, "downloads": -1, "filename": "libgreader-0.4.tar.gz", "has_sig": false, "md5_digest": "a95d2ffcf398e98726f37e03cec31e73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8471, "upload_time": "2010-12-30T04:13:47", "url": "https://files.pythonhosted.org/packages/e4/45/4b7fd7f7b1f0a883286aebc6a99648d4926c4e26978b225cb5251775e900/libgreader-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "463eabe0695bc09a187a28b3abfe1855", "sha256": "8d083dd8d1a07e9a1baf30488c1f96ae6694705e34dd3b93ad2ee9e8af5560e9" }, "downloads": -1, "filename": "libgreader-0.5.tar.gz", "has_sig": false, "md5_digest": "463eabe0695bc09a187a28b3abfe1855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8472, "upload_time": "2011-01-17T02:03:11", "url": "https://files.pythonhosted.org/packages/69/02/05d8decf661a6d5d02a4fb0b6f6c2df3a6e533ce581a78cc710865c9fee6/libgreader-0.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "81ae9a8178838db0eb6951dd4d25bb07", "sha256": "c219fe2277244c116ad6300e1843e9a0e6c38865713c3bcc5dc80329997d0af1" }, "downloads": -1, "filename": "libgreader-0.6.0.tar.gz", "has_sig": false, "md5_digest": "81ae9a8178838db0eb6951dd4d25bb07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16273, "upload_time": "2012-08-11T08:26:28", "url": "https://files.pythonhosted.org/packages/4d/b2/96657e0a7bc2b3628c8a708bf3f193f942012152e63ddbfe905acf59a672/libgreader-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "9a2bec39926db0ad72e5bd19583f40b8", "sha256": "dc6797ccab6f2004523099a0b1e986095592ab9ed5a540bf6c40a8f50795d6ac" }, "downloads": -1, "filename": "libgreader-0.6.1.tar.gz", "has_sig": false, "md5_digest": "9a2bec39926db0ad72e5bd19583f40b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14622, "upload_time": "2012-08-14T07:51:09", "url": "https://files.pythonhosted.org/packages/28/b4/fd9ae2cc02ff27c18f11ec2844af02e8d739d73224c9f2959ff396faa9f3/libgreader-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "5cbbbddc8959047a049bf08da6c8b866", "sha256": "83449a6447c3f09d339b39cc4393cee994dee61414cc66709a094bceef872cb6" }, "downloads": -1, "filename": "libgreader-0.6.2.tar.gz", "has_sig": false, "md5_digest": "5cbbbddc8959047a049bf08da6c8b866", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14942, "upload_time": "2012-10-11T07:23:59", "url": "https://files.pythonhosted.org/packages/cf/5f/9867c32c8585a0e2fc12c7a15581336df447bfef9bf1521c77e3cb100ba9/libgreader-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "727775ea618cdb5cb5d18784e57555c9", "sha256": "bba0e39444c3898c50a44b0bb245a7d8a49bbfb4dd1b0b8261156aff4461fbbd" }, "downloads": -1, "filename": "libgreader-0.6.3.tar.gz", "has_sig": false, "md5_digest": "727775ea618cdb5cb5d18784e57555c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13501, "upload_time": "2013-02-20T08:03:29", "url": "https://files.pythonhosted.org/packages/93/59/dbf470b006aba6efcb7e6ecc376e5d50e842aa98565d26222fd931cfdb57/libgreader-0.6.3.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "eaa027d37184fb3c7a091438bcaec467", "sha256": "f751aff721b8dd9f99bdd554d00b032dfd596a1a9eb66af524dc8eaef0c385f6" }, "downloads": -1, "filename": "libgreader-0.7.0.tar.gz", "has_sig": false, "md5_digest": "eaa027d37184fb3c7a091438bcaec467", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13999, "upload_time": "2013-03-19T06:34:50", "url": "https://files.pythonhosted.org/packages/55/ec/ceb8a0e9034d69d132ec606b2a27546d72b16bc6daf54c35e646f24659c7/libgreader-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "d65a8641f0a4d59066a8850bfd88b440", "sha256": "8113a864e1c676ebe841e6fad50da0c0235c32ee7dc947f1a2eed62d7ab124cf" }, "downloads": -1, "filename": "libgreader-0.7.1.tar.gz", "has_sig": false, "md5_digest": "d65a8641f0a4d59066a8850bfd88b440", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18759, "upload_time": "2013-06-15T06:30:23", "url": "https://files.pythonhosted.org/packages/a8/be/23256e427267503adc34e9e49829a51c193abce237d8c07176964d87c449/libgreader-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d65a8641f0a4d59066a8850bfd88b440", "sha256": "8113a864e1c676ebe841e6fad50da0c0235c32ee7dc947f1a2eed62d7ab124cf" }, "downloads": -1, "filename": "libgreader-0.7.1.tar.gz", "has_sig": false, "md5_digest": "d65a8641f0a4d59066a8850bfd88b440", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18759, "upload_time": "2013-06-15T06:30:23", "url": "https://files.pythonhosted.org/packages/a8/be/23256e427267503adc34e9e49829a51c193abce237d8c07176964d87c449/libgreader-0.7.1.tar.gz" } ] }