1 file was added to this release more than 14 days after its initial publication. Inspect the release files before installing.
SitemapGen
A Command line tool to let you easily create XML sitemaps from a website's URL
Installing
- PIP: run
pip install sitemapgen - Without PIP:
- Clone this repository by running:
git clone https://github.com/Nalin-Angrish/SitemapGen.git
Or download it as ZIP. cdinto the downloaded directory bycd SitemapGen.- Run
python setup.py install.
- Clone this repository by running:
Usage
CLI
- After you have installed the library, fire up a Terminal/Command Prompt and type
sitemapgen --help. This command will show you the description of the library and the available options for using the command.
SitemapGen v0.9.9 - By Nalin Angrish.
A general utility script for generating site XML sitemaps.
Options:
--version | Show the tool version
--help | Show this message and exit.
--url <url> | Specify a website url to generate a sitemap from.
--out <path> | Specify an output file for the sitemap.
--disguise <url> | Specify a disguise URL for use in the sitemap. Useful when you are creating sitemap for a local website before hosting it.
When Running the command, you need to specify the '--url' and the '--out' parameters while the '--disguise' parameter is optional.
Also, running the command with --version or --help will lead to the suppression of other parameters.
- To know the version of the tool, run
sitemapgen --version
SitemapGen v0.9.9 - By Nalin Angrish.
- To create a sitemap for a website, run
sitemapgen --url <URL of website> --out <Path to output sitemap>. The URL specified here should not be blocked by a firewall and should be a complete URL. For example:localhostwould not be valid and you would have to usehttp://localhost. If the output file specified does not exists, then it will be created. You can specify the output path as either a relative path to the current working directory or even an absolute path. - Sometimes, when you create a sitemap for a website in development, you need to use a different domain in the sitemaps than the development domain. For example, while developing, the
--urlwould be specified ashttp://localhost:portwhereas, in the sitemap you might need to use a domain likehttp://www.example.com. In such cases, you can provide another option to the command line arguments by adding:--disguise http://www.example.com. It is always prefered to usehttpinstead ofhttpsto avoid any future issue with the SSL certificate installation. So, the tool will automatically use thehttpversions of the sites
Programatically
The library provides a Generator class that can be used to generate a sitemap of a given URL. This is an example of how to use the Generator class:
from sitemapgen import Generator # Import the Generator class
generator = Generator(site="http://localhost", output="sitemap.xml", disguise="http://www.example.com") # Create a generator instance where:
# site = The site to generate a sitemap of. (required)
# output = The path of the output file. (required) If the sitemap is not be written to a file, just set it to an empty string.
# disguise = The url to disguise the sitemap for. (optional)
urls = generator.discover() # Discover all URLs possible from the "site" specified during initialization.
# This function returns the URLs discovered but it's return value can also be ignored if the urls don't matter
# (If they are ultimately going to be written to a file)
# Returns a list
sitemap = generator.genSitemap() # Generate a String sitemap from the URLs discovered before. Should only be used after calling generator.discover()
# This function returns the generated sitemap but it's return value can also be ignored if the sitemap is just to be written to a file.
# Returns a String
generator.write() # Write to the output file specified. No return value.
To read the code documentation, go here
Release files for sitemapgen 0.9.9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
File added late
1 file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release files before installing.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| sitemapgen-0.9.9.tar.gz | 6.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| sitemapgen-0.9.9-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:14.1 kB
Release files / sitemapgen-0.9.9.tar.gz
| Download URL | sitemapgen-0.9.9.tar.gz |
|---|---|
| Size | 6.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0287289d84a1d6894f684cf6bde75c86401718220f3cabb39040e14cb7c84411
|
|
BLAKE2b-256 checksum How to use checksums |
134a14175ce6b36840d486e9e32ec0ca4ff88cd1d27973da11c29ca4dd352ae6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/54.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.0
|
Release files / sitemapgen-0.9.9-py3-none-any.whl
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | sitemapgen-0.9.9-py3-none-any.whl |
|---|---|
| Size | 7.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a87544eb9c834d1510e87dfb83e74d6ca0e74b06a1460c992bb36b09e5fc83b6
|
|
BLAKE2b-256 checksum How to use checksums |
8f106d61e096eb37a1b7fda37911a7d189019dc1573c418cd665b507bb6fac20
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/54.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.0
|