1475
Comment:
|
2424
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
I am currently working on a RESTful interface to be used mainly as the framework for web services. Since it is WSGI compliant it can be used with any WSGI server. I would recommend [[http://code.google.com/p/modwsgi/|mod_wsgi]] as it is extremely fast, light weight, and easy to deploy. I have not checked my code into a repository as of yet. Soon, I promise!! | I am currently working on a RESTful interface to be used mainly as the framework for web services. Since it is WSGI compliant it can be used with any WSGI server. I would recommend [[http://code.google.com/p/modwsgi/|mod_wsgi]] as it is extremely fast, light weight, easy to deploy and you get all the benefits of Apache. Done or working on as of November 01, 2008: * Core WSGI framework * HTTP Authentication (Basic only for now) * User authorization (using the backend of your choice) * Accept request header redirection to the representation of your choice. * Logging independent of sys logs. * A User account example site using SQLite. * XML serializer/deserializer. * Auto generation tool for creating classes from a database if not using an ORM. TODOs: * HTTP Digest Authentication. * Auto generation tool for creating dependencies for the global configuration file. [[http://tetrasys.homelinux.org/cgi-bin/viewvc.cgi/RestFramework/|CVS Repository]] [[http:/wiki-htdocs/external/WSGIRestfulDocs/index.html|API Docs]] |
Line 9: | Line 29: |
I have never officially released this code as open source, however, if I get enough encouragement I may. It was basically a medium for testing out a few thoughts, but is a very functional Chat Server. The only client works on the command line, but shows what would need to be done for any client. It would need some sort of client agent or maybe Ajax. The backend is an XML-RPC server. | I have never officially released this code as open source, however, if I get enough encouragement I may. It was basically a medium for testing out a few thoughts, but is a very functional Chat Server. The only client available is a command line app., but shows what would need to be done for any client. |
Line 11: | Line 31: |
[[http:../cgi-bin/viewvc.cgi/chatserv/|CVS Repository]] | In general the chat server would need some sort of client agent. The backend is an XML-RPC server. [[http://tetrasys.homelinux.org/cgi-bin/viewvc.cgi/chatserv/|CVS Repository]] |
Line 18: | Line 40: |
[[http:../home/AjaxStub/ajaxstub.py|API Home Page]] | [[http://tetrasys-design.net/home/AjaxStub/ajaxstub.py|API Home Page]] |
Line 20: | Line 42: |
[[http:../cgi-bin/viewvc.cgi/ajaxstub/|CVS Repository]] | [[http://tetrasys.homelinux.org/cgi-bin/viewvc.cgi/ajaxstub/|CVS Repository]] |
Line 27: | Line 49: |
[[http:../home/Linklist|API Home Page]] | [[http://tetrasys-design.net/home/Linklist/|API Home Page]] |
Line 29: | Line 51: |
[[http:../cgi-bin/viewvc.cgi/OpenSource/linklist/|CVS Repository]] | [[http://tetrasys.homelinux.org/cgi-bin/viewvc.cgi/OpenSource/linklist/|CVS Repository]] == Electronic Parts Inventory Application == [[http://inventory.homelinu.org| Django Based Electronic Parts Inventory]] |
Projects
RESTful Python Web Service using WSGI
I am currently working on a RESTful interface to be used mainly as the framework for web services. Since it is WSGI compliant it can be used with any WSGI server. I would recommend mod_wsgi as it is extremely fast, light weight, easy to deploy and you get all the benefits of Apache.
Done or working on as of November 01, 2008:
- Core WSGI framework
- HTTP Authentication (Basic only for now)
- User authorization (using the backend of your choice)
- Accept request header redirection to the representation of your choice.
- Logging independent of sys logs.
- A User account example site using SQLite.
- XML serializer/deserializer.
- Auto generation tool for creating classes from a database if not using an ORM.
TODOs:
- HTTP Digest Authentication.
- Auto generation tool for creating dependencies for the global configuration file.
Chat Server
I have never officially released this code as open source, however, if I get enough encouragement I may. It was basically a medium for testing out a few thoughts, but is a very functional Chat Server. The only client available is a command line app., but shows what would need to be done for any client.
In general the chat server would need some sort of client agent. The backend is an XML-RPC server.
AjaxStub
This API provides a way to auto generate JavaScript stubs in your HTML that communicates with a Python web service. It is essentially an RPC style service.
Doubly Linked List API
This is one of my first open source projects and is still seeing quite a few downloads. It's an API for a doubly link list written in C.