Metadata-Version: 2.1
Name: thepulse
Version: 1.0.7
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
>>> from thepulse import update, get
>>> update('k1','v1')
{'_id': 'caa81c3586be', '_key': 'k1', '_url': 'https://devnull.cn/pulse/caa81c3586be', '_value': 'v1'}

>>> update('k1','v1_updated',pulse_id='caa81c3586be')
{'_id': 'caa81c3586be', '_key': 'k1', '_url': 'https://devnull.cn/pulse/caa81c3586be', '_value': 'v1_updated'}

>>> get('caa81c3586be')
{'_at': 'Tue, 16 Jul 2024 02:54:16 GMT', '_key': 'k1', '_value': 'v1_updated'}
>>> 

```
