Metadata-Version: 1.0
Name: python-feedly
Version: 0.0.3
Summary: Client for Feedly.com
Home-page: https://github.com/WarmongeR1/FeedlyClient
Author: Alexander Sapronov
Author-email: sapronov.alexander92@gmail.com
License: The MIT License (MIT)

Copyright (c) 2013 zgw21cn

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description: FeedlyClient
        ============
        
        .. _feedly: www.feedly.com 
        
        A client for feedly_.
        
        Usage
        =====
        
        .. code-block:: bash
        
        	$ pip install python-feedly
        	
        Auth
        ----
        
        At first, you can go to :
        
        .. _sandbox feedly: https://sandbox.feedly.com/v3/auth/dev
        .. _feedly cloud: https://feedly.com/v3/auth/dev
        .. _feedly developer: http://developer.feedly.com/v3/sandbox/
        
        	-  `sandbox feedly`_ - access to sandbox (can be used for personal development)
        	- `feedly cloud`_ - access to feedly.com (can be used for personal development)
        	- `feedly developer`_ - access  (can be used for production development)
        
        To apply for a client id and client secret. Then you can go to feedly to obtain a code.
        
        Examples
        --------
        
        .. code-block:: python
        
        	FEEDLY_REDIRECT_URI = "http://fabreadly.com/auth_callback"
        	FEEDLY_CLIENT_ID="client_id"
        	FEEDLY_CLIENT_SECRET="client_secret"
        
        	def get_feedly_client(token=None):
        		if token:
        			return FeedlyClient(token=token, sandbox=True)
        		else:
        			return FeedlyClient(
        								client_id=FEEDLY_CLIENT_ID, 
        								client_secret=FEEDLY_CLIENT_SECRET,
        								sandbox=True
        			)
        	def auth(request):   
        		feedly = get_feedly_client()
        		# Redirect the user to the feedly authorization URL to get user code
        		code_url = feedly.get_code_url(FEEDLY_REDIRECT_URI)    
        		return redirect(code_url)
        
        
        After getting a code, you may exchange it for an access token and a refresh token.
        
        
        .. code-block:: python
        
        	def callback(request):
        		code=request.GET.get('code','')
        		if not code:
        			return HttpResponse('The authentication is failed.')
        		
        		feedly = get_feedly_client()
        		
        		#response of access token
        		res_access_token = feedly.get_access_token(FEEDLY_REDIRECT_URI, code)
        		# user id
        		if 'errorCode' in res_access_token.keys():
        			return HttpResponse('The authentication is failed.')
        			 
        		id = res_access_token['id']
        		access_token=res_access_token['access_token']
        
        	# get user's subscription
        	def feed(access_token):
        			'''get user's subscription'''
        			feedly = get_feedly_client()
        			user_subscriptions = feedly.get_user_subscriptions(access_token)
        
Platform: UNKNOWN
