mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-07 09:02:32 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
11837addf1 | ||
|
185700447e | ||
|
ae91f7e419 | ||
|
9ecc413eb0 | ||
|
6a4242434f |
13
README.md
13
README.md
@@ -7,7 +7,7 @@
|
||||
<!-- BEGIN mktoc -->
|
||||
- [Description](#description)
|
||||
- [Motivation](#motivation)
|
||||
- [Install](#install)
|
||||
- [Installation](#installation)
|
||||
- [Usage](#usage)
|
||||
- [View Hot Deals](#view-hot-deals)
|
||||
- [View and Sort Hot Deals](#view-and-sort-hot-deals)
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
## Description
|
||||
|
||||
This is a CLI utility that allows you to view [Redflagdeals.com](https://forums.redflagdeals.com) on the command line.
|
||||
This is a CLI utility that allows you to view [RedFlagDeals.com](https://forums.redflagdeals.com) on the command line.
|
||||
|
||||

|
||||
|
||||
@@ -29,12 +29,17 @@ This is a CLI utility that allows you to view [Redflagdeals.com](https://forums.
|
||||
|
||||
It is often faster to use a CLI than to load up a web page and navigate web elements. This tool can search for deals and sort them based on score and views. It is also able to load entire threads (without pagination) for additional analysis.
|
||||
|
||||
## Install
|
||||
## Installation
|
||||
|
||||
> :information_source: python2 may still work but it is [no longer supported](https://www.python.org/doc/sunset-python-2/).
|
||||
|
||||
```bash
|
||||
pip install rfd
|
||||
python3 -m pip install --user rfd
|
||||
```
|
||||
|
||||
After installation, if you cannot access `rfd` in your path, try `python3 -m rfd`.
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
All commands open up in a [terminal pager](https://en.wikipedia.org/wiki/Terminal_pager).
|
||||
|
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "rfd"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
description = "view RedFlagDeals.com from the command line"
|
||||
authors = ["Dave Gallant <davegallant@gmail.com>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
@@ -20,6 +20,9 @@ pylint = "^2.8.2"
|
||||
pytest = ">=4.6.6"
|
||||
rope = "0.19.0"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
rfd = "rfd.__main__:cli"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
@@ -1 +1 @@
|
||||
0.7.0
|
||||
0.7.1
|
||||
|
Reference in New Issue
Block a user