#hide from nbdev import * from fastlinkcheck import link_check show_doc(link_check) from fastlinkcheck import link_check broken_links = link_check(path='_example', host='fastlinkcheck.com') print(broken_links) broken_links = link_check(path='_example', host='fastlinkcheck.com', print_logs=True) print(f'Number of broken links found {len(broken_links)}') with open('_example/linkcheck.rc', 'r') as f: print(f.read()) broken_links = link_check(path='_example', host='fastlinkcheck.com', config_file='_example/linkcheck.rc') print(broken_links)