Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/weakish/yummy
- Owner: weakish
- License: other
- Created: 2020-07-05T17:22:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-03T13:21:11.000Z (over 1 year ago)
- Last Synced: 2024-11-13T09:44:58.812Z (2 months ago)
- Topics: api-service, firebase, flask, python, vercel
- Language: Python
- Homepage: https://yummy.mmap.page
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- License: LICENSE
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
}
}