Skip to content

Lightweight Python client to interact with GeoServer Cloud REST API, GeoServer ACL and OGC services

License

Notifications You must be signed in to change notification settings

camptocamp/python-geoservercloud

Repository files navigation

python-geoservercloud

Installation

From PyPI:

pip install geoservercloud

From git repository:

poetry install

Quick start

from geoservercloud import GeoServerCloud
geoserver = GeoServerCloud(
    url="http://localhost:9090/geoserver/cloud/",
    user="admin",
    password="geoserver",
)
geoserver.create_workspace("newworkspace")