Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tomkralidis/pyowssc
- Owner: tomkralidis
- License: mit
- Created: 2011-09-11T18:30:19.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-09-08T20:34:15.000Z (over 10 years ago)
- Last Synced: 2024-11-09T00:39:11.468Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```