Download Images With Python

Download image files from website with Python.The module request can help us to fetch contents of web page, we can use BeautifulSoup to parse the html string and collect all interesting elements, download images by relevant URLs which are filtered by our script. import requests, sys, webbrowser, bs4, urllib if Read more…

Add Log For Python Project

The log file is important for the developer to debug, it also ensures that the user will not be distracted by program message. Python provides module logging to help developers to complete the task conveniently, we can set customized format and different log levels for it. Developers can also turn Read more…

VTK Measurement Widgets

The article shows a few kinds of widgets which are used to measure the distance between two points, angle between two rays, and the bidimensional length of an object. Distance Measure The Distance On 2D Model We need vtkDistanceWidget, vtkDistanceRepresentation2D and vtkPointHandleRepresentation2D to help us to calculate the distance between Read more…

Tex To PDF
: convert the Latex file which suffix is tex to a PDF file

X