Jump to content

feedloader


kgoossens

Recommended Posts

Hi Everybody,

I'm starting to learn using python in Houdini, and I'm following the examples given in the HOM Cookbook.

It says to download the example file. And then show the code to implement.

But the example does not work, and I'm unable to import the feedloader module.

I'm probably missing something here but I'm unable to figure it out.

any help would be greatly appreciated

>>> import feedloader

Traceback (most recent call last):

File "<console>", line 1, in <module>

ImportError: No module named feedloader

Link to comment
Share on other sites

I would suggest learning Python outside of the Houdini context first. It will give you a much deeper understanding of the how and the why of the Python implementation in Houdini. As for the feedloader module, I don't think that's a standard module so you'd have to install it first. To see the modules you have try this in the interactive Python shell.

Python 2.6.4 (r264:75706, Jun  4 2010, 18:20:31) 
[GCC 4.4.4 20100503 (Red Hat 4.4.4-2)] on linux2
Houdini 11.1.22 hou module imported.
Type "help", "copyright", "credits" or "license" for more information.
&gt;&gt;&gt; import sys
&gt;&gt;&gt; for mod in sys.modules:
...     print mod
... 
mako.inspect
_multiprocessing
ctypes.os
rfxPyQt.app_threading.traceback
gc

The list continues on for a while but there wasn't a feedloader module that I could see, at least in Houdini 11.1 on 64-bit Linux.

Link to comment
Share on other sites

I would suggest learning Python outside of the Houdini context first. It will give you a much deeper understanding of the how and the why of the Python implementation in Houdini. As for the feedloader module, I don't think that's a standard module so you'd have to install it first. To see the modules you have try this in the interactive Python shell.

Python 2.6.4 (r264:75706, Jun  4 2010, 18:20:31) 
[GCC 4.4.4 20100503 (Red Hat 4.4.4-2)] on linux2
Houdini 11.1.22 hou module imported.
Type "help", "copyright", "credits" or "license" for more information.
&gt;&gt;&gt; import sys
&gt;&gt;&gt; for mod in sys.modules:
...     print mod
... 
mako.inspect
_multiprocessing
ctypes.os
rfxPyQt.app_threading.traceback
gc

The list continues on for a while but there wasn't a feedloader module that I could see, at least in Houdini 11.1 on 64-bit Linux.

Okay, I'll do that. Cheers.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...