Metadata-Version: 2.1
Name: ango
Version: 0.0.3
Summary: Ango-Hub SDK
Author: Faruk Karakaya
Author-email: <faruk@ango.ai>
License: UNKNOWN
Keywords: ango,ango-hub,ango sdk,Ango,Ango-hub
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

SDK for developing custom plugins that can be integrated to Ango-Hub platform.

    from ango import plugin


    # Create callback function for your plugin. 
    # Input and output definitions are set on Ango-Hub on plugin register
    def callback(data):
        result = model(data)
        return result
    
    
    p = plugin.Plugin("<YOUR_PLUGIN_ID>", callback)
    
    plugin.run(p)

