-1

I'd like to implement PyFacebook in my Python + Pylons application. Where should I include the package? What's the cleanest way to import it? What directory should I put the files in? Thanks!

ensnare
  • 40,069
  • 64
  • 158
  • 224

1 Answers1

1

Most of your libraries are on your pythonpath, which mostly is lib/site-packages. You should just install those and most installers will make sure they're on your python-path. Then you should be able to import them normally.

wvd
  • 1,189
  • 2
  • 12
  • 23