Python Package Distribution
March 22nd, 2005 by Patrick Boucher. Viewed 1748 times.If you do want to distribute packages there are a few things you should know that might make your life easier…
![]() |
Home | ![]() |
![]() |
If you do want to distribute packages there are a few things you should know that might make your life easier…
A little while back I spoke of Python’’s win32com module and why you have to know it exists in the XSI context… Well why not make things a little simpler still.
XML is going to be the next standard for 3d scene descriptions, is it not?
What happens when you use too many particles… and what the workarounds are…
I get an e-mail from Rick Walia at The Mill this morning…
[...snip...]
Anyways, you know you can use the print statement with python & XSI right?
Nope! I hadn”t even tried it out. And check this out:
from time import time
from win32com.client import constants as c
t1 = time()
for x in range(500):
Application.LogMessage(x, c.siComment)
t1 = time() [...]