• Home
Name Date Size #Lines LOC

..--

README.mdD03-May-2024655 2618

svg_downloader.pyD03-May-20241.4 KiB4631

svgs.txtD03-May-2024738 1110

svgs_parse_only.txtD03-May-20244.3 KiB6059

README.md

1SVG Tools
2=========
3
4This directory contains the following-
5
6
7svgs.txt
8--------
9This text file contains an SVG URL per line.
10It is a list of the SVG files used to test rendering correctness.
11
12svgs_parse_only.txt
13-------------------
14This text file contains an SVG URL per line.
15It is a list of the SVG files used to exercise the SVG parsing code.
16
17svg_downloader.py
18-----------------
19This python script parses txt files and downloads SVGs into a specified directory.
20
21The script can be run by hand:
22$ python svg_downloader.py --output_dir /tmp/svgs/
23OR
24$ python svg_downloader.py --output_dir /tmp/svgs/ --svgs_file svgs_parse_only.txt --prefix svgparse_
25
26