62 lines
2.2 KiB
Python
62 lines
2.2 KiB
Python
import json
|
|
import re
|
|
|
|
from urllib.parse import urlparse
|
|
|
|
import httpx
|
|
import parsel
|
|
import pyjq
|
|
|
|
class ScrapeTarget:
|
|
def __init__(self, product_name, url, selector, target_name=None, regex=None, parser=None):
|
|
self.product_name = product_name
|
|
self.target_name = target_name if target_name else urlparse(url).hostname
|
|
self.url = url
|
|
self.selector = selector
|
|
self.regex = re.compile(regex if regex else r'[0-9]+(\.[0-9]{2})?')
|
|
self.parser = parser if parser else 'html'
|
|
self.headers = {}
|
|
|
|
# sanity check
|
|
valid_parsers = ('html', 'json')
|
|
if self.parser not in valid_parsers:
|
|
raise ValueError("Invalid parser configured (got '%s' but need one of %s) product: '%s', target: '%s'" % (self.parser, valid_parsers, self.product_name, self.target_name))
|
|
|
|
def query_target(self):
|
|
# some sites get suspicious if we talk to them in HTTP/1.1 (maybe because it doesn't match our user-agent?)
|
|
# we use httpx to have HTTP2 support and circumvent that issue
|
|
query_response = httpx.get(
|
|
url=self.url,
|
|
headers=self.headers,
|
|
follow_redirects=True,
|
|
).text
|
|
|
|
# parse the response and match the selector
|
|
selector_match = ''
|
|
if self.parser == 'html':
|
|
# parse response as html
|
|
selector = parsel.Selector(text=query_response)
|
|
selector_match = selector.css(self.selector).get()
|
|
elif self.parser == 'json':
|
|
# parse response as json
|
|
query_response_json = json.loads(query_response)
|
|
selector_match = str(pyjq.first(self.selector, query_response_json))
|
|
else:
|
|
raise ScrapeError('Invalid parser!')
|
|
|
|
if not selector_match:
|
|
raise ScrapeError('Failed to match selector!')
|
|
|
|
# match the regex
|
|
regex_match = self.regex.search(selector_match)
|
|
if regex_match:
|
|
str_result = regex_match.group(0)
|
|
# convert the result to float
|
|
float_result = float(str_result)
|
|
return float_result
|
|
else:
|
|
raise ScrapeError('Failed to match regex!')
|
|
|
|
class ScrapeError(Exception):
|
|
def __init__(self, msg):
|
|
super().__init__(msg) |