So I tried running an example Nodebox tutorial.
Here's the code:
g = grid.create(2, 2, 250, 250)
g.top.left.split(2, 2)
g.top.left.bottom.right.split(2, 2)
# fetch images from Morguefile.com
web = ximport("web")
img = web.morguefile.search("ocean")[:5]
img = [x.download() for x in img]
g.content = images
g.content.repeat = True
g.styles.margin = 1
g.styles.fit = True
g.styles.align = "center", "bottom"
Which basically downloads from a site called morguefile. I played with it and tried flickr, which also works. I tried google and youtube, but neither worked. When I changed back to flickr, I started getting errors like:
AttributeError: 'module' object has no attribute 'youtube'
But that is not part of my code anymore! I suspect that my pythonpath could be wrong. I once had a similar problem and restarted my Mac and than it worked again.
If there is no solution, how can I start from scratch?