{ "info": { "author": "Florian Diesch", "author_email": "devel@florian-diesch.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Natural Language :: English", "Natural Language :: German", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "What is ApeSmit?\n================\n\nApeSmit is a very simple Python module to create XML sitemaps\nas defined at http://www.sitemaps.org. ApeSmit doesn't contain any web\nspider or something like that, it just writes the data you provide to\na file using the proper syntax.\n\n\nUsage\n=====\n\nFirst we create an instance of `SiteMap`:\n\n>>> sm=Sitemap(changefreq='weekly')\n\nThe ``changefreq`` keyword sets a default value for that parameter.\n\nNow we add some URL's to our sitemap:\n\n>>> sm.add('http://www.example.com/')\n\nWe may use some parameters:\n\n>>> sm.add('http://www.example.com/news/', changefreq='daily',\n... priority=1.0,\n... lastmod='1891-1-1')\n\nThere's a shortcut for URL's that changed today:\n\n>>> sm.add('http://www.example.org/about.html', lastmod='today')\n\nThat's all for now. Next we need a file to write the sitemap in:\n\n>>> out=open('sitemap.xml', 'w')\n\nNow we write our sitemap and then close the file:\n\n>>> sm.write(out)\n>>> out.close()\n\nAnd that's the content of our shiny new sitemap::\n\n \n \n \n http://www.example.com/\n weekly\n \n \n http://www.example.com/news/\n 1891-1-1\n daily\n 1.0\n \n \n http://www.example.org/about.html\n 2008-04-03\n weekly\n \n ", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.florian-diesch.de/software/apesmit/", "keywords": "sitemap XML WWW web site", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "apesmit", "package_url": "https://pypi.org/project/apesmit/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/apesmit/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://www.florian-diesch.de/software/apesmit/" }, "release_url": "https://pypi.org/project/apesmit/0.01/", "requires_dist": null, "requires_python": null, "summary": "simple Python module to create XML sitemaps", "version": "0.01" }, "last_serial": 51347, "releases": { "0.01": [] }, "urls": [] }