This application consists of a web service with an endpoint that receives a request
and returns requested data about the author of books and a webapp to consult the information
about the author by entering the name in the application.
- Python
- Django
- Dajngo-rest-framework s
- HTML5
- Boostrap
For testing purposes, I suggest using virtualenv and installing the necessary libraries using the requirements.txt file.
Once the server is up using postman, you can make a GET request to the endpoint
with the name of the author to consult using the following format:
endpoint: http://127.0.0.1:8000/books/
{
"author": "garcia marquez"
}
You should receive a JSON with the information of the query or with the status code if the query fails.
http://127.0.0.1:8000/qbooks/
In the webapp a table will be displayed with the author's books or books about the consulted author.
- Nasser Abuchaibe - NasserAbuchaibe