AgooHttp.atspace.com is the evolution of the old project LocaWapp (Localhost Web Applications).
AgooHttp is made by Python.org
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.pyChange the port:
python agoohttp.py 8081Change the port and the IP:
python agoohttp.py 8080 127.0.0.2Browse on default: http://localhost:8080/
Your Application
See myApp and to create yourApp:agooApps/yourApp/__init__.pyFor example:
class AgooHttp: # default function defaultFun = 'hello' def hello(self,req) req.response(Hello Dunia
# reserved instance name agoohttp = AgooHttp()