- Python Web Scraping(Second Edition)
- Katharine Jarmul Richard Lawson
- 177字
- 2021-07-09 19:42:41
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "We can include other contexts through the use of the include directive."
A block of code is set as follows:
from urllib.request import urlopen
from urllib.error import URLError
url = 'http://example.webscraping.com'
try:
html = urlopen(url).read()
except urllib2.URLError as e:
html = None
Any command-line input or output is written as follows:
python script.py
We will occasionally show Python interpreter prompts used by the normal Python interpreter, such as:
>>> import urllib
Or the IPython interpreter, such as:
In [1]: import urllib
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking the Next button moves you to the next screen".
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
推薦閱讀
- 多媒體CAI課件設(shè)計(jì)與制作導(dǎo)論(第二版)
- Monkey Game Development:Beginner's Guide
- Android項(xiàng)目開(kāi)發(fā)入門(mén)教程
- Python機(jī)器學(xué)習(xí)實(shí)戰(zhàn)
- 用Flutter極速構(gòu)建原生應(yīng)用
- Rust Essentials(Second Edition)
- C語(yǔ)言課程設(shè)計(jì)
- 51單片機(jī)C語(yǔ)言開(kāi)發(fā)教程
- Spring Boot+MVC實(shí)戰(zhàn)指南
- 移動(dòng)增值應(yīng)用開(kāi)發(fā)技術(shù)導(dǎo)論
- SwiftUI極簡(jiǎn)開(kāi)發(fā)
- Software-Defined Networking with OpenFlow(Second Edition)
- C++面向?qū)ο蟪绦蛟O(shè)計(jì)
- 高性能MVVM框架的設(shè)計(jì)與實(shí)現(xiàn):San
- HTML5 Game Development by Example:Beginner's Guide(Second Edition)