Created
September 24, 2020 01:27
-
-
Save toxinu/feee3461dd8cb0f9200a6586d9ca3275 to your computer and use it in GitHub Desktop.
blog/restless-for-building-python-restful-api
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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