Skip to content

Linusp/python-inoreader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f3361bf · May 24, 2024
Mar 22, 2024
Jul 20, 2019
May 24, 2024
Dec 13, 2023
Mar 22, 2024
Jul 20, 2019
May 24, 2024
Mar 22, 2024
Mar 22, 2024
Apr 27, 2024
May 24, 2024
Aug 29, 2022

Repository files navigation

Inoreader

Python wrapper of Inoreader API.

Installation

Install with pip directly

pip install python-inoreader

Usage

  1. Register your application. Use http://localhost:8080/oauth/redirect for the redirect URI and set scope to "Read and Write". Then create the configuration file $HOME/.inoreader

    An example of the configuration file:

    [auth]
    appid = your_app_id
    appkey = your_app_key
    
  2. Login to your Inoreader account

    inoreader login
  3. Use the command line tool inoreader to do something, run inoreader --help for details. Or in code do:

    from inoreader.main import get_client
    client = get_client()