palewire / django-calaccess-campaign-browser

A Django app to refine, review and republish campaign finance data drawn from the California Secretary of State’s CAL-ACCESS database
http://django-calaccess-campaign-browser.californiacivicdata.org
MIT License
17 stars 12 forks source link

can this app vend a REST api? #209

Closed rkiddy closed 9 years ago

rkiddy commented 9 years ago

Does django provide an easy way to publish data via REST web services? If it did, that would be great. If not, would it make sense to suggest this as another project, as opposed to an issue in this one?

palewire commented 9 years ago

There are steps in this direction now with tastypie here

aboutaaron commented 9 years ago

FWIW, Django REST Framework seems to be the new darling for build REST APIs in Django. It even comes with a web interface a la the Django Admin to test queries.

I've historically used Django Tastypie for APIs but would probably use Django REST for new projects.