Sitemap3
Sitemap3 is an async sitemap generation utility written in Python 3.5.
It currently generates a list of urls and either outputs them or writes them to a file.
Install
pip install sitemap3
or
git clone git@github.com:konstantinfarrell/sitemap3.git
cd sitemap3
python setup.py install
Don't forget a virtualenv
Usage
From the shell
sitemap --u <url>
sitemap --u <url> --w <output>
Within a script
from sitemap import sitemap
url = 'https://konstantinfarrell.github.io'
results = sitemap(url)
TODO
KNOWN BUGS
- Larger sites may cause program to timeout