Skip to content

Commit

Permalink
updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Sep Dehpour authored and Sep Dehpour committed Dec 30, 2016
1 parent 7c04814 commit f24da95
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Expand Up @@ -139,6 +139,21 @@ All you need to do is start the number with the character `i` so Redisworks take

The actual key in Redis will be `root.1`

# Dynamic key names

```py
>>> path1 = 'blah'
>>> path2 = 'blah.here`'

>>> root[path1] = 'foo'
>>> root[path2] = 'foo bar'

>>> root.blah
foo
>>> root.blah.here
foo bar
```

# Other examples

Take a look at [example.py](example.py)
Expand Down

0 comments on commit f24da95

Please sign in to comment.