python3 -m pip install rdf-linkchecker
Run with a list of files to check
rdf-linkchecker myonefile.ttl myotherfile.ttl
The --config-filename
option can be used to pass an INI
-style file.
[connection]
retries = 1
#seconds
timeout = 3
# first sleep in seconds between retries
# exponential backoff afterwards
sleep =1
[skip]
# any URL matching an entry in this comma separated list is not checked
domains = https://some.tld/path,http://someother.tld
# level: "all" | "only-failed" | "none"
# target: "console" | filename
"reporting": {"level": "all", "target": "console"}
This project was generated with python-package-template