Skip to content

Commit bc76c61

Browse files
author
Simon Prickett
committedMar 23, 2022
Added .gitignore.
1 parent fd8fb07 commit bc76c61

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.bak
2+
*.swp
3+
*.tmp
4+
.DS_Store

‎docs/stack/get-started/tutorials/stack-python.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ $ flask run
117117

118118
You're now up and running, and ready to perform CRUD operations on data with Redis, RediSearch, RedisJSON and Redis OM for Python! To make sure the server's running, point your browser at `http://127.0.0.1:5000/`, where you can expect to see the application's basic home page:
119119

120-
![screenshot](server_running.png)
120+
![screenshot](./stack_python/images/server_running.png)
121121

122122
### Load the Sample Data
123123

@@ -264,7 +264,7 @@ $ redis-cli
264264

265265
If you're using RedisInsight, the browser will render the key value for you when you click on the key name:
266266

267-
![Data in RedisInsight](screenshots/insight_explore_person.png)
267+
![Data in RedisInsight](./stack_python/images/insight_explore_person.png)
268268

269269
When storing data as JSON in Redis, we can update and retrieve the whole document, or just parts of it. For example, to retrieve only the person's address and first skill, use the following command (RedisInsight users should use the built in redis-cli for this):
270270

@@ -344,7 +344,7 @@ Try this out with curl as follows:
344344

345345
{{< highlight bash >}}
346346
curl --location --request GET 'http://127.0.0.1:5000/people/byname/Kareem/Khan'
347-
{{ / highlight }}
347+
{{< / highlight >}}
348348

349349
**Note:** First and last name are case sensitive.
350350

0 commit comments

Comments
 (0)