views:

189

answers:

2

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.

A: 

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

Dominic Rodger
+2  A: 

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

lost-theory