Hamza Faran

Results 37 comments of Hamza Faran

I will accept pull requests but have not actively worked this for some time now.

You could possibly add this but it doesn't exist. Do you plan to submit valid JSON as query params? Can't say I've used an API that does that in the...

I believe I have an idea for this. Have a container with API much like `tornado.gen.Task`, as follows: ``` python class Callback(object): def __init__(self, func, *args, **kwargs): ... ``` with...

Implementation detail: the actual call will be done through `tornado`'s `yield gen.Task(...)` pattern asynchronously.

> Please think about that I may be want to get different properties from different sources like via AsyncHttpClient oder using Motor (with MongoDB). And maybe I have to prepare...

Hmm, not sure if the test failures here are related to your change; maybe a breaking change in jsonschema. I'll take a look.

@vivekfantain I just pushed #111 which pins some dependencies to fix the failing tests. Can you merge from the latest upstream master? That should fix it.

Hey there! I see where you're coming from on this; the basic routing system that exists by default in Tornado-JSON is very basic [as I've noted in the documentation](http://tornado-json.readthedocs.org/en/latest/restapi.html). That...

Well, what I was getting at with the annotations was that you could automate the usage of those somehow, but yes, that would indeed be circumventing the built-in routing automation...

Thanks for your suggestions! I completely agree with you on the limitations; I believe I have some time over the next month to look into how routing can be made...