mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
25 lines
649 B
Python
25 lines
649 B
Python
#encoding=utf8
|
|
import requests
|
|
from bs4 import BeautifulSoup
|
|
import json
|
|
|
|
class PyWinAlfred():
|
|
|
|
def query(self,key):
|
|
k = key.split(" ")[1]
|
|
if not k:
|
|
return ""
|
|
r = requests.get('http://movie.douban.com/subject_search?search_text=' + k)
|
|
bs = BeautifulSoup(r.text)
|
|
results = []
|
|
for i in bs.select(".article table .pl2 a"):
|
|
res = {}
|
|
t = i.text.strip().replace(" ","")
|
|
res["Title"] = t.replace("\\n","")
|
|
results.append(res)
|
|
return json.dumps(results)
|
|
|
|
if __name__ == "__main__":
|
|
p = PyWinAlfred()
|
|
print p.query("movie geo")
|