Socket
Socket
Sign inDemoInstall

sitemap-maker

Package Overview
Dependencies
3
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sitemap-maker

Python tool to generate sitemap XML files


Maintainers
1

Readme

sitemap_maker

|Pypi| |Build Status| |codecov| |MIT licensed|

Python tool to generate sitemap XML files.

This tool relies mainly on the Python crawler sitecrawl <https://github.com/gabfl/sitecrawl>__.

Installation

Using pip:

.. code:: bash

pip3 install sitemap_maker

sitemap_maker --help

Or build from sources:

.. code:: bash

Clone project

git clone https://github.com/gabfl/sitemap_maker && cd sitemap_maker

Installation

pip3 install .

Usage


.. code:: bash

   sitemap_maker --url https://www.weather.gov/ \
       --sitemap output.xml \
       --depth 1 \
       --max 5 \
       --no_pound \
       --verbose

   # For help:
   # sitemap_maker --help

Will create a file ``sitemap.xml``:

.. code:: xml

   <?xml version="1.0" encoding="UTF-8"?>
   <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
     <url>
       <loc>https://www.weather.gov</loc>
     </url>
     <url>
       <loc>https://www.weather.gov/wrh/climate</loc>
     </url>
     <url>
       <loc>https://www.weather.gov/safety/flood</loc>
     </url>
     <url>
       <loc>https://www.weather.gov/safety/tsunami</loc>
     </url>
     <url>
       <loc>https://www.weather.gov/safety/beachhazards</loc>
     </url>
   </urlset>

.. |Pypi| image:: https://img.shields.io/pypi/v/sitemap_maker.svg
   :target: https://pypi.org/project/sitemap_maker
.. |Build Status| image:: https://github.com/gabfl/sitemap_maker/actions/workflows/ci.yml/badge.svg?branch=main
   :target: https://github.com/gabfl/sitemap_maker/actions
.. |codecov| image:: https://codecov.io/gh/gabfl/sitemap_maker/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/gabfl/sitemap_maker
.. |MIT licensed| image:: https://img.shields.io/badge/license-MIT-green.svg
   :target: https://raw.githubusercontent.com/gabfl/sitemap_maker/main/LICENSE


FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc