mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-25 20:41:21 -05:00
SpiffyTtitles: Twitter/X add new template variables
{{content}} {{name}} {{nick}} {{date}}
This commit is contained in:
parent
ac49779e72
commit
a2645152a4
@ -1754,6 +1754,12 @@ class SpiffyTitles(callbacks.Plugin):
|
|||||||
results = {}
|
results = {}
|
||||||
soup = BeautifulSoup(response["html"])
|
soup = BeautifulSoup(response["html"])
|
||||||
results["text"] = soup.get_text(" ").strip()
|
results["text"] = soup.get_text(" ").strip()
|
||||||
|
match = re.match(r"(.*)—(.*) \((.*)\) (.*)", results["text"])
|
||||||
|
if match:
|
||||||
|
results["content"] = match.group(1)
|
||||||
|
results["name"] = match.group(2)
|
||||||
|
results["nick"] = match.group(3)
|
||||||
|
results["date"] = match.group(4)
|
||||||
template = Template(self.registryValue("twitter.template", channel))
|
template = Template(self.registryValue("twitter.template", channel))
|
||||||
title = template.render(results).strip()
|
title = template.render(results).strip()
|
||||||
if title:
|
if title:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user