Metadata-Version: 2.1
Name: thepulse
Version: 1.0.5
Summary: Simple Python client library for https://devnull.cn/pulse
Home-page: https://github.com/xizhendu/thepulse-sdk-python
Author: Xizhen Du
Author-email: xizhendu@gmail.com
Description-Content-Type: text/markdown
Requires-Dist: requests

# thepulse-sdk-python


```ipython

>>> import thepulse
>>> kit = keepintouch.Init() 
>>> kit.update('your_key','your_value')
{'_id': '27809a60de71', '_key': 'your_key', '_url': 'https://httpbin.cn/greetings/27809a60de71', '_value': 'your_value'}
>>> kit.get('27809a60de71')
{'_key': 'your_key', '_value': 'your_value'}
>>> kit.update('your_key_updated','your_value_updated', greeting_id='27809a60de71')
{'_id': '27809a60de71', '_key': 'your_key_updated', '_url': 'https://httpbin.cn/greetings/27809a60de71', '_value': 'your_value_updated'}
>>> kit.get('27809a60de71')
{'_key': 'your_key_updated', '_value': 'your_value_updated'}
>>> 


```
