Metadata-Version: 2.1
Name: python-inoreader
Version: 0.7.1
Summary: Python wrapper of Inoreader API
Author-email: Linusp <linusp1024@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Linusp/python-inoreader
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: lxml
Requires-Dist: requests
Requires-Dist: PyYAML
Requires-Dist: click
Requires-Dist: requests-oauthlib
Requires-Dist: flask
Requires-Dist: tabulate

Inoreader
=========

![](https://api.travis-ci.org/Linusp/python-inoreader.png?branch=master)

Python wrapper of Inoreader API.

## Installation

Install with `pip` directly

```shell
pip install python-inoreader
```

## Usage

1. [Register your application](https://www.inoreader.com/developers/register-app). 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

   ```shell
   inoreader login
   ```

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

   ```python
   from inoreader.main import get_client
   client = get_client()
   ```
