supermorecado

raw JSON →
0.2.0 verified Fri May 01 auth: no python

Extends morecantile with additional CLI commands for managing and inspecting tile matrix sets. Version 0.2.0, supports Python >=3.11, maintained by Development Seed. Release cadence is intermittent.

pip install supermorecado
error ImportError: cannot import name 'SomeClass' from 'supermorecado'
cause supermorecado does not export many Python classes; it is primarily a CLI tool.
fix
Use the CLI via supermorecado --help or import the cli module as shown in quickstart.
error ModuleNotFoundError: No module named 'morecantile'
cause Missing dependency morecantile
fix
Install morecantile: pip install morecantile or reinstall supermorecado which should pull it automatically.
gotcha supermorecado is a CLI tool extension for morecantile; direct Python usage is limited and not documented. Most functionality is exposed via command line.
fix Use the CLI via `python -m supermorecado` or install as a script.
deprecated Version 0.2.0 removed some experimental commands. Check changelog for migration.
fix Review the GitHub releases for details on removed commands.

Import and quickly inspect the CLI commands.

import supermorecado
from supermorecado import cli
# Example: list available commands
print('supermorecado CLI commands:', dir(cli))