Metadata-Version: 2.4
Name: orrin-sdk
Version: 0.0.2
Summary: SDK for creating and registering custon Orrin apps
Author: Aidan White
Author-email: ceo@stellr-company.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# Orrin SDK v0.0.1
The Orrrin SDK v0.0.1 is the first revolution of the Orrin SDK, and brings forth a simple Python decorator for developers creating small-scale apps to be deployed on the Orrin platform.

## Orrin SDK actions
The current version offers only one decorator: action.
You call this on top of any given function that will be used in your front end code to perform an activity and manipulate the UI.

Example:
```python
from orrinsdk import action

@action('say_hi')
def say_hi():
    return {'message': 'Hello, world!'}
```

And now, in your UI, if you utilize this action (using a node.js based SDK) you can utilize the result from this function to determine how to manipulate your UI.

_New versions of Orrin SDK are in the working_
