Skip to main content

Client for Feedly.com

Project description

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: python-feedly
=============

.. image:: https://img.shields.io/pypi/v/python-feedly.svg
:target: https://pypi.python.org/pypi/python-feedly

.. image:: https://img.shields.io/pypi/dm/python-feedly.svg
:target: https://pypi.python.org/pypi/python-feedly


.. _feedly: http://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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-feedly-1.1.0.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

python_feedly-1.1.0-py2.py3-none-any.whl (5.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file python-feedly-1.1.0.tar.gz.

File metadata

  • Download URL: python-feedly-1.1.0.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.3

File hashes

Hashes for python-feedly-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2a39f1594375b32de985c71e47ef913df566b8338468816fd1b92274cbb6f556
MD5 6934ff4fb3bf22a0f5d2f6da9844e5f4
BLAKE2b-256 195dc0e4568f145c0e09101be14aba4bf090fb2e97b8955f1e77f57d58278085

See more details on using hashes here.

File details

Details for the file python_feedly-1.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: python_feedly-1.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.3

File hashes

Hashes for python_feedly-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b26953f3c2daf9d2856670d89dbea9b4dd796b8f1480aae2d85b7ae5a92c9a69
MD5 debebb037824a39dd38b6a63e1d23976
BLAKE2b-256 e43b4b2e5d6f0c2def7ff60c98363a13be6f49a11c2a2f18aed971b95e595c34

See more details on using hashes here.

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