/usr/lib/python2.7/dist-packages/pywps/wpsserver.py is in python-pywps 4.0.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | """
Abstract Server class
"""
##################################################################
# Copyright 2016 OSGeo Foundation, #
# represented by PyWPS Project Steering Committee, #
# licensed under MIT, Please consult LICENSE.txt for details #
##################################################################
from abc import abstractmethod, ABCMeta
from contextlib import contextmanager
import shutil
import tempfile
@contextmanager
def temp_dir():
"""Creates temporary directory"""
tmp = tempfile.mkdtemp()
try:
yield tmp
finally:
shutil.rmtree(tmp)
class PyWPSServerAbstract(object):
"""General stub for the PyWPS Server class.
"""
__metaclass__ = ABCMeta
route_base = '/'
@abstractmethod
def run(self):
raise NotImplementedError()
|