Hello, I'm trying to use the feedparser module (http://www.feedparser.org/).
Is it possible to use this without running the setup program? I don't see why not, seems like I'm missing something obvious. My directory structure is: myprogram.py /feedparser /feedparser.py 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). I've tried: import feedparser import feedparser.feedparser from feedparser import feedparser What am I doing wrong? :) Cheers!
-- http://mail.python.org/mailman/listinfo/python-list