corepost icon indicating copy to clipboard operation
corepost copied to clipboard

REST micro-framework for Python Twisted with multi-core support

Results 7 corepost issues
Sort by recently updated
recently updated
newest added

Hi it seems you are no longer willing to maintain this project? I am willing to take it over.

I follow this tutorial http://jacek99.github.io/corepost/doc/build/html/url_routing.html and got stucked with "URL not found" error. Finally I figure out what's wrong. If I replace this line: ``` app = RESTResource((RESTService,)) ``` with...

Fix index out of range unandled exception when request.postpath is an empty list

I'm using Corepost (which is great by the way) to build a Twisted application for a REST API. I coded up a response filter and passed it to to the...

I am trying corepost. Looks great! With the following code running, a call to http://0.0.0.0:8000/test results to status=404, body=URL '/test' not found. It should be: status = 200, body =...

When calling something like `/delete/project?version=1&version=2`, version parameter is 1 and 2 is omitted. ``` python @route("/", Http.DELETE) def delete(self, request, pk, version=None, **kwargs): #version is 1 and should be a...