1

Is there any lightweight Python server for embedded processors ( to 10 MB )? Do I need any framework for developing pages on this small server or can I do that in plain Python?

ire_and_curses
  • 68,372
  • 23
  • 116
  • 141
Cherylin
  • 29
  • 2
  • 4
  • 7
    dup ? http://stackoverflow.com/questions/302615/embedded-web-server-in-python – Nix Mar 10 '11 at 23:14
  • 1
    Could you specify which embedded processor you're using? Python would have to run on that processor, for starters. – Nate Mar 10 '11 at 23:23

1 Answers1

3

bottle.py might be what you're looking for. It is a light-weight framework, as well as a server.

web.py is similar.

I'm not sure of your exact needs or requirements, but they are two good options to investigate.

Ezra
  • 7,552
  • 1
  • 24
  • 28