Skip to main content

Fast Asynchronous Python Web Server

Project description

This is a python web server using the wonderfull libev (http://software.schmorp.de/pkg/libev.html) library. Thus this is yet an another asynchronous web server like Medusa, Twisted, Apricot. And Fapws is a WSGI compliant web server.

What are Fapws2 and Fapws3 about ?

Fapws1, Fapws2 and Fapws3 are “internal” project’s name. The rename correspond to a full re-write.

In the begining I made Fapws1, a Python extension based on the Apricot code. Then, quickly comes the need to have much more features in it, and I’ve called it Fapws2. Fapws1 has never been publically published. Fapws2 is rebuild based on the http library of libevent. Works great, but I’ve been forced to modify the evhttp_handle_request. Despite several mails to the libevent mailing list, no one was agreed to accept my patch to the http code of libevent. Thus, or use use it with libevent <1.3e or you must change the code of libevent before using it for Fapws. This is not a so good way of working ;-(. Than comes Fapws3, a rebuild of Fapws2 without dependencies to http’s API of libevent. At that moment, Marc Lehmann posts, in the libevent mailinglist, a mail describing the creation of a “new” and optimized event’s library similar to libevent: libev. Because the code was much more clean to me and because the documentation provided (http://cvs.schmorp.de/libev/ev.pod) was very clear, I’ve decided to give it a try.

Support for Fapws2 will be strictly limited to bug fixing. My current work will be focused on Fapws3.

Why a new python web server ?

In that case, the usual question is why an new one ? In short, the answer is because it sounds that Apricot is not more maintained, and because Medusa and Twisted can not go as fast as Apricot. Indeed, after several pure performance tests it appears that, thanks to the libevent library used in Apricot, is the fastest python web server.

But that not the only reason. Personnally, I prefer event’s web server. Indeed, such architecture gives more performant web server and with a much more limited memory foot print. You can easly install them into a memory limited machines (like VDS for example).

Philosophy:

Fapws must stay the most simple web server and the fastest. Thus the core of the application is quite limited. Every additional feature will be placed inside a “contrib” sub-directory. This is volontary for disk space “foot print” reasons. Thus Fapws must also facilitate the disk utilisation.

How to install Fapws:

Please read the INSTALL document provided.

How to use Fapws ?

Using Fapws is quite simple and must be done in 4 major steps:

  1. You define the main parameters of your webserve with the method “start” and the method “base”. Unless you really know what you are doing, I strongly suggest to use the “base” module provided within the package.

  2. You define your WSGI python callbacks.

  3. You link the URL path with the python callbacks previously created.

  4. You start you webserver by triggering the “run” method.

  5. As describbed in the Libev documentation, you can controle the Event Loop used. By default Libev estimate what’s the best one for your architecture, but you can overwrite this selection by using the environment variable: LIBEV_FLAGS.

Choices are: 1=select, 2=poll (everywhere except windows), 4=epoll (Linux), 8=kqueue (BSD clones), 16=devpoll (solaris 8), 32=port (solaris 10)

For you help, check the samples.

How to got news about Fapws ?

You will find information concerning Fapws on my own blog: http://william-os4y.livejournal.com/ You can also join us in the Fapws mailing list: http://groups.google.com/group/fapws (because of spams, registration is required).

Where it can run ?

Theoritically anywhere where both Python and Libev are running.

License

Copyright (C) 2009 William.os4y@gmail.com

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

Have fun with Fapws.

William

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fapws3-0.4.dev.tar.gz (26.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page