diff --git a/README.md b/README.md
index 1ebdbdcb35812fa89ac24d46b31d27a810349794..99340c790242facd727f41e6c44105b89844cd8a 100644
--- a/README.md
+++ b/README.md
@@ -190,3 +190,14 @@ class VetCommentaryRequestsTest(TestCase):
         # Write your tests here
 
 ```
+
+## Django-extensions
+[django-extensions](https://github.com/django-extensions/django-extensions) provide added commands like
+`./manage.py shell_plus`, which preloads all models in a shell session. Additional imports may be specified in `settings.py` as follows:
+
+```python
+SHELL_PLUS_POST_IMPORTS = (
+    ('theses.factories', ('ThesisLinkFactory')),
+    ('comments.factories', ('CommentFactory')),
+)
+```