I need to call some Java API from Django, specifically Rundeck API. I looked around and django-jython is no longer supported. What other ways can I do it? I have looked at rundeckrun (a Python client library for Rundeck API but I need to only use the Rundeck native Java API).
Assuming Rundeck supports REST API, would something like django-tastypie work?
Edit: As per Consuming a RESTful API with Django, tastypie creates REST API and not consumes it. Apparently, the regular urllib, requests module, etc. does the trick.