mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-07 09:02:32 +00:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
dbcdc01457 | ||
|
da707a2682 | ||
|
96f0d64b4f | ||
|
325c5c317d | ||
|
96420e52af | ||
|
586b73c803 | ||
|
2e507c1bfb |
11
.github/PULL_REQUEST_TEMPLATE.md
vendored
11
.github/PULL_REQUEST_TEMPLATE.md
vendored
@@ -1,8 +1,9 @@
|
|||||||
|
|
||||||
*Description of changes:*
|
**What this PR does / why we need it:**
|
||||||
|
-
|
||||||
|
|
||||||
*Checklist:*
|
**Which issue(s) this PR fixes:**
|
||||||
|
-
|
||||||
|
|
||||||
- [ ] Write unit tests
|
**Additional Notes:**
|
||||||
- [ ] `make pr` passes
|
-
|
||||||
- [ ] Write documentation
|
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -88,3 +88,5 @@ venv.bak/
|
|||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.dmypy.json
|
.dmypy.json
|
||||||
dmypy.json
|
dmypy.json
|
||||||
|
|
||||||
|
tmp/
|
||||||
|
66
Makefile
66
Makefile
@@ -1,35 +1,57 @@
|
|||||||
|
|
||||||
SRC:=rfd
|
SRC := rfd
|
||||||
|
SHELL := bash
|
||||||
|
.ONESHELL:
|
||||||
|
.SHELLFLAGS := -eu -o pipefail -c
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
MAKEFLAGS += --warn-undefined-variables
|
||||||
|
MAKEFLAGS += --no-builtin-rules
|
||||||
|
|
||||||
.PHONY: build
|
|
||||||
|
ifeq ($(origin .RECIPEPREFIX), undefined)
|
||||||
|
$(error This Make does not support .RECIPEPREFIX. Please use GNU Make 4.0 or later)
|
||||||
|
endif
|
||||||
|
.RECIPEPREFIX = >
|
||||||
|
|
||||||
|
## build: Build a tar.gz of the python package
|
||||||
build:
|
build:
|
||||||
rm -rf dist/
|
> rm -rf dist/
|
||||||
python setup.py sdist
|
> python setup.py sdist
|
||||||
|
.PHONY: build
|
||||||
.PHONY: push_test
|
|
||||||
push_test:
|
|
||||||
twine upload -r testpypi dist/*.tar.gz
|
|
||||||
|
|
||||||
.PHONY: push_prod
|
|
||||||
push_prod:
|
|
||||||
twine upload dist/*.tar.gz
|
|
||||||
|
|
||||||
|
## precommit: Run all pre-commit hooks
|
||||||
|
precommit:
|
||||||
|
> pre-commit run \
|
||||||
|
--all-files \
|
||||||
|
--show-diff-on-failure
|
||||||
.PHONY: precommit
|
.PHONY: precommit
|
||||||
precommit: ## Run pre-commit
|
|
||||||
pre-commit run \
|
|
||||||
--all-files \
|
|
||||||
--show-diff-on-failure
|
|
||||||
|
|
||||||
.PHONY: lint
|
## lint: Run static analysis on the code
|
||||||
lint:
|
lint:
|
||||||
pylint $(SRC)
|
> pylint $(SRC)
|
||||||
|
.PHONY: lint
|
||||||
|
|
||||||
|
## test: Run all unit tests
|
||||||
|
test: tmp/.tests-passed.sentinel
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test:
|
|
||||||
pytest -v
|
|
||||||
|
|
||||||
.PHONY: pr
|
# Tests - re-ran if any file under src has been changed since tmp/.tests-passed.sentinel was last touched
|
||||||
|
tmp/.tests-passed.sentinel: $(shell find ${SRC} -type f)
|
||||||
|
> mkdir -p $(@D)
|
||||||
|
> pytest -v
|
||||||
|
> touch $@
|
||||||
|
|
||||||
|
## pr: Run pre-commit, lint and test
|
||||||
pr: precommit lint test
|
pr: precommit lint test
|
||||||
|
.PHONY: pr
|
||||||
|
|
||||||
.PHONY: ci
|
|
||||||
ci: lint test
|
ci: lint test
|
||||||
|
.PHONY: ci
|
||||||
|
|
||||||
|
## help: Print this help message
|
||||||
|
help:
|
||||||
|
> @echo "Usage:"
|
||||||
|
> @echo
|
||||||
|
> @sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /' | sort
|
||||||
|
> @echo
|
||||||
|
.PHONY: help
|
||||||
|
36
README.md
36
README.md
@@ -8,7 +8,11 @@ Hot deals on the command line.
|
|||||||
[](https://lgtm.com/projects/g/davegallant/rfd/alerts/)
|
[](https://lgtm.com/projects/g/davegallant/rfd/alerts/)
|
||||||
[](https://lgtm.com/projects/g/davegallant/rfd/context:python)
|
[](https://lgtm.com/projects/g/davegallant/rfd/context:python)
|
||||||
|
|
||||||
## Installation
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install rfd
|
pip install rfd
|
||||||
@@ -16,21 +20,37 @@ pip install rfd
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||

|
```shell
|
||||||
|
Usage: rfd [OPTIONS] COMMAND [ARGS]...
|
||||||
|
|
||||||
|
CLI for https://forums.redflagdeals.com
|
||||||
|
|
||||||
### threads
|
Options:
|
||||||
```bash
|
-v, --version
|
||||||
rfd threads [--forum-id 9] [--limit 10]
|
--help Show this message and exit.
|
||||||
|
|
||||||
|
Commands:
|
||||||
|
posts Display all posts in a thread.
|
||||||
|
search Search deals based on a regular expression.
|
||||||
|
threads Displays threads in the forum. Defaults to hot deals.
|
||||||
```
|
```
|
||||||
|
|
||||||
### search
|
## Examples
|
||||||
```bash
|
|
||||||
rfd search pizza [--num-pages 100]
|
### view hot deals
|
||||||
|
```shell
|
||||||
|
rfd threads
|
||||||
|
```
|
||||||
|
|
||||||
|
### search for pizza
|
||||||
|
```shell
|
||||||
|
rfd search 'pizza'
|
||||||
```
|
```
|
||||||
|
|
||||||
## Tab Completion
|
## Tab Completion
|
||||||
|
|
||||||
|
To enable:
|
||||||
|
|
||||||
### bash
|
### bash
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
beautifulsoup4>=4.6.0
|
beautifulsoup4<=4.8.2
|
||||||
click>=7.0
|
click>=7.0
|
||||||
colorama>=0.3.9
|
colorama>=0.4.3
|
||||||
requests>=2.18.0
|
requests>=2.22.0
|
||||||
|
soupsieve<=2.0
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
pre-commit==1.20.0
|
pre-commit==1.21.0
|
||||||
pylint
|
pylint
|
||||||
pytest>=4.6.6
|
pytest>=4.6.6
|
||||||
rope==0.14.0
|
rope==0.16.0
|
||||||
tox-travis==0.12
|
tox-travis==0.12
|
||||||
|
@@ -1 +1 @@
|
|||||||
0.3.3
|
0.3.5
|
||||||
|
51
rfd/cli.py
51
rfd/cli.py
@@ -36,34 +36,40 @@ def get_vote_color(score):
|
|||||||
return Fore.BLUE + " [" + str(score) + "] "
|
return Fore.BLUE + " [" + str(score) + "] "
|
||||||
|
|
||||||
|
|
||||||
|
def print_version(ctx, value):
|
||||||
|
if not value or ctx.resilient_parsing:
|
||||||
|
return
|
||||||
|
click.echo(get_version())
|
||||||
|
ctx.exit()
|
||||||
|
|
||||||
|
|
||||||
@click.group(invoke_without_command=True)
|
@click.group(invoke_without_command=True)
|
||||||
@click.option("--version/--no-version", default=False)
|
@click.option(
|
||||||
|
"-v",
|
||||||
|
"--version",
|
||||||
|
is_flag=True,
|
||||||
|
callback=print_version,
|
||||||
|
expose_value=False,
|
||||||
|
is_eager=True,
|
||||||
|
)
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
def cli(ctx, version):
|
def cli(ctx):
|
||||||
"""CLI for https://forums.redflagdeals.com"""
|
"""CLI for https://forums.redflagdeals.com"""
|
||||||
if version:
|
if not ctx.invoked_subcommand:
|
||||||
click.echo(get_version())
|
|
||||||
elif not ctx.invoked_subcommand:
|
|
||||||
click.echo(ctx.get_help())
|
click.echo(ctx.get_help())
|
||||||
|
|
||||||
|
|
||||||
@cli.command("version")
|
@cli.command(short_help="Display all posts in a thread.")
|
||||||
def display_version():
|
|
||||||
click.echo(get_version())
|
|
||||||
|
|
||||||
|
|
||||||
@cli.command(short_help="Displays posts in a specific thread.")
|
|
||||||
@click.argument("post_id")
|
@click.argument("post_id")
|
||||||
def posts(post_id):
|
def posts(post_id):
|
||||||
"""Displays posts in a specific thread.
|
"""Iterate all pages and display all posts in a thread.
|
||||||
|
|
||||||
post_id can be a full url or post id only
|
post_id can be a full url or post id only
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
\b
|
\b
|
||||||
url: https://forums.redflagdeals.com/koodo-targeted-public-mobile-12-120-koodo-5gb-40-no-referrals-2173603
|
rfd posts https://forums.redflagdeals.com/koodo-targeted-public-mobile-12-120-koodo-5gb-40-no-referrals-2173603
|
||||||
post_id: 2173603
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -87,11 +93,11 @@ def posts(post_id):
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
@cli.command(short_help="Displays threads in the specified forum.")
|
@cli.command(short_help="Displays threads in the forum. Defaults to hot deals.")
|
||||||
@click.option("--limit", default=10, help="Number of topics.")
|
@click.option("--limit", default=10, help="Number of topics.")
|
||||||
@click.option("--forum-id", default=9, help="The forum id number")
|
@click.option("--forum-id", default=9, help="The forum id number")
|
||||||
def threads(limit, forum_id):
|
def threads(limit, forum_id):
|
||||||
"""Displays threads in the specified forum id. Defaults to 9.
|
"""Display threads in the specified forum id. Defaults to 9 (hot deals).
|
||||||
|
|
||||||
Popular forum ids:
|
Popular forum ids:
|
||||||
|
|
||||||
@@ -116,19 +122,22 @@ def threads(limit, forum_id):
|
|||||||
+ get_vote_color(thread.score)
|
+ get_vote_color(thread.score)
|
||||||
+ Fore.RESET
|
+ Fore.RESET
|
||||||
+ "[%s] %s" % (thread.dealer_name, thread.title)
|
+ "[%s] %s" % (thread.dealer_name, thread.title)
|
||||||
|
+ Fore.LIGHTYELLOW_EX
|
||||||
|
+ " (%d views)" % thread.total_views
|
||||||
|
+ Fore.RESET
|
||||||
)
|
)
|
||||||
click.echo(Fore.BLUE + " {}".format(thread.url))
|
click.echo(Fore.BLUE + " {}".format(thread.url))
|
||||||
click.echo(Style.RESET_ALL)
|
click.echo(Style.RESET_ALL)
|
||||||
|
|
||||||
|
|
||||||
@cli.command(short_help="Displays threads in the specified forum.")
|
@cli.command(short_help="Search deals based on a regular expression.")
|
||||||
@click.option("--num-pages", default=5, help="Number of pages to search.")
|
@click.option("--num-pages", default=5, help="Number of pages to search.")
|
||||||
@click.option(
|
@click.option(
|
||||||
"--forum-id", default=9, help="The forum id number. Defaults to 9 (hot deals)."
|
"--forum-id", default=9, help="The forum id number. Defaults to 9 (hot deals)."
|
||||||
)
|
)
|
||||||
@click.argument("keyword")
|
@click.argument("regex")
|
||||||
def search(num_pages, forum_id, keyword):
|
def search(num_pages, forum_id, regex):
|
||||||
"""Searches for deals based on a keyword in the specified forum id.
|
"""Search deals based on regex.
|
||||||
|
|
||||||
Popular forum ids:
|
Popular forum ids:
|
||||||
|
|
||||||
@@ -148,7 +157,7 @@ def search(num_pages, forum_id, keyword):
|
|||||||
count = 0
|
count = 0
|
||||||
for page in range(1, num_pages):
|
for page in range(1, num_pages):
|
||||||
_threads = parse_threads(get_threads(forum_id, 100, page=page), limit=100)
|
_threads = parse_threads(get_threads(forum_id, 100, page=page), limit=100)
|
||||||
for thread in search_threads(threads=_threads, keyword=keyword):
|
for thread in search_threads(threads=_threads, regex=regex):
|
||||||
count += 1
|
count += 1
|
||||||
click.echo(
|
click.echo(
|
||||||
" "
|
" "
|
||||||
|
@@ -1,10 +1,11 @@
|
|||||||
# pylint: disable=old-style-class
|
# pylint: disable=old-style-class
|
||||||
class Thread:
|
class Thread:
|
||||||
def __init__(self, title, dealer_name, score, url):
|
def __init__(self, title, dealer_name, score, url, total_views):
|
||||||
self.dealer_name = dealer_name
|
self.dealer_name = dealer_name
|
||||||
self.score = score
|
self.score = score
|
||||||
self.title = title
|
self.title = title
|
||||||
self.url = url
|
self.url = url
|
||||||
|
self.total_views = total_views
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "Thread(%s)" % self.title
|
return "Thread(%s)" % self.title
|
||||||
|
@@ -29,6 +29,7 @@ def parse_threads(threads, limit):
|
|||||||
dealer_name=topic["offer"].get("dealer_name"),
|
dealer_name=topic["offer"].get("dealer_name"),
|
||||||
score=calculate_score(topic),
|
score=calculate_score(topic),
|
||||||
url=build_web_path(topic.get("web_path")),
|
url=build_web_path(topic.get("web_path")),
|
||||||
|
total_views=topic.get("total_views"),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
return parsed_threads
|
return parsed_threads
|
||||||
|
@@ -1,13 +1,14 @@
|
|||||||
def search_threads(threads, keyword=None):
|
import re
|
||||||
"""Match deal title and dealer names with keyword specified."""
|
|
||||||
|
|
||||||
if keyword is None:
|
|
||||||
return
|
|
||||||
|
|
||||||
keyword = str(keyword)
|
def search_threads(threads, regex):
|
||||||
|
"""Match deal title and dealer names with regex specified."""
|
||||||
|
|
||||||
|
regexp = re.compile(str(regex).lower())
|
||||||
|
|
||||||
for deal in threads:
|
for deal in threads:
|
||||||
if keyword.lower() in deal.title.lower() or (
|
|
||||||
deal.dealer_name and keyword.lower() in deal.dealer_name.lower()
|
if regexp.search(deal.title.lower()) or (
|
||||||
|
deal.dealer_name and regexp.search(deal.dealer_name.lower())
|
||||||
):
|
):
|
||||||
yield deal
|
yield deal
|
||||||
|
Reference in New Issue
Block a user