forked from futantan/Dic-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdic.py
executable file
·35 lines (29 loc) · 809 Bytes
/
dic.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
import requests
import bs4
import sys
def printDic(words):
try:
response = requests.get("http://dict.youdao.com/search?", params=words)
content = bs4.BeautifulSoup(response.text).find("div", class_="trans-container").ul.find_all('li')
except requests.exceptions.ConnectionError:
print "Network error"
except AttributeError:
print "No result"
else:
for line in content:
print line.string
def getParams():
if len(sys.argv) == 1:
return
else:
words = ""
for word in sys.argv[1:]:
words += word + " "
return words
if __name__ == "__main__":
if len(sys.argv) == 1:
print "No input"
else:
payload = {'q': getParams()}
printDic(payload)