From 7fa6d640e472af84ceae239a5fbbcd247650351d Mon Sep 17 00:00:00 2001 From: simonwt Date: Wed, 1 Apr 2026 19:56:50 +0100 Subject: [PATCH] Example of wrapper and api usage --- testing.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/testing.py b/testing.py index 3808be8..e0fe060 100644 --- a/testing.py +++ b/testing.py @@ -123,7 +123,11 @@ from wrappers.post.create_post import create_post # parent_path="/branch/music", # )) -save_response(create_post( +# save_response(create_post( +# "This is a test post created via the create_post wrapper function.", +# "/userprofile/simon-little", +# )) +save_response(API.run_job('post.create', create_post( "This is a test post created via the create_post wrapper function.", "/userprofile/simon-little", -)) +)))