Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
The morphapiwrapper package contains the wrapper functions to build a API for morphisdom
You can install the package by running the following command
pip install morphapiwrapper
Then load the package in Python by running the following command
from morphapiwrapper import app, addapproute
You can write your custom function with this package and serve it as an API in morphisdom
Your custom function should always take two arguments. Namely requestdata and filereaderwriter.
requestdata is the variable which would get the data passed during the API call for the client.
For multiargument API in morphisdom requestdata holds a list whose elements corresponds to individual arguments of the API function in sequence.
However requestdata can also hold string, number, boolean (for single argument API) and dictionary.
filereaderwriter is an handle for downloading GCS or remote HTTP content into localdirectory.
if requestdata contains and GCS file URI or HTTP url then the funtion filereaderwriter.download_input_data(requestdata) downloads all those files and returns the name of the local files in the same order. The number of elements in requestdata and downloadeddata remains same.
The following function demonstrates a simple function to be served as a Morphisdom API. The requestdata is downloaded and returned as output.
In order to log billing API calls the billunit needs to be set greater than 0.
def testfunction(requestdata,filereaderwriter):
downloadeddata = filereaderwriter.download_input_data(requestdata)
print(downloadeddata)
billunit = 2
return downloadeddata,billunit
Once your function is created wrap your function in an flask app with the following code snippet
app = addapproute(app, testfunction)
The returned app is a flask app which has a route /testfunction added in it. On calling this route testfunction is executed
FAQs
Wrapper functions for creating APIs in Morphisdom
We found that morphapiwrapper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.