StaticBackend Python 3 client.
CPython 3.6.2+
pip install staticbackend
from staticbackend import Config, StaticBackend
config = Config(
api_token=os.environ["PUBLICKEY"],
root_token=os.environ["ROOTKEY"],
endpoint=os.environ["ENDPOINT"],
)
backend = StaticBackend(config)
state = backend.user.login("[email protected]", "zot")
docs = state.database.list_documents(db)
print(docs)
- User Management
- Register
- Login
- Reset Password
- Database
- Create a document
- List documents
- Get a document
- Query for documents
- Update a document
- Delete documents
- Storage
- Upload files
MIT
TBD.
See CHANGELOG.md