How to use the metacall.metacall function in metacall

To help you get started, we’ve selected a few metacall examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github metacall / core / source / examples / metacallpy / main.py View on Github external
#!/usr/bin/env python3

from metacall import metacall_initialize, metacall_load, metacall, metacall_destroy

# Initialize metacall
metacall_initialize();

# Example call
metacall("hello");

# Destroy metacall
metacall_destroy();
github metacall / examples / auth-function-mesh / auth.py View on Github external
def encrypt(text):
	return metacall('sign', text)
github metacall / examples / auth-function-mesh / auth.py View on Github external
def decrypt(token):
	return metacall('verify', token)

metacall

A library for providing inter-language foreign function interface calls

Apache-2.0
Latest version published 2 years ago

Package Health Score

61 / 100
Full package analysis

Similar packages