Skip to content

Fuchida/vamp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A small Python 3 module that scans a page and returns dead links

Installation


git clone https://github.com/Fuchida/vamp.git

virtualenv --distribute --no-site-packages vamp -p /path/to/your/python3

. bin/activate

pip install -r requirements.txt

# Run in Debug mode
python vamp.py http://example.com

API aerial view

from vamp import Vamp

# Setup
crawler = Vamp('http://webpage.com')

# Scan a page or configured site
# if specific page is not specified, index page will be scanned
crawler.scan()

# When a dead link/s is found
>> {"http://example.com/hello.html":404}

# When no dead link/s are found
>> {}

About

A bare bones dead link crawler

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages