redis-om-python-flask-skeleton-app
redis-om-python-flask-skeleton-app copied to clipboard
A starter application for performing CRUD type operations with Redis OM Python and the Flask Microframework
Results
3
redis-om-python-flask-skeleton-app issues
Sort by
recently updated
recently updated
newest added
Hello, how can i query condition which use len of list in redis_om? ``` class Person(JsonModel): first_name: str = Field(index=True) last_name: str = Field(index=True) age: PositiveInt = Field(index=True) address: Address...
`PUT` is the most common way to update resource information. It's more appropriate to return `404` HTTP status code when a resource is not found. It's a common practise to...