Metadata-Version: 2.1
Name: s1db
Version: 1.0.0
Summary: S1 API Library for Python
Home-page: https://github.com/M4cs/s1db-python
Author: Max Bridgland
Author-email: mabridgland@protonmail.com
License: UNKNOWN
Project-URL: S1, https://github.com/kognise/s1
Project-URL: s1db-node, https://github.com/kognise/s1-node
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: requests

```python
# Setup
from s1db import S1
api = S1("token-here")

# Set Object:
api.set('key', {'foo': 'bar'}

# Set Raw:
api.set_raw('key', 'Raw Data')

# Get Object:
api.get('key')

# Get Raw:
api.get_raw('key')

# Delete 
api.delete('key')

# Get All Keys -> Returns Object:
api.get_keys()
```

