Operation as a Service
Project description
Operation As A Service API
Installation
pip install oaas
Usage
from typing import Any, List
import oaas
@oaas.client("users-get")
def get_users(group: str) -> List[Any]: ...
@oaas.client("datastore")
class DataStore:
def put_item(self, key: str, value: Any) -> None: ...
def get_item(self, key: str) -> None: ...
def remove_item(self, key: str) -> None: ...
@oaas.service("users-get")
def get_user_list(group: str) -> List[Any]: ...
@oaas.service("datastore")
class DataStoreService:
def put_item(self, key: str, value: Any) -> None: ...
def get_item(self, key: str) -> None: ...
def remove_item(self, key: str) -> None: ...
@oaas.service("intercept")
def get_user_intercept(group: str) -> List[Any]: ...
@oaas.service("datastore")
class DataStoreIntercept:
def put_item(self, key: str, value: Any) -> None: ...
def get_item(self, key: str) -> None: ...
def remove_item(self, key: str) -> None: ...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
oaas-1.4.0.tar.gz
(3.5 kB
view hashes)