Skip to content

Commit 715f699

Browse files
author
Andrew Brookins
authored
Merge branch 'main' into dependabot/pip/redis-4.0.1
2 parents f2783ad + 7901e4e commit 715f699

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,9 @@ To learn more, read [our documentation](docs/redis_modules.md).
326326

327327
We'd love your contributions!
328328

329-
**Bug reports** are especially helpful at this stage of the project. [You can open a bug report on GitHub](https://github.com/redis-om/redis-om-python/issues/new).
329+
**Bug reports** are especially helpful at this stage of the project. [You can open a bug report on GitHub](https://github.com/redis/redis-om-python/issues/new).
330330

331-
You can also **contribute documentation** -- or just let us know if something needs more detail. [Open an issue on GitHub](https://github.com/redis-om/redis-om-python/issues/new) to get started.
331+
You can also **contribute documentation** -- or just let us know if something needs more detail. [Open an issue on GitHub](https://github.com/redis/redis-om-python/issues/new) to get started.
332332

333333
## 📝 License
334334

docs/fastapi_integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ Next, start the server:
118118
$ poetry run uvicorn --reload main:test
119119

120120
Then, in another shell, create a customer:
121-
121+
```
122122
$ curl -X POST "http://localhost:8000/customer" -H 'Content-Type: application/json' -d '{"first_name":"Andrew","last_name":"Brookins","email":"[email protected]","age":"38","join_date":"2020
123123
-01-02"}'
124124
{"pk":"01FM2G8EP38AVMH7PMTAJ123TA","first_name":"Andrew","last_name":"Brookins","email":"[email protected]","join_date":"2020-01-02","age":38,"bio":""}
125-
125+
```
126126
Get a copy of the value for "pk" and make another request to get that customer:
127127

128128
$ curl "http://localhost:8000/customer/01FM2G8EP38AVMH7PMTAJ123TA"
@@ -133,7 +133,7 @@ You can also get a list of all customer PKs:
133133
$ curl "http://localhost:8000/customers"
134134
{"customers":["01FM2G8EP38AVMH7PMTAJ123TA"]}
135135

136-
## Redsi OM with Asyncio
136+
## Redis OM with Asyncio
137137

138138
Redis OM is designed to work with asyncio, so you can use Redis OM models asynchronously within FastAPI applications.
139139

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ mypy = "^0.910"
4040
pytest = "^6.2.4"
4141
ipdb = "^0.13.9"
4242
pylint = "^2.11.1"
43-
black = "^21.9b0"
43+
black = "^21.11b1"
4444
isort = "^5.9.3"
4545
flake8 = "^4.0.1"
4646
bandit = "^1.7.0"

0 commit comments

Comments
 (0)