Adding Python modules

Hi,

I need to add modules into python like jsontocsv, Crypto.

I have gone through the community and found one article but dint got it where exactly we need to add the modules.

Python Modules in Private Cloud

Can anyone ellaborate it.

Thanks,

Parag

Solved Solved
0 2 703
1 ACCEPTED SOLUTION

As per the referenced doc, you need to directly add the modules in the Message Processor Nodes,

<installdir>/share/apigee/lib/thirdparty/

To do this you need to have access to your on-prem setup.

FYI, Python language support is provided through Jython version 2.5.2. Third-party libraries you add must be "pure Python" (implemented only in Python).

View solution in original post

2 REPLIES 2

As per the referenced doc, you need to directly add the modules in the Message Processor Nodes,

<installdir>/share/apigee/lib/thirdparty/

To do this you need to have access to your on-prem setup.

FYI, Python language support is provided through Jython version 2.5.2. Third-party libraries you add must be "pure Python" (implemented only in Python).

Great