Hello,<br><br>I'm trying to use the feedparser module (<a href="http://www.feedparser.org/">http://www.feedparser.org/</a>).<br><br>Is it possible to use this without running the setup program?<br><br>I don't see why not, seems like I'm missing something obvious.<br>
<br>My directory structure is:<br><br>myprogram.py<br>    /feedparser<br>        /feedparser.py<br><br>I know I can install the module in the modules directory but would like to avoid this for two reasons: I'm only using it for the one project so would like to keep it seperate, and if I move to a shared host I may not be allowed to install additional modules (not sure if this is correct though).<br>
<br>I've tried:<br><br>import feedparser<br><br>import feedparser.feedparser<br><br>from feedparser import feedparser<br><br>What am I doing wrong? :)<br><br>Cheers!<br>