vote up 1 vote down star
3

I'm writing a new one (for Netflix), and am simply wondering if there are any great reference libraries for me to study.

In particular I'm looking for clever ways to express a single REST endpoint in code, which needs a least a URL, method, and params, and in the case of Netflix, information about the authentication level required.

To be clear, I am looking for idiomatic and well-written Python libraries covering REST APIs. If the library is blazing fast, but is difficult to use and/or poorly written, I'm probably less interested.

flag

80% accept rate
Other than urllib2? – S.Lott Aug 17 at 14:26

1 Answer

vote up 2 vote down check

Is what you have in mind something like this, this and this? Because as you can see from these good examples there isn't exactly a perfect meeting of minds regarding the best style to use for the purpose, though the differences aren't terrible. Or do you want a discussion of the pros and cons rather than simply good examples as you ask?

Disclaimer: haven't really dug into the internals of these APIs to check whether they're "well written" -- I'm judging them strictly in terms of "how do they look from the outside". It seems to me that this is a good criteria -- if the implementation has some oopses, those can be fixed much more easily and seamlessly than if the API itself, i.e. the publically visible and published interface, does!-)

link|flag
I'm really looking for any and all best practices for writing a REST api wrapper. The public interface is certainly a very important part of that. Particularly I'm wondering when or if the end user should have to be aware of the URIs and method for each resource. I'll be checking out all three. – Triptych Aug 17 at 15:03
So the general point of agreements for designing such APIs has to be that the URI gets "composed" under the covers and the GET/POST/etc chosen accordingly, else you'd just be using bare httplib or so;-). But how much "thick glue" you want to layer on top of that is less obvious (my instinctive preference is almost always for thin rather than thick, heavily influenced by Raymond's great book "Zen of Unix Programming" or rather by much the same influences that led him to write it;-). – Alex Martelli Aug 17 at 15:27
Accepting this, with the idea that I'll be asking more specific questions about design decisions later on. – Triptych Aug 17 at 18:28
@Alex Martelli if you mean that clients will compose the URIs, then it is RPC, not REST. @Triptych If you want to use REST, the only URI that is hard coded into your client, and given in the API, is the entry-point URI. The rest are discovered through hypertext. – Wahnfrieden Aug 17 at 20:27
@Wahnfrieden. Last I checked, you needed to know the URI for each REST resource. What do you mean the URIs are "discovered through hypertext"? By "hypertext" do you mean HTTP? I'm not sure HTTP is even a necessary condition for RESTful services, nor am I aware of a canonical REST specification. Can you clarify what you're saying? – Triptych Aug 17 at 22:28
show 2 more comments

Your Answer

Get an OpenID
or

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