vote up 0 vote down star

Any idea of a RESTful APIs in Django for GETTING information from a server?

What I want to do is fetch the errors from the server into a database.

For example:

The Live server has examplewebsite.com, any thing goes wrong with that website should POST the error, where the Django app GET the errors and insert them into the database.

flag

2  
@Jeff how do you know that is his question? You added a lot of "meat" to his question. Where did it come from? – JRob Oct 2 at 21:02
@jrob: From an answer by hkshambesh that was deleted. – nosklo Oct 3 at 1:17

2 Answers

vote up 2 vote down check

Take a look at Piston, which calls itself a 'mini-framework for Django for creating RESTful APIs.'

link|flag
vote up 0 vote down

Are you just trying to fetch data over HTTP? If so, what about urllib2?

link|flag

Your Answer

Get an OpenID
or

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