Skip to main content

Verify that all the external/absolute links within a web page work correctly.

Project description

Links verification

Verify that all the external/absolute links within a web page work correctly.

Install

$ pip install links-verification

How to use

from links_verification import verify

my_verify = verify.Verify ("https://www.url_example.com")


# PRINT INFORMATION

# Print all links functional links, error links and the problem of the error links
my_verify.print_all_links()

# Print only the functional links
my_verify.print_functional_links()

# Print only the error links and their errors
my_verify.print_error_links()


# SAVE INFORMATION IN FILE

# External file absolute path
my_file = os.path.join (os.path.dirname(__file__), "ouput.txt")

# Save in external text file all links and the problem error links
my_verify.save_all_links(my_file)

# Save in external text file only the functional links
my_verify.save_functional_links (my_file)

# Save in external text file only the error links and their errors
my_verify.save_error_links (my_file)


# RETURN INFORMATION

# Return a dictionary with the keywords: "functional" and "erros", whitch contains the link list
links = my_verify.return_all_links()

# Retiurn only the functional links in a list
links = my_verify.return_functional_links()

# Return only the error links and their errors in a list
links = my_verify.return_error_links()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

links_verification-1.0.1.tar.gz (3.6 kB view details)

Uploaded Source

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page