Sitemap generator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Kamo Petrosyan 3e5209802e mechanize removed 6 years ago
pysitemap mechanize removed 6 years ago
tests mechanize removed 6 years ago
.gitignore mechanize removed 6 years ago
LICENSE Initial commit 8 years ago
NOTICE Create Notice 8 years ago
README.md Code cleanup 7 years ago
composer.json Update composer.json 8 years ago
requirements.txt mechanize removed 6 years ago
run.py Code cleanup 7 years ago
setup.py mechanize removed 6 years ago
sitemap.xml Multiprocessing version 0.3.4 8 years ago

README.md

pysitemap

Sitemap generator

installing

pip install sitemap-generator

Gevent

Sitemap-generator uses gevent to implement multiprocessing. Install gevent:

pip install gevent

example

import pysitemap
if __name__ == '__main__':
    url = 'http://www.example.com/'  # url from to crawl
    logfile = 'errlog.log'  # path to logfile
    oformat = 'xml'  # output format
    crawl = pysitemap.Crawler(url=url, logfile=logfile, oformat=oformat)
    crawl.crawl()

multiprocessing example

import pysitemap
if __name__ == '__main__':
    url = 'http://www.example.com/'  # url from to crawl
    logfile = 'errlog.log'  # path to logfile
    oformat = 'xml'  # output format
    crawl = pysitemap.Crawler(url=url, logfile=logfile, oformat=oformat)
    crawl.crawl(pool_size=10)  # 10 parsing processes