william-os4y / fapws3

Fast Asynchronous Python Web Server (based on libev)
GNU General Public License v2.0
341 stars 38 forks source link

Support for PUT and DELETE #5

Closed davidnarayan closed 14 years ago

davidnarayan commented 14 years ago

Are support for PUT and DELETE on the roadmap?

william-os4y commented 14 years ago

Fapws is flexible enough to accept what ever command you want. Did you check the sample http_cmd ? http://github.com/william-os4y/fapws3/tree/master/sample/http_cmd/

There I've implemented the TRACE command, but you can add whatever you want.

W.

petersanchez commented 14 years ago

How would this work with something like say Django? For instance, if I have an app with an API running behind the django-piston app, it expects PUT and DELETE commands. Is this possible with fapws3?

william-os4y commented 14 years ago

Sorry, I've never tried such Django app. But If it's wsgi compliant, I don't see why it will not work.

Would be better to ask such question via the mailing list instead of reporting it as an issue.

W.