2
url = "ip"
db = "dbname"
username = "user"
password = "admin"

common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/common'.format(url))
uid = common.authenticate(db, username, password, {})

actions = models.execute_kw(db, uid, password, 'ir.cron', 'search', [[['name', '=', 'Mail: Email Queue Manager']]])
print(actions)

Returns [2]

But I am not sure how to run this action? I have tried looking at the documentation, but I don't see an example on how to run an action?

apexprogramming
  • 403
  • 2
  • 14

1 Answers1

4

You can run the action manually by calling the method_direct_trigger method.

Example:

models.execute_kw(db, uid, password, 'ir.cron', 'method_direct_trigger', [actions])
Kenly
  • 24,317
  • 7
  • 44
  • 60