Metadata-Version: 1.0
Name: pysitemap
Version: 0.5
Summary: A Python library for generating sitemap
Home-page: https://github.com/vitalvas/pysitemap
Author: VitalVas
Author-email: UNKNOWN
License: BSD
Description: PySitemap
        =========
        
        A Python library for generating a sitemap
        
        
        
        Latest Version
        --------------
        The latest version of this project can be found at : http://github.com/vitalvas/pysitemap.
        
        
        Installation
        ------------
        * Option 1 : Install via pip ::
        
        	pip install pysitemap
        
        * Option 2 : If you have downloaded the source ::
        
        	python setup.py install
        
        
        Documentation
        -------------
        How to use? ::
        
        	from pysitemap import SiteMap
        	from datetime import datetime
        
        	site = SiteMap()
        	site.add(
        		loc='http://example.com/webhp', 
        		lastmod=datetime.now(), 
        		changefreq='weekly')
        
        	print site.to_string()
        
        
        Reporting Bugs
        --------------
        Please report the bugs at github issue tracker.
        https://github.com/vitalvas/pysitemap/issues
        
        
        Author
        ------
        VitalVas <source@vitalvas.com>
        Vitaliy Vasilenko
        
        * http://github.com/vitalvas
        * http://www.vitalvas.com
        
Keywords: sitemap xml
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
