- 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.
推薦閱讀
- Unreal Engine Physics Essentials
- Learning ROS for Robotics Programming(Second Edition)
- vSphere High Performance Cookbook
- 精通軟件性能測試與LoadRunner實戰(zhàn)(第2版)
- Data Analysis with Stata
- Microsoft Dynamics GP 2013 Reporting, Second Edition
- 信息技術(shù)應用基礎(chǔ)
- Scala for Machine Learning(Second Edition)
- Creating Data Stories with Tableau Public
- Python Essentials
- 深度探索Go語言:對象模型與runtime的原理特性及應用
- Swift語言實戰(zhàn)晉級
- Mastering Python
- Hands-On Data Visualization with Bokeh
- Python GUI設(shè)計tkinter菜鳥編程(增強版)