sitemap-to-sqlite

Fetch data from a site's sitemap.xml into a SQLite table

APACHE-2.0 License

Stars
7

sitemap-to-sqlite

Fetch data from a site's sitemap.xml into a SQLite table

Installation

Install this tool using pip:

pip install sitemap-to-sqlite

Usage

For help, run:

sitemap-to-sqlite --help

You can also use:

python -m sitemap_to_sqlite --help

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

cd sitemap-to-sqlite
python -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest