├── .gitignore ├── CANGELOG.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.rst ├── composer.json ├── pysitemap ├── __init__.py ├── backends │ ├── __init__.py │ └── sqlite_todo.py ├── base_crawler.py ├── db.py ├── format_processors │ ├── __init__.py │ ├── text.py │ └── xml.py ├── models.py ├── parsers │ ├── __init__.py │ ├── base.py │ ├── lxml_parser.py │ └── re_parser.py ├── rest.py └── validators.py ├── requirements.txt ├── run.py ├── setup.py ├── tests └── __init__.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /CANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/CANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/README.rst -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/composer.json -------------------------------------------------------------------------------- /pysitemap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/__init__.py -------------------------------------------------------------------------------- /pysitemap/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysitemap/backends/sqlite_todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/backends/sqlite_todo.py -------------------------------------------------------------------------------- /pysitemap/base_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/base_crawler.py -------------------------------------------------------------------------------- /pysitemap/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/db.py -------------------------------------------------------------------------------- /pysitemap/format_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysitemap/format_processors/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/format_processors/text.py -------------------------------------------------------------------------------- /pysitemap/format_processors/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/format_processors/xml.py -------------------------------------------------------------------------------- /pysitemap/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/models.py -------------------------------------------------------------------------------- /pysitemap/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysitemap/parsers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/parsers/base.py -------------------------------------------------------------------------------- /pysitemap/parsers/lxml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/parsers/lxml_parser.py -------------------------------------------------------------------------------- /pysitemap/parsers/re_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/parsers/re_parser.py -------------------------------------------------------------------------------- /pysitemap/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/rest.py -------------------------------------------------------------------------------- /pysitemap/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/pysitemap/validators.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | asyncio 3 | aiofile 4 | 5 | lxml 6 | cssselect 7 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haikson/sitemap-generator/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | VERSION = "0.9.13" 2 | --------------------------------------------------------------------------------