Skip to main content

Posts

Showing posts with the label sitemap

How to generate sitemaps using python?

Hello, I am writing this post because I wanted to share how I created a sitemap for my blog using python . I will first explain you what a sitemap is, then continue why I used my own python script instead of other free web apps available online and finally end this post by giving you a tutorial on how to create sitemap for your blog using python. Okay folks fasten your seat belts and get ready for takeoff ;) What is sitemap? According to wikipedia:  A site map (or sitemap) is a list of pages of a web site accessible to crawlers or users. It can be either a document in any form used as a planning tool for Web design, or a Web page that lists the pages on a Web site, typically organized in hierarchical fashion. To be simple sitemap gives you a list of all the links that correspond to your website. For example you can see the sitemap of this blog from here: Radiusofcircle But why do we need sitemap ?   Even though they are usually used for improving the search e...