Commit 3bc422c0 authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Fixed README example and added examples folder

parent 5fc2a744
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -49,10 +49,11 @@ Getting Started with the basic client
```python
from kinetic import Client
c = Client('localhost', 8123)
c.connect()
c.put('message','hello world')
print c.get('message').value
```
Should print out _hello_ _world_
Should print out _hello world_

Troubleshooting during the installation
=======================================

examples/helloworld.py

0 → 100644
+5 −0
Original line number Diff line number Diff line
from kinetic import Client
c = Client('localhost', 8123)
c.connect()
c.put('message','hello world')
print c.get('message').value