python facebook api in linux?
How do i install package and libraries of facebook api? When i use
开发者_Go百科import facebook
, there's error?
I see only svn checkouts, some files are empty, how do i download and get them working?
If you don't have git
, probably the easiest way to download it is to go to http://github.com/sciyoshi/pyfacebook and click on the "Download source" button. Extract the downloaded ZIP to a subdirectory, enter that subdirectory, launch your Python interpreter and type import facebook
. It works for me.
Start with the tutorial, which leads you through the download (with svn
or git
on Linux or Windows), installation, desktop apps (including a simple session on the interactive Python interpreter), and so on.
精彩评论