cli
cli
allowed_extensions = ('qgz', 'qgs')
module-attribute
allowed_output_formats = ('json', 'xml')
module-attribute
qgs = QgsApplication([], False)
module-attribute
cli() -> None
Just the central cli entry command. Currently, we don't use it, but its here for future content.
Source code in src/qgis_server_light/exporter/cli.py
21 22 23 24 25 26 27 28 | |
export(project: str, unify_layer_names_by_group: bool = False, output_format: str | None = None, pg_service_conf: str | None = None) -> None
Source code in src/qgis_server_light/exporter/cli.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | |