Skip to content

Latest commit

 

History

History
394 lines (334 loc) · 12.3 KB

File metadata and controls

394 lines (334 loc) · 12.3 KB

Full Stack Trivia API Backend

Getting Started

Installing Dependencies

Python 3.7

Follow instructions to install the latest version of python for your platform in the python docs

Virtual Enviornment

We recommend working within a virtual environment whenever using Python for projects. This keeps your dependencies for each project separate and organaized. Instructions for setting up a virual enviornment for your platform can be found in the python docs

PIP Dependencies

Once you have your virtual environment setup and running, install dependencies by naviging to the /backend directory and running:

pip install -r requirements.txt

This will install all of the required packages we selected within the requirements.txt file.

Key Dependencies
  • Flask is a lightweight backend microservices framework. Flask is required to handle requests and responses.

  • SQLAlchemy is the Python SQL toolkit and ORM we'll use handle the lightweight sqlite database. You'll primarily work in app.py and can reference models.py.

  • Flask-CORS is the extension we'll use to handle cross origin requests from our frontend server.

Database Setup

With Postgres running, restore a database using the trivia.psql file provided. From the backend folder in terminal run:

psql trivia < trivia.psql

Running the server

From within the backend directory first ensure you are working using your created virtual environment.

To run the server, execute:

export FLASK_APP=flaskr
export FLASK_ENV=development
flask run

Setting the FLASK_ENV variable to development will detect file changes and restart the server automatically.

Setting the FLASK_APP variable to flaskr directs flask to use the flaskr directory and the __init__.py file to find the application.

API Reference

Getting Started

  • Base URL: Currently this application is only hosted locally. The backend is hosted at http://127.0.0.1:5000/
  • Authentication: This version does not require authentication or API keys.

Error Handling

Errors are returned as JSON in the following format:

{
    "success": False,
    "error": 404,
    "message": "resource not found"
}

The API will return three types of errors:

  • 400 – bad request
  • 404 – resource not found
  • 422 – unprocessable

Endpoints

GET /categories

  • General: Returns a list categories.

  • Sample: curl http://127.0.0.1:5000/categories

      {
          "categories": {
              "1": "Science", 
              "2": "Art", 
              "3": "Geography", 
              "4": "History", 
              "5": "Entertainment", 
              "6": "Sports"
          }, 
          "success": true
      }
    

GET /questions

  • General:

    • Returns a list questions.
    • Results are paginated in groups of 10.
    • Also returns list of categories and total number of questions.
  • Sample: curl http://127.0.0.1:5000/questions

      {
          "categories": {
              "1": "Science",
              "2": "Art",
              "3": "Geography",
              "4": "History",
              "5": "Entertainment",
              "6": "Sports"
          },
          "current_category": null,
          "questions": [
              {
                  "answer": "Tom Cruise",
                  "category": 5,
                  "difficulty": 4,
                  "id": 4,
                  "question": "What actor did author Anne Rice first denounce, then praise in the role of her beloved Lestat?"
              },
              {
                  "answer": "Maya Angelou",
                  "category": 4,
                  "difficulty": 2,
                  "id": 5,
                  "question": "Whose autobiography is entitled 'I Know Why the Caged Bird Sings'?"
              },
              {
                  "answer": "Edward Scissorhands",
                  "category": 5,
                  "difficulty": 3,
                  "id": 6,
                  "question": "What was the title of the 1990 fantasy directed by Tim Burton about a young man with multi-bladed appendages?"
              },
              {
                  "answer": "Muhammad Ali",
                  "category": 4,
                  "difficulty": 1,
                  "id": 9,
                  "question": "What boxer's original name is Cassius Clay?"
              },
              {
                  "answer": "Brazil",
                  "category": 6,
                  "difficulty": 3,
                  "id": 10,
                  "question": "Which is the only team to play in every soccer World Cup tournament?"
              },
              {
                  "answer": "Uruguay",
                  "category": 6,
                  "difficulty": 4,
                  "id": 11,
                  "question": "Which country won the first ever soccer World Cup in 1930?"
              },
              {
                  "answer": "George Washington Carver",
                  "category": 4,
                  "difficulty": 2,
                  "id": 12,
                  "question": "Who invented Peanut Butter?"
              },
              {
                  "answer": "Lake Victoria",
                  "category": 3,
                  "difficulty": 2,
                  "id": 13,
                  "question": "What is the largest lake in Africa?"
              },
              {
                  "answer": "The Palace of Versailles",
                  "category": 3,
                  "difficulty": 3,
                  "id": 14,
                  "question": "In which royal palace would you find the Hall of Mirrors?"
              },
              {
                  "answer": "Agra",
                  "category": 3,
                  "difficulty": 2,
                  "id": 15,
                  "question": "The Taj Mahal is located in which Indian city?"
              }
          ],
          "success": true,
          "total_questions": 20
      }
    

