Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tomkralidis/pyowssc

Python OGC Web Service Status Checker
https://github.com/tomkralidis/pyowssc

Last synced: 3 days ago
JSON representation

Python OGC Web Service Status Checker

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/tomkralidis/pyowssc.png?branch=master)](https://travis-ci.org/tomkralidis/pyowssc)

Python OGC Web Services Status Checker
======================================

This library implements simple service status checking.

Installation
------------

```bash
virtualenv pyowssc
cd pyowssc
. bin/activate
git clone https://github.com/tomkralidis/pyowssc.git
cd pyowssc
pip install -r requirements.txt
python setup.py build
python setup.py install
```

Running
-------

From command line:
```bash
# initial setup
pyowssc-admin.py init
# add a service
pyowssc-admin.py add_service OGC:WMS http://host/wms
# delete a service
pyowssc-admin.py delete_service http://host/wms
# show simple app (default port 8000)
pyowssc-admin.py run
# show simple app on specific port
pyowssc-admin.py run -p 8881
```