Skip to content

Instantly share code, notes, and snippets.

@la4gia
la4gia / plugin_00.py
Created April 17, 2023 03:44
Python Plugin Framework
from plugin_ingestor import PluginIngestor
class FirstPlugin(PluginIngestor):
ATTRIBUTES = {
'name': 'John Doe',
'age': 22,
'languages': ['English', 'Japanese'],
'clients': {'joe': 'somebody'}