redis-om-python icon indicating copy to clipboard operation
redis-om-python copied to clipboard

Object mapping, and more, for Redis and Python

Results 199 redis-om-python issues
Sort by recently updated
recently updated
newest added

This client needs to support RediSearch aggregations / `FT.AGGREGATE`.

enhancement

Bumps [types-redis](https://github.com/python/typeshed) from 4.3.13 to 4.3.14. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=types-redis&package-manager=pip&previous-version=4.3.13&new-version=4.3.14)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

Hi! Working with a `HashModel` that contains some bytes data (for Vector data fields). I need to update the default [`jsonable_encoder`](https://github.com/redis/redis-om-python/blob/a00a68b414d50b7a096a98f8d00ee10ddd8cd99f/aredis_om/model/encoders.py#L56) with a custom encoder for `bytes`. However, I noticed...

The following steps were performed: - Removed unnecessary `keys` method call. - Replaced the `filter` method with a list comprehension to increase readability. - ~~Replaced old python2 methods with their...

## What is the issue I have created a FastAPI application, and I am trying to integrate aredis_om (but this fails with redis_om as well) with one of my rest...

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...

Usually, I run the following command to get the package version: ```sh python3 -c 'from redis_om import __version__; print(__version__)' ``` However, the `__init__` file doesn't have an entry for this...

The current implementation of the `find` method requires manually passing a table name `Customer` followed by the name of the column `last_name` which seems redundant. For instance, the following query:...