PyFacebook 与 Pylons
我想在我的 Python + Pylons 应用程序中实现 PyFacebook。我应该在哪里添加包?导入它的最干净的方法是什么?我应该将文件放在哪个目录中?谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数库都位于 pythonpath 上,其中大部分是 lib/site-packages。你应该只安装这些,大多数安装程序会确保它们位于你的 python 路径上。然后你应该能够正常导入它们。
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.