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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#!/usr/bin/python
#
# Copyright (c) The PyAMF Project.
# See LICENSE.txt for details.
"""
Ohloh API example server for Flash.
@since: 0.3.1
"""
import ohloh
services = {
'ohloh.account': ohloh.getAccount
}
if __name__ == '__main__':
import logging
from optparse import OptionParser
from wsgiref import simple_server
from pyamf.remoting.gateway.wsgi import WSGIGateway
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s %(levelname)-5.5s [%(name)s] %(message)s'
)
parser = OptionParser()
parser.add_option("-p", "--port", default=8000,
dest="port", help="port number [default: %default]")
parser.add_option("--host", default="localhost",
dest="host", help="host address [default: %default]")
(options, args) = parser.parse_args()
host = options.host
port = int(options.port)
gw = WSGIGateway(services, logger=logging)
httpd = simple_server.WSGIServer((host, port),
simple_server.WSGIRequestHandler,
)
httpd.set_app(gw)
print "Running Ohloh API AMF gateway on http://%s:%d" % (host, port)
try:
httpd.serve_forever()
except KeyboardInterrupt:
pass
|