ArcGIS Server REST Admin API Proxy
Project description
agsadmin provides a convenient Python front-end to several REST calls on the ArcGIS Server 10.1+ REST Admin API.
Features
Map/Geoprocessing Services
start and stop
get statistics
get status
get or set the item info (description, summary, tags, etc.)
set service properties
Machines
start and stop
System
Directories
list directories
register new directories
unregister directories
clean directories
Uploads
list uploads
get a specific upload item
upload a file
These functions can be used to automate management of ArcGIS Services (e.g. start/stop services on a schedule, start/stop services to perform maintenance on associated datasets, etc.)
Example
The following is a simplistic example to stop and start a map service.
import agsadmin
hostname = "<ServerNameHere>"
username = "<UsernameHere>"
password = "<PasswordHere>"
rest_admin = agsadmin.RestAdmin(hostname, username, password)
service = rest_admin.services.get_service("<MapServiceNameHere>", "MapServer", "<OptionalFolderHere>")
service.stop_service()
service.start_service()
service.delete()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for agsadmin-0.3.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 154a47c129b1c4f7b08643c0dc6c32d5364d3be7d4f71a511abb409fa53a0126 |
|
MD5 | 721dc81bdcee8b4fb2816b91e68645f7 |
|
BLAKE2b-256 | b8abbe8e1844b801d6525f496b277b7b6a9cbbdb44a415e94f284a71973722d3 |