mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
#encoding=utf8
|
|
|
|
import requests
|
|
from bs4 import BeautifulSoup
|
|
import webbrowser
|
|
from wox import Wox,WoxAPI
|
|
|
|
class HackerNews(Wox):
|
|
|
|
def query(self,key):
|
|
proxies = {}
|
|
if self.proxy and self.proxy.get("enabled") and self.proxy.get("server"):
|
|
proxies = {
|
|
"http": "http://{}:{}".format(self.proxy.get("server"),self.proxy.get("port")),
|
|
"http": "https://{}:{}".format(self.proxy.get("server"),self.proxy.get("port"))
|
|
}
|
|
#self.debug(proxies)
|
|
r = requests.get('https://news.ycombinator.com/',proxies = proxies)
|
|
bs = BeautifulSoup(r.text)
|
|
results = []
|
|
for i in bs.select(".comhead"):
|
|
title = i.previous_sibling.text
|
|
url = i.previous_sibling["href"]
|
|
results.append({"Title": title ,"IcoPath":"Images/app.ico","JsonRPCAction":{"method": "openUrl","parameters":[url],"dontHideAfterAction":True}})
|
|
|
|
return results
|
|
|
|
def openUrl(self,url):
|
|
webbrowser.open(url)
|
|
#todo:doesn't work when move this line up
|
|
WoxAPI.change_query(url)
|
|
|
|
if __name__ == "__main__":
|
|
HackerNews()
|