-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
787 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
This part of the project documentation includes | ||
the technical reference for the `pydantic-redis` | ||
package. It can be used on a need-by-need basis. | ||
|
||
::: pydantic_redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,7 @@ | ||
"""Shared utilities and base classes for pydantic-redis | ||
"""Exposes shared utilities and base classes for pydantic-redis | ||
This includes basic functionality of mutating and querying | ||
redis via the pydantic-redis ORM regardless of whether this | ||
is done asynchronously or synchronously. | ||
This is a private package. | ||
Available subpackages | ||
--------------------- | ||
model | ||
defines the base `AbstractModel` class to be extended by async | ||
and sync versions of the `Model` class | ||
Available modules | ||
----------------- | ||
config | ||
defines the `RedisConfig` class to be used to make a | ||
connection to a redis server | ||
lua_scripts | ||
defines the lua scripts to be used in querying redis | ||
store | ||
defines the base `AbstractStore` class to be extended by the | ||
async and sync versions of the `Store` class | ||
utils | ||
defines utility functions used across the project | ||
""" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
"""Exposes the utilities and the base classes for models. | ||
This includes basic functionality of mutating and querying | ||
redis via the pydantic-redis ORM regardless of whether this | ||
is done asynchronously or synchronously. | ||
""" | ||
|
||
from .base import AbstractModel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.