项目作者: twtrubiks

项目描述 :
click tutorial ( crawler ) use python
高级语言: Python
项目地址: git://github.com/twtrubiks/crawler_click_tutorial.git
创建时间: 2017-07-16T04:15:45Z
项目社区:https://github.com/twtrubiks/crawler_click_tutorial

开源协议:MIT License

下载


crawler_click_tutorial

今天教大家用 python 建立屬於自己的 command line tool :smirk:

由於最近剛好看到 click 這個東西,所以決定要拿之前的小程式來把玩一下 :smile:

本範例使用之前所寫的簡單爬蟲 eynyCrawlerMega

特色

  • 抓取 eyny 電影區 Mega and Google 文章連結

輸出格式

  • 文字檔 ( 爬蟲結束後會自動開啟文字檔 )

click 教學

安裝 click

  1. pip install click

官方範例 demo

hello.py 程式碼如下

  1. import click
  2. @click.command()
  3. @click.option('--count', default=1, help='Number of greetings.')
  4. @click.option('--name', prompt='Your name',
  5. help='The person to greet.')
  6. def hello(count, name):
  7. """Simple program that greets NAME for a total of COUNT times."""
  8. for x in range(count):
  9. click.echo('Hello %s!' % name)
  10. if __name__ == '__main__':
  11. hello()

為什麼要用 click.echo() 而不是 print()呢 ?

因為這樣可以解決一些編碼上的問題 ( 詳細請看 click 的 source code )。

然後我們可以這樣使用

python hello.py —count=3

python hello.py —help

建立 command line tool

接下來介紹建立屬於自己的 command line tool,

可以參考我的 setup.py ,程式碼如下

  1. from setuptools import setup
  2. setup(
  3. name='crawler_click_tutorial',
  4. version='0.1',
  5. py_modules=['crawler_click_tutorial'],
  6. install_requires=[
  7. 'Click',
  8. 'requests',
  9. 'beautifulsoup4',
  10. ],
  11. entry_points='''
  12. [console_scripts]
  13. movie=crawler_click_tutorial:cli
  14. ''',
  15. )

最後只需要在 cmd ( 命令提示字元 ) 執行

pip install —editable .

注意,最後有個 .

以後,只要在 cmd ( 命令提示字元 ) 輸入 movie 即可 !!

執行畫面

首先,讓我們先來看看有什麼指令可以使用

movie —help

movie

超酷 :satisfied: ,還有進度條 :open_mouth:

最後會自動幫你打開文件

movie —page=5 —output=output_file.txt

簡單防呆機制

movie —page=11

結論

click 真的超讚 :thumbsup:
可以利用它打造出屬於自己的 command line tool ,

不管是娛樂還是加速自己的工作流程都非常方便。

Environment

Python 3.5.3

Reference

Donation

文章都是我自己研究內化後原創,如果有幫助到您,也想鼓勵我的話,歡迎請我喝一杯咖啡:laughing:

alt tag

贊助者付款

License

MIT license