An open API service indexing awesome lists of open source software.

https://github.com/preetmishra/nooz

Trending headlines right in your terminal.
https://github.com/preetmishra/nooz

hacktoberfest news python tui urwid

Last synced: 10 days ago
JSON representation

Trending headlines right in your terminal.

Awesome Lists containing this project

README

          

# nooz

Trending headlines right in your terminal.

[![PyPI](https://img.shields.io/pypi/v/nooz.svg)](https://pypi.python.org/pypi/nooz)
[![Python Versions](https://img.shields.io/pypi/pyversions/nooz.svg)](https://pypi.python.org/pypi/nooz)

## Installation

You can install nooz by typing the following in your terminal.
```bash
$ pip install nooz
```

However, if you want to install nooz in a virtual environment you can do the following things in order.
```bash
$ virtualenv ~/.virtualenvs/nooz --python=python3
$ source ~/.virtualenvs/nooz/bin/activate
(nooz) $ pip install nooz
```

## Launching
To launch the app, type the following in your terminal.
```
$ nooz
```

## Keys

| Command | Key |
| ----------------------------------------------------- | --------------------------------------------- |
| Go left | left |
| Go right | right |
| Scroll up | up / page up |
| Scroll down | down / page down |
| Exit | q / Q |
| Refresh | F5 |
| Go back | esc |

## Troubleshooting

### Locale error
You can fix locale errors by adding the following in your `~/.bashrc`.
```bash
export LANG=en_US.utf-8
```

## Screenshot

![Screenshot](https://i.imgur.com/lSu2WJC.jpg)