Skip to content

Instantly share code, notes, and snippets.

@toxinu
Created September 24, 2020 01:27
Show Gist options
  • Select an option

  • Save toxinu/feee3461dd8cb0f9200a6586d9ca3275 to your computer and use it in GitHub Desktop.

Select an option

Save toxinu/feee3461dd8cb0f9200a6586d9ca3275 to your computer and use it in GitHub Desktop.
blog/restless-for-building-python-restful-api
from restless.dj import DjangoResource
from restless.preparers import FieldsPreparer
class CountryResource(DjangoResource):
preparer = FieldsPreparer(fields={
'id': 'id',
'name': 'name'})
class PizzaResource(DjangoResource):
preparer = FieldsPreparer(fields={
'id': 'id',
'name': 'name',
'country': 'country.id'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment