<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: DMX Python module</title>
	<atom:link href="http://www.monkeysandrobots.com/archives/387/feed" rel="self" type="application/rss+xml" />
	<link>http://www.monkeysandrobots.com/archives/387</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 28 Jul 2010 07:46:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Drew Perttula</title>
		<link>http://www.monkeysandrobots.com/archives/387/comment-page-1#comment-234</link>
		<dc:creator>Drew Perttula</dc:creator>
		<pubDate>Mon, 25 Jan 2010 07:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.exothermia.net/monkeys_and_robots/?p=387#comment-234</guid>
		<description>For the record, I have a python interface to the ENTTEC Open DMX USB at http://bigasterisk.com/darcs/?r=light9;a=tree;f=/dmx_usb_module

It&#039;s not presented very well. http://bigasterisk.com/darcs/?r=light9;a=headblob;f=/light9/io/__init__.py#l57 is some code that uses the module.

- drewp@bigasterisk.com</description>
		<content:encoded><![CDATA[<p>For the record, I have a python interface to the ENTTEC Open DMX USB at <a href="http://bigasterisk.com/darcs/?r=light9;a=tree;f=/dmx_usb_module" rel="nofollow">http://bigasterisk.com/darcs/?r=light9;a=tree;f=/dmx_usb_module</a></p>
<p>It&#8217;s not presented very well. <a href="http://bigasterisk.com/darcs/?r=light9;a=headblob;f=/light9/io/__init__.py#l57" rel="nofollow">http://bigasterisk.com/darcs/?r=light9;a=headblob;f=/light9/io/__init__.py#l57</a> is some code that uses the module.</p>
<p>- <a href="mailto:drewp@bigasterisk.com">drewp@bigasterisk.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://www.monkeysandrobots.com/archives/387/comment-page-1#comment-233</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Mon, 21 Dec 2009 23:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.exothermia.net/monkeys_and_robots/?p=387#comment-233</guid>
		<description>having trouble with your module, maybe I&#039;m missing something else, but when I try to import it, I get the following:

&gt;&gt;&gt; import dmx

Traceback (most recent call last):
  File &quot;&quot;, line 1, in
    import dmx
  File &quot;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/dmx/__init__.py&quot;, line 4, in
    import numpy
  File &quot;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/__init__.py&quot;, line 132, in
    import add_newdocs
  File &quot;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/add_newdocs.py&quot;, line 9, in
    from lib import add_newdoc
  File &quot;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/lib/__init__.py&quot;, line 4, in
    from type_check import *
  File &quot;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/lib/type_check.py&quot;, line 8, in
    import numpy.core.numeric as _nx
  File &quot;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/core/__init__.py&quot;, line 5, in
    import multiarray
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/core/multiarray.so, 2): no suitable image found.  Did find:
	/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/core/multiarray.so: unknown required load command 0x80000022

I appreciate your work on this, Python support for the Enttec Products is a bit slight as of now...</description>
		<content:encoded><![CDATA[<p>having trouble with your module, maybe I&#8217;m missing something else, but when I try to import it, I get the following:</p>
<p>&gt;&gt;&gt; import dmx</p>
<p>Traceback (most recent call last):<br />
  File &#8220;&#8221;, line 1, in<br />
    import dmx<br />
  File &#8220;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/dmx/__init__.py&#8221;, line 4, in<br />
    import numpy<br />
  File &#8220;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/__init__.py&#8221;, line 132, in<br />
    import add_newdocs<br />
  File &#8220;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/add_newdocs.py&#8221;, line 9, in<br />
    from lib import add_newdoc<br />
  File &#8220;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/lib/__init__.py&#8221;, line 4, in<br />
    from type_check import *<br />
  File &#8220;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/lib/type_check.py&#8221;, line 8, in<br />
    import numpy.core.numeric as _nx<br />
  File &#8220;/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/core/__init__.py&#8221;, line 5, in<br />
    import multiarray<br />
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/core/multiarray.so, 2): no suitable image found.  Did find:<br />
	/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/numpy/core/multiarray.so: unknown required load command 0&#215;80000022</p>
<p>I appreciate your work on this, Python support for the Enttec Products is a bit slight as of now&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
