Linux Configuration Dictionary Goldendict

Source: Internet
Author: User
Tags xpath

Used under mint 18, similar to Ubuntu.

Method :

    1. Install goldendict through Software Center, orsudo apt install goldendict
    2. Through the web crawler, see the Appendix
    3. Download the lang Dao dictionary file, refer here
    4. Configuration such as


* * Use * *

    1. Mouse selected
    2. Shortcut keysctl + C + C

Python parsing scripts

#encoding: Utf-8ImportUrllib fromUrllibImportRequest fromlxmlImportEtree fromSysImportArgvif __name__ == "__main__": URL= ' http://dict.youdao.com/w/eng/{}/#keyfrom =dict2.index 'Word=argv[1] Word=Word.replace ("/","/")# URL method to filter out/switch to full-widthWord=Urllib.parse.quote (Word)# Chinese is handled here, otherwise there will be a problem with Chinese input. Turl=Url.format(word)#turl = Urllib.parse.quote (Turl, safe= '/:?= ')     withRequest.urlopen (Turl) asF:data=F.read ()# Read Data note Data return bytesSelector=Etree. HTML (data)# Generate Selector object, use XPath to get contentContent=Selector.xpath ("//div[@id = ' results-contents ']")[0] Content=Etree.tostring (Content, encoding=' Utf-8 ', method=' HTML ')Print(Content.decode (' Utf-8 '))

Linux Configuration Dictionary Goldendict

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.