Skip to main content

Worker-Python

The Worker-Python executes the provided Python code at the remote worker. More information about the worker at: https://github.com/apioo/fusio-worker-python

Example

def handle(request, context, connector, response, dispatcher, logger):
connection = connector.get_connection('app')

cursor = connection.cursor()
cursor.execute("""SELECT name, description FROM app_product_0""")
result = cursor.fetchall()
cursor.close()

entries = []
for row in result:
entries.append({
'name': row[0],
'description': row[1],
})

return response.build(200, None, {
'foo': 'bar',
'entries': entries
})

Types

This table contains an overview which connection types are implemented and which implementation is used:

TypeImplementation
Fusio.Adapter.Sql.Connection.SqlPyMySQL / pymongo
Fusio.Adapter.Sql.Connection.SqlAdvancedPyMySQL / pymongo
Fusio.Adapter.Http.Connection.Httphttp.client
Fusio.Adapter.Mongodb.Connection.MongoDBpymongo
Fusio.Adapter.Elasticsearch.Connection.Elasticsearchelasticsearch

Video