You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/index.md
+12-9
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ cd building-your-first-api-with-django-and-django-rest-framework
92
92
uv venv
93
93
source .venv/bin/activate # if you are on Windows use: .venv\Scripts\activate
94
94
uv sync
95
-
task run# to see the application running
95
+
task r# to see the application running
96
96
```
97
97
98
98
You might be able to see the application running o [127.0.0.1:8000](http://127.0.0.1:8000/).
@@ -243,7 +243,7 @@ def index(_request):
243
243
return HttpResponse("My first API!")
244
244
```
245
245
246
-
So no you can use the command `task r` to start our django server, so you can access [http://127.0.0.1:8000/](http://127.0.0.1:8000/) to see it.
246
+
So now you can use the command `task r` to start our django server, so you can access [http://127.0.0.1:8000/](http://127.0.0.1:8000/) to see it.
247
247

248
248
249
249
Until here we just looked at Django concepts. Now we will dive into Django Rest Framework(DRF) concepts.
@@ -278,9 +278,9 @@ class ArtistSerializer(serializers.HyperlinkedModelSerializer):
278
278
2. Create hyperlinks for the relationships
279
279
4. We need to pass explicitly the fields from the Artist model that will be in the serializer at the `fields` in the Meta class.
280
280
281
-
With the serializer in place we need more 2 steps, the url mapping and the view.
281
+
With the serializer in place we need more 2 steps, the view and the url mapping.
282
282
283
-
Let's do both in sequence, first the view. For the view we are going to use a [ModelViewSet](https://www.django-rest-framework.org/api-guide/viewsets/#modelviewset). Inside our file `music.views.py` we need to add this snipper.
283
+
Let's do both in sequence, first the view. For the view we are going to use a [ModelViewSet](https://www.django-rest-framework.org/api-guide/viewsets/#modelviewset). Inside our file `music.views.py` we need to add this snippet.
284
284
285
285
```python
286
286
# music/views.py
@@ -290,7 +290,7 @@ class ArtistViewSet(viewsets.ModelViewSet):
290
290
serializer_class = ArtistSerializer
291
291
```
292
292
293
-
1. Here we create a ViewSet class that will be responsible to create our CRUD(+ list) views. It inherits from `ModelViewSet`.
293
+
1. Here we create a ViewSet class that will be responsible for creating our CRUD(+ list) views. It inherits from `ModelViewSet`.
294
294
2.`queryset` parameter tells DRF what do list, this will be shared across all the views
295
295
3.`serializer_class` is self-explanatory
296
296
@@ -352,7 +352,7 @@ Congratulations now you have your first api working.
352
352
353
353
Now that you've explored some of the shortcuts provided by DRF, let's delve into creating an endpoint for the album model using a plain Serializer, without relying heavily on shortcuts.
354
354
355
-
Let's start by the urls part. We gonna need to add the new route to our `music.urls.py`. Now it should look like this.
355
+
Let's start by the urls part. We're going to need to add the new route to our `music.urls.py`. Now it should look like this.
356
356
357
357
```python
358
358
from django.urls import path, include
@@ -386,6 +386,8 @@ class AlbumViewSet(viewsets.ViewSet):
386
386
1. Here we create a class `AlbumViewSet` inheriting from `views.ViewSet`, pay attention, this is not a model view set.
387
387
2. Set the `queryset`
388
388
3. Set `serializer_class`, we are going to talk about this `AlbumSerializer` later
389
+
4. For now, just import the `AlbumSerializer` with `from music.serializers import AlbumSerializer`
390
+
5. Don't forget to import the Album model here with `from music.models import Album`
389
391
390
392
After this still in the same view we are going through what DRF call actions.
391
393
Instead of have methods in the view set for get, post, delete... It has functions based on actions. The actions are the ones below:
@@ -441,7 +443,7 @@ First the `list` method.
441
443
return Response(serializer.data)
442
444
```
443
445
444
-
1. Here we just need to serialize the queryset and return it as a
446
+
1. Here we just need to serialize the queryset and return it as a`Response`
445
447
2. Don't forget to import the `from rest_framework.response import Response`
1.Where we create the album but since the album has artist as a nested model we need to create it here before try to save the album itself.
543
+
1.We create the album, but since the album has artist as a nested model, we need to create it here before try to save the album itself.
542
544
2. Don't forget to import the `Album` model here with `from music.models import Album`
543
545
544
546
and the `update` method
@@ -592,9 +594,10 @@ urlpatterns = [
592
594
]
593
595
```
594
596
595
-
After this we are going to create the `SongViewSet` in our `music.views` file using a `ModelViewSet` like in the snippet below. Also update Don't forget to add the import for the`SongSerializer` in your imports
597
+
After this we are going to create the `SongViewSet` in our `music.views` file using a `ModelViewSet` like in the snippet below. Also update Don't forget to add the import for `Song` and`SongSerializer` in your imports
596
598
597
599
```python
600
+
from music.models import Artist, Album, Song
598
601
from music.serializers import ArtistSerializer, AlbumSerializer, SongSerializer
0 commit comments