-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* spelling, take1 * some spelling fixes * one more
- Loading branch information
Showing
8 changed files
with
109 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
matrix: | ||
- name: Markdown | ||
expect_match: false | ||
apsell: | ||
mode: en | ||
dictionary: | ||
wordlists: | ||
- .github/wordlist.txt | ||
output: wordlist.dic | ||
encoding: utf-8 | ||
pipeline: | ||
- pyspelling.filters.markdown: | ||
markdown_extensions: | ||
- markdown.extensions.extra: | ||
- pyspelling.filters.html: | ||
comments: true | ||
attributes: | ||
- alt | ||
ignores: | ||
- ':matches(code, pre)' | ||
- 'code' | ||
- 'pre' | ||
- 'blockquote' | ||
sources: | ||
- '*.md' | ||
- 'docs/*.md' |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
APIs | ||
Bader's | ||
CLI | ||
Config | ||
Deserializing | ||
FastAPI | ||
HashModel | ||
Homebrew | ||
JSON | ||
JsonModel | ||
MacOS | ||
OM's | ||
ORM | ||
Pipenv | ||
PrimaryKeyCreator | ||
Pydantic | ||
Pydantic | ||
Pydantic's | ||
README | ||
README.md | ||
RediSearch | ||
RediSearch | ||
RedisJSON | ||
SQLAlchemy | ||
SSL | ||
TOC | ||
ULIDs | ||
UlidPrimaryKey | ||
WSL | ||
aioredis | ||
async | ||
asyncio | ||
cls | ||
coroutines | ||
doctoc | ||
fastapi | ||
indexable | ||
io | ||
js | ||
localhost | ||
md | ||
migrator | ||
py | ||
pyenv | ||
redis | ||
redisearch | ||
redisjson | ||
rediss | ||
runtime | ||
sortable | ||
subclasses | ||
subclassing | ||
subscripted | ||
unix | ||
utf | ||
validator | ||
validators | ||
virtualenv |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: spellcheck | ||
on: | ||
pull_request: | ||
jobs: | ||
check-spelling: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Check Spelling | ||
uses: rojopolis/[email protected] | ||
with: | ||
config_path: .github/spellcheck-settings.yml | ||
task_name: Markdown |
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 |
---|---|---|
|
@@ -138,3 +138,6 @@ tests_sync/ | |
|
||
# Apple Files | ||
.DS_Store | ||
|
||
# spelling cruft | ||
*.dic |
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ This example shows how to manage these two uses of Redis within the same applica | |
|
||
Let's look at an example FastAPI app that uses Redis OM. | ||
|
||
**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. | ||
**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. | ||
|
||
```python | ||
import datetime | ||
|
@@ -131,7 +131,7 @@ Get a copy of the value for "pk," which is the model's primary key, and make ano | |
$ curl "http://localhost:8000/customer/01FM2G8EP38AVMH7PMTAJ123TA" | ||
{"pk":"01FM2G8EP38AVMH7PMTAJ123TA","first_name":"Andrew","last_name":"Brookins","email":"[email protected]","join_date":"2020-01-02","age":38,"bio":""} | ||
|
||
You can also get a list of all customer PKs: | ||
You can also get a list of all customer primary keys: | ||
|
||
$ curl "http://localhost:8000/customers" | ||
{"customers":["01FM2G8EP38AVMH7PMTAJ123TA"]} | ||
|
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