> What my shop needs is: Generic product while its being created by User (not > admin) from certain peaces.
you mean "pieces", and satchmo has a CustomProduct class which might be what you need (in terms of creating and charging for the product). As per the visualization, I don't know, but I'm sure there're analog libraries to those JAR you're talking about Since you've already have the functionality there, you can of course (this would be the answer to your original question) use subprocess.Popen to run your JAR, but I'd really look into an analog python library before doing that, unless you have a very strong reason not to. PIL is the library normally used to generate graphics (you already have it, if you're running satchmo), but I don't know the API so I'm not sure how you'd go about generating the graphics you need also, don't use Popen, use these: >> not sure, but maybe this may help? >> http://stackoverflow.com/questions/3652554/calling-java-from-python and PROBABLY (but I'm not certain of what you want to do, exactly) the way of doing it is creating a custom templatetag for the processing. Yet ANOTHER way of doing it is printing the image link with some parameters. For example something like: <img src="/dyanmic/images/product/cpu.png?casing=hellfire&color=red&monitor=smsyncms23" /> and then have the generation of the image in the /dynamic/images/product/ view. It all depends on the API you have and how you want to implement it. But yes, the basic answer you're going to get is "better if you try to do this with a python library". You can try asking more people in the django mailing list or #django in irc.freenode.org -- "The whole of Japan is pure invention. There is no such country, there are no such people" --Oscar Wilde |_|0|_| |_|_|0| |0|0|0| (\__/) (='.'=)This is Bunny. Copy and paste bunny (")_(") to help him gain world domination. -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
