summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorandymccurdy <andy@andymccurdy.com>2010-02-17 01:20:57 -0800
committerandymccurdy <andy@andymccurdy.com>2010-02-17 01:20:57 -0800
commita1b3c0ef7275c46ae0b6e136b2d4b5e8aa5888f1 (patch)
tree122fde9a35d8180eaf0ecf673e7a09f9c42526eb /README.md
parentec9d72cc20e81f79f2c5922d867bd008d59cdf21 (diff)
downloadredis-py-a1b3c0ef7275c46ae0b6e136b2d4b5e8aa5888f1.tar.gz
rename to get nice highlighing on github ;)
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..87a9b0a
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
+redis-py
+--------
+
+This is the Python interface to the Redis key-value store.
+
+
+Usage
+=====
+
+ >>> import redis
+ >>> r = redis.Redis(host='localhost', port=6379, db=0)
+ >>> r.set('foo', 'bar') # or r['foo'] = 'bar'
+ True
+ >>> r.get('foo')
+ 'bar'
+
+For a complete list of commands, check out the list of Redis commands here:
+http://code.google.com/p/redis/wiki/CommandReference
+
+
+Author
+======
+
+redis-py is developed and maintained by Andy McCurdy (sedrik@gmail.com).
+It can be found here: http://github.com/andymccurdy/redis-py
+
+Special thanks to:
+
+* Ludovico Magnocavallo, author of the original Python Redis client, from
+ which some of the socket code is still used.
+* Alexander Solovyov for ideas on the generic response callback system.
+* Paul Hubbard for initial packaging support.
+