Skip to content

Commit 6edc2fd

Browse files
authoredSep 30, 2024··
Merge pull request #1 from fyliu/fix-instructions
Fix for instructions
2 parents 8c96685 + 22ed37d commit 6edc2fd

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed
 

‎docs/index.md

+12-9
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ cd building-your-first-api-with-django-and-django-rest-framework
9292
uv venv
9393
source .venv/bin/activate # if you are on Windows use: .venv\Scripts\activate
9494
uv sync
95-
task run # to see the application running
95+
task r # to see the application running
9696
```
9797

9898
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):
243243
return HttpResponse("My first API!")
244244
```
245245

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.
247247
![my_first_api.png](images/my_first_api.png)
248248

249249
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):
278278
2. Create hyperlinks for the relationships
279279
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.
280280

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.
282282

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.
284284

285285
```python
286286
# music/views.py
@@ -290,7 +290,7 @@ class ArtistViewSet(viewsets.ModelViewSet):
290290
serializer_class = ArtistSerializer
291291
```
292292

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`.
294294
2. `queryset` parameter tells DRF what do list, this will be shared across all the views
295295
3. `serializer_class` is self-explanatory
296296

@@ -352,7 +352,7 @@ Congratulations now you have your first api working.
352352

353353
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.
354354

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.
356356

357357
```python
358358
from django.urls import path, include
@@ -386,6 +386,8 @@ class AlbumViewSet(viewsets.ViewSet):
386386
1. Here we create a class `AlbumViewSet` inheriting from `views.ViewSet`, pay attention, this is not a model view set.
387387
2. Set the `queryset`
388388
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`
389391

390392
After this still in the same view we are going through what DRF call actions.
391393
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.
441443
return Response(serializer.data)
442444
```
443445

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`
445447
2. Don't forget to import the `from rest_framework.response import Response`
446448

447449
The following action will be `create`
@@ -538,7 +540,7 @@ The first is `create`
538540
return Album.objects.create(artist=artist, **validated_data)
539541
```
540542

541-
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.
542544
2. Don't forget to import the `Album` model here with `from music.models import Album`
543545

544546
and the `update` method
@@ -592,9 +594,10 @@ urlpatterns = [
592594
]
593595
```
594596

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
596598

597599
```python
600+
from music.models import Artist, Album, Song
598601
from music.serializers import ArtistSerializer, AlbumSerializer, SongSerializer
599602

600603
class SongViewSet(viewsets.ModelViewSet):

0 commit comments

Comments
 (0)
Please sign in to comment.