Hello, I'm author of elFinder.py In about a month we plan to release new version of elFinder, mostly bugfixes but I also plan to rewrite python version to be more library like.
I know there are problems integrating elfinder with different frameworks on python, current version was written for use under pure CGI. This is my first major experience with python and so I have many questions about the "right way" how to write connector so it can be easy to integrate and write plugins. The biggest question to me is how to implement handling POST and GET data, I've seen many different ways how it is done in different frameworks. Currently this is done using: import cgi self._form = cgi.FieldStorage() Maybe I should put this outside elFinder.py and only pass parameters to connector? Feedback is welcome.