Skip to content

Commit 070df03

Browse files
committed
new resources for drf and numpy
1 parent e65aa37 commit 070df03

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

content/pages/03-data/17-scipy-numpy.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ following resources are broader walkthroughs for the SciPy ecosystem:
5656
is an awesome resource that shows how to use your basic
5757
Python knowledge to learn how to do vectorization with NumPy.
5858

59+
* [The ultimate beginner's guide to NumPy](https://towardsdatascience.com/the-ultimate-beginners-guide-to-numpy-f5a2f99aef54)
60+
explains how to install and import NumPy, then digs into using arrays for
61+
computation and how to perform operations that get the results you need
62+
for your data analysis.
63+
5964
* [101 NumPy Exercises for Data Analysis](https://www.machinelearningplus.com/101-numpy-exercises-python/)
6065

6166
* [NumPy: creating and manipulating numerical data](http://www.scipy-lectures.org/intro/numpy/index.html)

content/pages/04-web-development/50-django-rest-framework-drf.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ typically abbreviated "DRF", is a Python library for building web
5454
gives a great walkthrough for creating a question polling application
5555
backend with code and the explanation as you build it.
5656

57+
* [Django REST Framework Permissions in Depth](https://nezhar.com/blog/django-rest-framework-permissions-in-depth/)
58+
has code examples and explains permission classes versus authentication
59+
classes in DRF.
60+
5761
* [Optimizing slow Django REST Framework performance](https://ses4j.github.io/2015/11/23/optimizing-slow-django-rest-framework-performance/)
5862

5963
* [TLT: Serializing Authenticated User Data With Django REST Framework](http://gregblogs.com/tlt-serializing-authenticated-user-data-with-django-rest-framework/)

theme/templates/table-of-contents.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ <h4 class="bp"><a href="/django-dispatch-dispatcher-signal-examples.html">django
7777
<h4 class="bp"><a href="/django-forms-examples.html">django.forms</a>
7878
<a href="/django-forms-booleanfield-examples.html">BooleanField</a>,
7979
<a href="/django-forms-charfield-examples.html">CharField</a>,
80-
<a href="/django-forms-choicefield-examples.html">ChoiceField</a>
80+
<a href="/django-forms-choicefield-examples.html">ChoiceField</a>,
81+
<span class="sn">TypedChoiceField</span>
8182
</h4>
8283
<h4 class="bp">django.http
8384
<a href="/django-http-httpresponse-examples.html">HttpResponse</a>

0 commit comments

Comments
 (0)