Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 655 | 26 | 18 | |
svg_downloader.py | D | 03-May-2024 | 1.4 KiB | 46 | 31 | |
svgs.txt | D | 03-May-2024 | 738 | 11 | 10 | |
svgs_parse_only.txt | D | 03-May-2024 | 4.3 KiB | 60 | 59 |
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