Skip to content

drearondov/scrabbleScoreboard

Repository files navigation

Scrabble Scoreboard

GitHub release (latest by date including pre-releases) GitHub last commit

Collect data about Scrabble Games and marvel or cry at the sight of your vocabulary and resourcefulness.

Endpoints

  • GET /words - Retrieves a list of all words in dictionary

  • GET /words/languages - Retrieves a list of all words in a specific language

  • POST /games - Creates a new game

  • PUT /games - Edits a game

  • DELETE /games/<int:game_id> - Deletes a game

  • GET /games/<int:game_id>/plays - Gets all the plays from a game

  • GET /players - Gets all players

  • POST /players - Creates a new player

  • PUT /players/<int:player_id> - Updates a player based on its id

  • DELETE /players/<int:player_id> - Deletes a player

  • GET players/<int:player_id>/plays

  • GET /plays- Retrieves a list of plays

  • GET /plays/<int: play_id> - Retrieves info about a play

  • POST /plays - Creates a new play

  • PUT /plays/<int: play_id> - Updates a play based on its id

  • DELETE /plays/<int: play_id> - Deletes a play based on its id

Resources

Acknowledgements