XtGem Forum catalog
AgooHttp.atspace.com is the evolution of the old project LocaWapp (Localhost Web Applications).
AgooHttp is made by Python.org

Features

  • Python Web Applications
  • Multi-thread Socket
  • Application AOP-Server
  • Ajax Design
  • Simple Framework
  • Configured with AproLang (A Property Language)

Starting Server

Default 8080 127.0.0.1:
python agoohttp.py
Change the port:
python agoohttp.py 8081
Change the port and the IP:
python agoohttp.py 8080 127.0.0.2
Browse on default: http://localhost:8080/

Your Application

See myApp and to create yourApp:
agooApps/yourApp/__init__.py
For example:
class AgooHttp:

	# default function
	defaultFun = 'hello'

	def hello(self,req)
		req.response(

Hello Dunia

# reserved instance name agoohttp = AgooHttp()