-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
22 lines (16 loc) · 772 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CRAWLER
A web crawler that fetches URLs from a web page based on anchor tags.
Files:
crawler.py : the main Crawler module
use_crawler.py : an example showing how to use the Crawler module
REPO
A tool that can create, update, checkout svn repositories. Also it can produce diffs of checked out dirs.
Files:
repo.py : the main Repo module
use_repo.py : an example showing how to use the Repo module
DIFFER
A tool to produce differences between two html pages. It can also produce diffs of specific elements of two html pages based on a configuration file. Provides a pretty_diff function to print colored output.
Files:
differ.py : the main Differ module
sample.cfg : a sample configuration file
use_differ.py : an example showing how to use the Differ module