Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/weakish/yummy

an anonymous fictional review database for hex numbers
https://github.com/weakish/yummy

api-service firebase flask python vercel

Last synced: 3 days ago
JSON representation

an anonymous fictional review database for hex numbers

Awesome Lists containing this project

README

        

Yummy - an anonymous fictional review database for hex numbers

Usage:

Request: GET /ping
Response: "pong"

Request: GET /hex/
Response:
{
id: {
rating: Optional[Literal[1, 2, 3, 4, 5]]
comment: Optional[str]
more_key: Optional[JsonValue]
}
# more
}

Request: PATCH /hex/
{
rating: Optional[Literal[1, 2, 3, 4, 5]]
comment: Optional[str]
more_key: Optional[JsonValue]
}
Response:
Content-Location: /hex//
{
rating
comment
meta: {
more_key
}
}

Request: GET /hex//
Response:
{
rating
comment
meta: {
more_key
}
}