Skip to content

Commit 353eabd

Browse files
committed
(docs): add Related Libraries section
- kind of self-promotion, though they were built together for a similar purpose of building an ad-hoc API with Django - but they could be used separately and for other reasons
1 parent 88146c0 commit 353eabd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Django classes to make your models, managers, and querysets serializable, with b
1010
I. [Installation](#installation) <br />
1111
II. [Usage](#usage) <br />
1212
III. [How it Works](#how-it-works) <br />
13-
IV. [Backstory](#backstory)
13+
IV. [Related Libraries](#related-libraries) <br />
14+
V. [Backstory](#backstory)
1415

1516

1617
## Installation
@@ -217,6 +218,14 @@ In order to recurse over relations / joins, it accepts the same arguments as the
217218
I'd encourage you to read the source code, since it's shorter than this README :)
218219

219220

221+
## Related Libraries
222+
223+
1. [django-api-decorators](https://github.com/agilgur5/django-api-decorators)
224+
- `Tiny decorator functions to make it easier to build an API using Django in ~100 LoC`
225+
226+
227+
<br>
228+
220229
## Backstory
221230

222231
This library was built while I was working on [Yorango](https://github.com/Yorango)'s ad-hoc API. Writing code to serialize various models was complex and quite tedious, resulting in messy spaghetti code for many of our API methods. The only solutions I could find online were the [Django Full Serializers](http://code.google.com/p/wadofstuff/wiki/DjangoFullSerializers) from [wadofstuff](https://github.com/mattimustang/wadofstuff) as well as some recursive `model_to_dict` snippets online -- none of which gave the option for customizable whitelists and blacklists on a per Model basis.

0 commit comments

Comments
 (0)