I have started using django-piston for creating APIS but I am having trouble finding documentation on how to consume the API from inside django with python. I have seen examples using javascript.

So far I am using urllib to access the API but I wonder if this is the best approach.

I appreciate your input on this!

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If this is an internal API -- that is, you/your views and the API have the same access to resources -- why are you consuming the API rather than getting its results normally (through model manipulation, etc)? If you want to avoid code duplication, break out common code into separate functions that can be used by both processes.

If this is an external API -- for example, your site is communicating with BitBucket -- an HTTP client is about the only (sane) way to go about consuming it. Though I personally would choose httplib over urllib.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.