DELETE /questions/<int:id>

  • General:

    • Deletes a question by id using url parameters.
    • Returns id of deleted question upon success.
  • Sample: curl http://127.0.0.1:5000/questions/15 -X DELETE

      {
          "deleted": 15, 
          "success": true
      }
    

POST /questions

This endpoint either creates a new question or returns search results.

  1. If no search term is included in request:
  • General:

    • Creates a new question using JSON request parameters.
    • Returns JSON object with newly created question, as well as paginated questions.
  • Sample: curl http://127.0.0.1:5000/questions -X POST -H "Content-Type: application/json" -d '{ "question": "What is the Capital of India?", "answer": "Delhi", "difficulty": 2, "category": "3" }'

      {
      "created": 26,
      "questions": [
          {
          "answer": "Tom Cruise",
          "category": 5,
          "difficulty": 4,
          "id": 4,
          "question": "What actor did author Anne Rice first denounce, then praise in the role of her beloved Lestat?"
          },
          {
          "answer": "Maya Angelou",
          "category": 4,
          "difficulty": 2,
          "id": 5,
          "question": "Whose autobiography is entitled 'I Know Why the Caged Bird Sings'?"
          },
          {
          "answer": "Edward Scissorhands",
          "category": 5,
          "difficulty": 3,
          "id": 6,
          "question": "What was the title of the 1990 fantasy directed by Tim Burton about a young man with multi-bladed appendages?"
          },
          {
          "answer": "Muhammad Ali",
          "category": 4,
          "difficulty": 1,
          "id": 9,
          "question": "What boxer's original name is Cassius Clay?"
          },
          {
          "answer": "Brazil",
          "category": 6,
          "difficulty": 3,
          "id": 10,
          "question": "Which is the only team to play in every soccer World Cup tournament?"
          },
          {
          "answer": "Uruguay",
          "category": 6,
          "difficulty": 4,
          "id": 11,
          "question": "Which country won the first ever soccer World Cup in 1930?"
          },
          {
          "answer": "George Washington Carver",
          "category": 4,
          "difficulty": 2,
          "id": 12,
          "question": "Who invented Peanut Butter?"
          },
          {
          "answer": "Lake Victoria",
          "category": 3,
          "difficulty": 2,
          "id": 13,
          "question": "What is the largest lake in Africa?"
          },
          {
          "answer": "The Palace of Versailles",
          "category": 3,
          "difficulty": 3,
          "id": 14,
          "question": "In which royal palace would you find the Hall of Mirrors?"
          },
          {
          "answer": "Escher",
          "category": 2,
          "difficulty": 1,
          "id": 16,
          "question": "Which Dutch graphic artist–initials M C was a creator of optical illusions?"
          }
      ],
      "success": true,
      "total_questions": 20
      }
    
  1. If search term is included in request:
  • General:

    • Searches for questions using search term in JSON request parameters.
    • Returns JSON object with paginated matching questions.
  • Sample: curl http://127.0.0.1:5000/questions -X POST -H "Content-Type: application/json" -d '{"searchTerm": "what"}'

      {
      "current_category": null,
      "questions": [
          {
          "answer": "Mona Lisa",
          "category": 2,
          "difficulty": 3,
          "id": 17,
          "question": "La Giaconda is better known as what?"
          },
          {
          "answer": "Blood",
          "category": 1,
          "difficulty": 4,
          "id": 22,
          "question": "Hematology is a branch of medicine involving the study of what?"
          }
      ],
      "success": true,
      "total_questions": 20
      }
    

GET /categories/<int:id>/questions

  • General:

    • Gets questions by category id using url parameters.
    • Returns JSON object with paginated matching questions.
  • Sample: curl http://127.0.0.1:5000/categories/1/questions

      {
      "current_category": 1,
      "questions": [
          {
          "answer": "The Liver",
          "category": 1,
          "difficulty": 4,
          "id": 20,
          "question": "What is the heaviest organ in the human body?"
          },
          {
          "answer": "Alexander Fleming",
          "category": 1,
          "difficulty": 3,
          "id": 21,
          "question": "Who discovered penicillin?"
          },
          {
          "answer": "Blood",
          "category": 1,
          "difficulty": 4,
          "id": 22,
          "question": "Hematology is a branch of medicine involving the study of what?"
          }
      ],
      "success": true,
      "total_questions": 3
      }
    

POST /quizzes

  • General:

    • Allows users to play the quiz game.
    • Uses JSON request parameters of category and previous questions.
    • Returns JSON object with random question not among previous questions.
  • Sample: curl http://127.0.0.1:5000/quizzes -X POST -H "Content-Type: application/json" -d '{"previous_questions": [20, 21],"quiz_category": {"type": "Science", "id": "1"}}'

      {
      "question": {
          "answer": "Blood",
          "category": 1,
          "difficulty": 4,
          "id": 22,
          "question": "Hematology is a branch of medicine involving the study of what?"
      },
      "success": true
      }
    

Testing

To run the tests, run

dropdb trivia_test
createdb trivia_test
psql trivia_test < trivia.psql
python test_flaskr.py