mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-10 18:42:28 +00:00
Add --sort-by flag to threads sub-command (#75)
* Add --sort-by flag to threads sub-command * Add some sanity test commands to tox
This commit is contained in:
14
rfd/utils.py
14
rfd/utils.py
@@ -1,4 +1,18 @@
|
||||
"""This module provides utility functions that are used within rfd"""
|
||||
try:
|
||||
from urllib.parse import urlparse # python 2
|
||||
except ImportError:
|
||||
from urlparse import urlparse # python 1
|
||||
from bs4 import BeautifulSoup
|
||||
|
||||
|
||||
def strip_html(text):
|
||||
return BeautifulSoup(text, "html.parser").get_text()
|
||||
|
||||
|
||||
def is_valid_url(url):
|
||||
result = urlparse(url)
|
||||
return all([result.scheme, result.netloc, result.path])
|
||||
|
||||
|
||||
def is_int(number):
|
||||
|
Reference in New Issue
Block a user