You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/connections.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Use the "unix" prefix to connect to Redis over Unix domain sockets:
52
52
53
53
### To Learn More
54
54
55
-
To learn more about the URL format that Redis OM Python uses, consult [redis-py's URL documentation](https://redis-py.readthedocs.io/en/stable/#redis.Redis.from_url).
55
+
To learn more about the URL format that Redis OM Python uses, consult the [redis-py URL documentation](https://redis-py.readthedocs.io/en/stable/#redis.Redis.from_url).
56
56
57
57
**TIP:** The URL format is the same if you're using async or sync mode with Redis OM (i.e., importing `aredis_om` for async or `redis_om` for sync).
Copy file name to clipboardExpand all lines: docs/fastapi_integration.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ This example shows how to manage these two uses of Redis within the same applica
30
30
31
31
Let's look at an example FastAPI app that uses Redis OM.
32
32
33
-
**NOTE**: This example code requires dependencies to run. To install the dependencies, first clone the [redis-om-fastapi](https://github.com/redis-developer/redis-om-fastapi) repository from GitHub. Then follow the installation steps later in this document or in that repository's README.md file.
33
+
**NOTE**: This example code requires dependencies to run. To install the dependencies, first clone the [redis-om-fastapi](https://github.com/redis-developer/redis-om-fastapi) repository from GitHub. Then follow the installation steps later in this document or in that repository's README.md file.
34
34
35
35
```python
36
36
import datetime
@@ -131,7 +131,7 @@ Get a copy of the value for "pk," which is the model's primary key, and make ano
Copy file name to clipboardExpand all lines: docs/getting_started.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ python --version
17
17
Python 3.7.0
18
18
```
19
19
20
-
If you don't have Python installed, you can download it from [Python.org](https://www.python.org/downloads/), use [Pyenv](https://github.com/pyenv/pyenv), or install Python with your operating system's package manager.
20
+
If you don't have Python installed, you can download it from [Python.org](https://www.python.org/downloads/), use [pyenv](https://github.com/pyenv/pyenv), or install Python with your operating system's package manager.
21
21
22
22
## Redis
23
23
@@ -71,7 +71,7 @@ Otherwise, you can start the server manually:
71
71
72
72
$ redis-server start
73
73
74
-
### macOS with Homebrew
74
+
### MacOS with Homebrew
75
75
76
76
$ brew services start redis
77
77
@@ -427,7 +427,7 @@ type(andrew.join_date)
427
427
# > datetime.date # The model parsed the string automatically!
428
428
```
429
429
430
-
This ability to combine parsing (in this case, a YYYY-MM-DD date string) with validation can save you a lot of work.
430
+
This ability to combine parsing (in this case, a date string) with validation can save you a lot of work.
431
431
432
432
However, you can turn off coercion -- check the next section on using strict validation.
0 commit comments