Start a Django project First, we’re going to create a new Django project named rapid-api-practice. Then, within that project, we will create a new app called api. Although this may seem odd at first, the “Django way” is to house an app, or more than likely multiple apps, within a single “project.”
Read moreIs Django an API?
Traditionally, Django is known to many developers as an MVC Web Framework, but it can also be used to build a backend, which in this case is an API .
Read more